  :root {
            --primary-purple: #8a2be2;
            --deep-purple: #5a189a;
            --neon-purple: #9d4edd;
            --dark-bg: #0a0a0f;
            --light-bg: #141420;
            --text-white: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Manrope', sans-serif;
        }
        
        .glass-effect {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            transition: 
                background 0.4s ease,
                backdrop-filter 0.4s ease,
                box-shadow 0.4s ease;
        }
        
        .glass-effect.glass-active {
            background: rgba(10, 10, 15, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }
        
        .glass-effect-light {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-purple);
            border-radius: 5px;
        }

        #home {
            height: 550px;
        }

        #home .relative {
            top: 40px;
        }

        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.7);
        }

        .big-heading {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            position: relative;
        }

        .text-glow {
            text-shadow:
                0 0 15px rgba(157, 78, 221, 0.5),
                0 0 30px rgba(157, 78, 221, 0.25),
                0 0 50px rgba(157, 78, 221, 0.1);
        }

        .section-spacing {
            padding-top: 7rem;
            padding-bottom: 7rem;
        }

        .luxury-btn {
            font-size: 0.9rem;
            padding: 0.6rem 1.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .luxury-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            left: -100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.15),
                transparent
            );
            transition: left 0.6s ease;
        }

        .luxury-btn:hover::after {
            left: 100%;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0.5deg); }
            50% { transform: translateY(-20px) rotate(-0.5deg); }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: -1;
        }
        
        .service-card {
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            transform-style: preserve-3d;
        }
        
        .service-card:hover {
            transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(157, 78, 221, 0.1),
                inset 0 0 30px rgba(157, 78, 221, 0.1);
        }
        
        .artist-card {
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .artist-card:hover {
            transform: scale(1.05);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(157, 78, 221, 0.4);
        }
        
        .music-track {
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .music-track:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }
        
        .testimonial-card {
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .line-animate {
            position: relative;
            overflow: hidden;
        }
        
        .line-animate::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-purple), var(--neon-purple));
            transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .line-animate:hover::after {
            width: 100%;
        }
        
        .form-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 0.75rem 1rem;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
        }
        
        .artist-type-card {
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .artist-type-card:hover {
            border-color: var(--primary-purple);
            transform: translateY(-2px);
        }
        
        .artist-type-card input[type="radio"]:checked + div {
            border-color: var(--primary-purple);
            background: rgba(157, 78, 221, 0.1);
        }
        
        .toast {
            position: fixed;
            top: 1rem;
            right: 1rem;
            z-index: 1000;
            animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeOut {
            to {
                opacity: 0;
                transform: translateX(100%);
            }
        }
        
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            z-index: 1000;
        }
        
        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: var(--dark-bg);
            border-radius: 1.5rem;
            padding: 2rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .big-heading {
                font-size: clamp(3rem, 12vw, 5rem);
            }
            
            .section-spacing {
                padding-top: 8rem;
                padding-bottom: 8rem;
            }
            
            .modal-content {
                width: 95%;
                padding: 1.5rem;
            }
        }