
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Times New Roman font throughout */
        body, h1, h2, h3, p, a, button, input, span, div {
            font-family: 'Times New Roman', Times, serif;
        }

        body {
            background-color: #0a0a0a;
            color: #f0f0f0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Updated Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.95);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid #222;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #fff;
            text-decoration: none;
            flex: 1;
        }

        .center-nav {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex: 2;
        }

        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-socials {
            display: flex;
            gap: 20px;
            flex: 1;
            justify-content: flex-end;
        }

        .nav-socials a {
            color: #ccc;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .nav-socials a:hover {
            color: #fff;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), 
                        url('images/main_picture.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            
        }

        .hero h2 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #aaa;
            letter-spacing: 3px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 30px;
            color: #ccc;
        }

        .cta-button {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 20px;
        }

        .cta-button:hover {
            background-color: white;
            color: black;
        }

        /* Common Section Styles */
        .section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 60px;
            text-align: center;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #fff;
        }

        /* Music Section with Perfectly Square Boxes */
        .album-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
            justify-items: center;
        }

        .album-card {
            background-color: #111;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            width: 300px;
            height: 300px;
            position: relative;
        }

        .album-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
        }

        .album-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .album-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 25px 20px 20px;
        }

        .album-title {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .album-year {
            color: #bbb;
            font-size: 1rem;
        }

        /* Video Section with Embedded Players */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-embed {
    background-color: #111;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.video-embed iframe {
    width: 100%;
    height: 200px;
    display: block;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.video-date {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-embed iframe {
        height: 180px;
    }
}
        /* Store Section */
        .store-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 40px;
        }

        .product-card {
            background-color: #111;
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
        }

        .product-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 1.1rem;
            color: #fff;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .buy-button {
            display: block; /* Make it fill the width */
            text-align: center; /* Center the text */
            text-decoration: none; /* Remove underline */
            background-color: #fff;
            color: #000;
            border: none;
            padding: 12px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Times New Roman', Times, serif; /* Match your font */
}

        .buy-button:hover {
            background-color: #ddd;
            text-decoration: none; /* Ensure no underline on hover */
            color: #000; /* Keep text color black */
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, black, black);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
        }
        
        .newsletter-content {
            position: relative;
            z-index: 2;
        }
        
        .newsletter h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .newsletter p {
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 550px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            overflow: hidden;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            background: transparent;
            font-size: 16px;
            color: var(--light);
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form button {
            background: var(--darker);
            color: var(--light);
            border: none;
            padding: 0 35px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .newsletter-form button:hover {
            background: red;
            color: var(--darker);
        }



        .discord-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--discord-color);
            color: var(--light);
            font-size: 16px;
            font-weight: 600;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .discord-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--discord-hover);
            transition: width 0.5s ease;
            z-index: -1;
        }
        
        .discord-button:hover::before {
            width: 100%;
        }
        
        .discord-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(114, 137, 218, 0.6);
        }
        
        .discord-button:active {
            transform: translateY(1px);
        }
        
        .discord-button i {
            font-size: 1.5rem;
            margin-right: 12px;
        }


         /* Features Section */
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
            margin-left:auto;
            margin-right:auto;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(114, 137, 218, 0.3);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: var(--discord-color);
            margin-bottom: 20px;
            background: rgba(114, 137, 218, 0.1);
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .feature-card p {
            color: #b0b0b0;
            font-size: 1rem;
        }
        
        /* Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }

        /* Footer */
        footer {
            background-color: #050505;
            padding: 60px 40px 30px;
            border-top: 1px solid #222;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icons a {
            color: #aaa;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #fff;
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            color: #666;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .center-nav {
                flex: 1.5;
            }
        }

        @media (max-width: 900px) {
            .center-nav {
                display: none;
            }
            
            .nav-socials {
                display: none;
            }
            
            .logo {
                text-align: center;
                flex: none;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero h2 {
                font-size: 1.4rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .album-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .album-card {
                width: 280px;
                height: 280px;
            }
        }

        @media (max-width: 600px) {
            .section {
                padding: 80px 20px;
            }
            
            .video-grid, .store-grid, .album-grid {
                grid-template-columns: 1fr;
                justify-items: center;
            }
            
            .album-card {
                width: 100%;
                max-width: 300px;
                height: 300px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }

            
        }
