/* CSS in the same file as requested */

        /* ------------------- */
        /* --- CSS RESET & VARIABLES --- */
        /* ------------------- */
        :root {
            --color-background: #0a0a0a;
            --color-text: #ffffff;
            --color-primary: #ffffff;
            --color-secondary: #a0a0a0;
            --color-dark-gray: #1a1a1a;
            --font-main: 'Poppins', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--color-background);
            color: var(--color-text);
            font-family: var(--font-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--color-secondary);
        }

        img {
            max-width: 100%;
            display: block;
        }

        h1, h2, h3 {
            line-height: 1.2;
            font-weight: 600;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        section {
            padding: 100px 0;
            overflow: hidden;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 4rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        /* ------------------- */
        /* --- NAVIGATION --- */
        /* ------------------- */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: background-color 0.3s ease, padding 0.3s ease;
        }

        .header.scrolled {
            background-color: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0.5rem 0;
            border-bottom: 1px solid #222;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.5rem;
            text-decoration: none;
        }

        .nav-logo p {
            margin: 0;
        }
        
        .nav-logo img {
            height: 45px;
            transition: height 0.3s ease;
        }
        
        .header.scrolled .nav-logo img {
            height: 30px;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            font-weight: 400;
            padding: 0.5rem;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background-color: var(--color-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }

        .hamburger-bar {
            display: block;
            width: 25px;
            height: 2px;
            margin: 5px auto;
            background-color: var(--color-text);
            transition: all 0.3s ease-in-out;
        }
        

        /* ------------------- */
        /* --- HERO SECTION --- */
        /* ------------------- */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding: 0;
        }

        #bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(0,0,0,0.5);
        }

        .hero-content .subtitle {
            font-size: 1.2rem;
            color: var(--color-secondary);
            margin-bottom: 2rem;
            font-weight: 300;
        }
        
        .cta-button {
            display: inline-block;
            padding: 0.8rem 2.5rem;
            border: 1px solid var(--color-primary);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .cta-button:hover {
            background-color: var(--color-primary);
            color: var(--color-background);
        }

        /* ------------------- */
        /* --- ABOUT SECTION --- */
        /* ------------------- */
        #about .container {
            max-width: 800px;
            text-align: center;
        }
        #about p {
            font-size: 1.1rem;
            color: var(--color-secondary);
            margin-bottom: 1.5rem;
        }

        /* ------------------- */
        /* --- ARTISTS SECTION --- */
        /* ------------------- */
        .artist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .artist-card {
            text-align: center;
        }
        .artist-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background-color: var(--color-dark-gray);
            background-size: cover;
            background-position: center;
            margin: 0 auto 1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .artist-card:hover .artist-image {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
        }
        .artist-name {
            font-weight: 600;
            font-size: 1.2rem;
        }

        /* ------------------- */
        /* --- RELEASES SECTION --- */
        /* ------------------- */
        #releases {
            background-color: var(--color-dark-gray);
        }
        .release-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .release-card {
            background-color: var(--color-background);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .release-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .release-cover {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-color: #333;
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
        }
        .release-cover:hover {
            filter: grayscale(0%);
            transition: filter 1s ease;
        }
        .release-info {
            padding: 1rem;
        }
        .release-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .release-artist {
            font-size: 1rem;
            color: var(--color-secondary);
        }

        /* ------------------- */
        /* --- SUBMIT SECTION --- */
        /* ------------------- */
        .submit-form-container {
            max-width: 700px;
            margin: 0 auto;
            background-color: var(--color-dark-gray);
            padding: 3rem;
            border-radius: 8px;
        }
        
        .submit-form-container p {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--color-secondary);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 400;
            color: var(--color-secondary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--color-background);
            border: 1px solid #333;
            border-radius: 4px;
            color: var(--color-text);
            font-family: var(--font-main);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primary);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-button {
            display: block;
            width: 100%;
            padding: 1rem;
            background-color: var(--color-primary);
            color: var(--color-background);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        
        .submit-button:hover {
            opacity: 0.85;
        }

        /* ------------------- */
        /* --- CONTACT & FOOTER --- */
        /* ------------------- */
        #contact {
             padding-bottom: 0;
        }
        
        .contact-info {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-info p {
            margin-bottom: 1rem;
        }

        .social-links {
            text-align: center;
            margin-bottom: 4rem;
        }

        .social-links a {
            font-size: 1.8rem;
            margin: 0 1rem;
            color: var(--color-secondary);
        }
        
        .social-links a:hover {
            color: var(--color-primary);
        }
        
        .footer {
            background-color: var(--color-dark-gray);
            padding: 4rem 0 2rem;
            text-align: center;
        }

        .distributor-logo {
            max-width: 150px;
            margin: 0 auto 2rem;
            opacity: 0.7;
        }
        
        .footer-links {
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            margin: 0 0.75rem;
            font-size: 0.9rem;
            color: var(--color-secondary);
        }
        
        .copyright {
            font-size: 1rem;
            color: #666;
        }

        /* ------------------- */
        /* --- FADE-IN ANIMATION --- */
        /* ------------------- */
        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ------------------- */
        /* --- RESPONSIVENESS --- */
        /* ------------------- */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background-color: var(--color-background);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: left 0.4s ease-in-out;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 2rem 0;
            }
            
            .nav-links a {
                font-size: 1.5rem;
            }

            .hamburger {
                display: block;
                z-index: 1001;
            }

            .hamburger.active .hamburger-bar:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .hamburger-bar:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            .hamburger.active .hamburger-bar:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .section-title {
                font-size: 2rem;
            }
            
            .submit-form-container {
                padding: 2rem;
            }
        }