        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #ff006e;
            --secondary: #8338ec;
            --accent: #3a86ff;
            --dark: #0a0a0a;
            --light: #ffffff;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, .brand {
            font-family: 'Orbitron', sans-serif;
        }
        
        /* Particle Background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: float 15s infinite;
            opacity: 0.6;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }
        
        /* Glitch Effect */
        .glitch {
            position: relative;
            animation: glitch-skew 1s infinite linear alternate-reverse;
        }
        
        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .glitch::before {
            left: 2px;
            text-shadow: -2px 0 var(--primary);
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim 5s infinite linear alternate-reverse;
        }
        
        .glitch::after {
            left: -2px;
            text-shadow: -2px 0 var(--accent);
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim2 5s infinite linear alternate-reverse;
        }
        
        @keyframes glitch-anim {
            0% { clip: rect(31px, 9999px, 94px, 0); }
            20% { clip: rect(54px, 9999px, 96px, 0); }
            40% { clip: rect(70px, 9999px, 99px, 0); }
            60% { clip: rect(3px, 9999px, 63px, 0); }
            80% { clip: rect(20px, 9999px, 38px, 0); }
            100% { clip: rect(90px, 9999px, 88px, 0); }
        }
        
        @keyframes glitch-anim2 {
            0% { clip: rect(65px, 9999px, 99px, 0); }
            20% { clip: rect(96px, 9999px, 3px, 0); }
            40% { clip: rect(6px, 9999px, 66px, 0); }
            60% { clip: rect(14px, 9999px, 89px, 0); }
            80% { clip: rect(88px, 9999px, 60px, 0); }
            100% { clip: rect(44px, 9999px, 26px, 0); }
        }
        
        @keyframes glitch-skew {
            0% { transform: skew(0deg); }
            10% { transform: skew(-2deg); }
            20% { transform: skew(2deg); }
            30% { transform: skew(0deg); }
            100% { transform: skew(0deg); }
        }
        
        /* Neon Glow */
        .neon-text {
            text-shadow: 
                0 0 10px var(--primary),
                0 0 20px var(--primary),
                0 0 40px var(--primary),
                0 0 80px var(--primary);
            animation: neon-pulse 2s ease-in-out infinite alternate;
        }
        
        @keyframes neon-pulse {
            from {
                text-shadow: 
                    0 0 10px var(--primary),
                    0 0 20px var(--primary),
                    0 0 40px var(--primary),
                    0 0 80px var(--primary);
            }
            to {
                text-shadow: 
                    0 0 20px var(--secondary),
                    0 0 40px var(--secondary),
                    0 0 60px var(--secondary),
                    0 0 100px var(--secondary);
            }
        }
        
        /* Music Bars Animation */
        .music-bars {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 40px;
        }
        
        .bar {
            width: 6px;
            background: linear-gradient(to top, var(--primary), var(--accent));
            border-radius: 3px;
            animation: equalizer 1s ease-in-out infinite;
        }
        
        .bar:nth-child(1) { animation-delay: 0s; height: 20%; }
        .bar:nth-child(2) { animation-delay: 0.1s; height: 60%; }
        .bar:nth-child(3) { animation-delay: 0.2s; height: 40%; }
        .bar:nth-child(4) { animation-delay: 0.3s; height: 80%; }
        .bar:nth-child(5) { animation-delay: 0.4s; height: 30%; }
        .bar:nth-child(6) { animation-delay: 0.5s; height: 70%; }
        .bar:nth-child(7) { animation-delay: 0.6s; height: 50%; }
        .bar:nth-child(8) { animation-delay: 0.7s; height: 90%; }
        
        @keyframes equalizer {
            0%, 100% { transform: scaleY(1); }
            50% { transform: scaleY(0.5); }
        }
        
        /* Vinyl Spin */
        .vinyl {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                repeating-radial-gradient(circle at center, #1a1a1a 0px, #1a1a1a 2px, #0a0a0a 3px, #0a0a0a 4px);
            position: relative;
            animation: spin 4s linear infinite;
            box-shadow: 
                0 0 50px rgba(255, 0, 110, 0.5),
                0 0 100px rgba(131, 56, 236, 0.3);
        }
        
        .vinyl::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            border: 4px solid var(--dark);
        }
        
        .vinyl::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 15px;
            height: 15px;
            background: var(--dark);
            border-radius: 50%;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Hover Effects */
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 0, 110, 0.3);
        }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Button Styles */
        .btn-neon {
            position: relative;
            overflow: hidden;
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--light);
            padding: 12px 30px;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        
        .btn-neon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-neon:hover::before {
            left: 100%;
        }
        
        .btn-neon:hover {
            box-shadow: 
                0 0 20px var(--primary),
                inset 0 0 20px rgba(255, 0, 110, 0.2);
            transform: scale(1.05);
        }
        
        /* Card Styles */
        .release-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 0, 110, 0.3);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .release-card:hover {
            border-color: var(--primary);
            box-shadow: 0 0 40px rgba(255, 0, 110, 0.4);
        }
        
        /* Scroll Animation */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Progress Bar */
        .progress-bar {
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
            animation: progress 2s ease-in-out infinite;
        }
        
        @keyframes progress {
            0% { width: 0%; }
            50% { width: 100%; }
            100% { width: 0%; }
        }
        
        /* Social Icons */
        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .social-icon:hover {
            background: var(--primary);
            border-color: var(--light);
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 30px var(--primary);
        }
        
        /* Wave Animation */
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff006e' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            animation: wave 10s linear infinite;
        }
        
        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1440px; }
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        /* Audio Visualizer Canvas */
        canvas {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            opacity: 0.3;
        }
        
        /* Music Player Styles */
        .music-player {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 0, 110, 0.3);
            z-index: 1000;
            padding: 15px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .music-player.active {
            transform: translateY(0);
        }
        
        .music-player::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        
        .progress-container {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .progress-bar-audio {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
            position: relative;
        }
        
        .progress-bar-audio::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background: var(--light);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary);
            opacity: 0;
            transition: opacity 0.2s;
        }
        
        .progress-container:hover .progress-bar-audio::after {
            opacity: 1;
        }
        
        .player-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .player-btn:hover {
            background: var(--primary);
            box-shadow: 0 0 20px var(--primary);
            transform: scale(1.1);
        }
        
        .player-btn.play-pause {
            width: 55px;
            height: 55px;
            background: var(--primary);
            border: none;
        }
        
        .player-btn.play-pause:hover {
            background: var(--secondary);
            box-shadow: 0 0 30px var(--secondary);
        }
        
        .volume-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100px;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            outline: none;
        }
        
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            background: var(--primary);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 10px var(--primary);
        }
        
        .volume-slider::-moz-range-thumb {
            width: 16px;
            height: 16px;
            background: var(--primary);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 10px var(--primary);
        }
        
        .playing-indicator {
            display: flex;
            align-items: flex-end;
            gap: 3px;
            height: 20px;
        }
        
        .playing-indicator span {
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
            animation: sound-bar 0.5s ease-in-out infinite alternate;
        }
        
        .playing-indicator span:nth-child(1) { height: 30%; animation-delay: 0s; }
        .playing-indicator span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
        .playing-indicator span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
        .playing-indicator span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
        
        @keyframes sound-bar {
            0% { transform: scaleY(1); }
            100% { transform: scaleY(0.3); }
        }
        
        .track-item {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .track-item:hover {
            background: rgba(255, 0, 110, 0.1);
        }
        
        .track-item.active {
            background: rgba(255, 0, 110, 0.2);
            border-left: 3px solid var(--primary);
        }
        
        /* Close player button */
        .close-player {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            color: var(--light);
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        
        .close-player:hover {
            opacity: 1;
            color: var(--primary);
        }
        
        /* Playlist Modal */
        .playlist-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .playlist-modal.active {
            display: flex;
        }
        
        .playlist-content {
            background: rgba(20, 20, 20, 0.95);
            border: 1px solid rgba(255, 0, 110, 0.3);
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
        }
