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

:root {
    --primary-purple: #8b5cf6;
    --primary-pink: #ec4899;
    --primary-orange: #fb923c;
    --primary-green: #22c550;
    --primary-gold: #eab308;
    --primary-cyan: #06b6d4;
    
    --bg-dark: #0a0a0a;
    --bg-dark-2: #141414;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    background: var(--bg-dark);
    color: var(--text-primary);
    cursor: none;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

button:hover ~ .cursor-dot,
a:hover ~ .cursor-dot,
.nav-item:hover ~ .cursor-dot {
    transform: scale(2);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: rgba(10, 10, 10, 0.8);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

nav.scrolled {
    height: 75px;
    background: rgba(20, 20, 25, 0.95);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

nav.scrolled::before {
    opacity: 1;
}

nav.discover-section {
    background: rgba(139, 92, 246, 0.12);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

nav.trending-section {
    background: rgba(251, 146, 60, 0.12);
    border-bottom: 1px solid rgba(251, 146, 60, 0.3);
}

nav.playlists-section {
    background: rgba(34, 197, 94, 0.12);
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
}

nav.artists-section {
    background: rgba(236, 72, 153, 0.12);
    border-bottom: 1px solid rgba(236, 72, 153, 0.3);
}

nav.premium-section {
    background: rgba(234, 179, 8, 0.12);
    border-bottom: 1px solid rgba(234, 179, 8, 0.3);
}

.nav-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: -1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 28px;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-item {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover::before {
    transform: scaleX(1);
}

.sound-wave {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item:hover .sound-wave {
    opacity: 1;
}

.sound-bar {
    width: 3px;
    height: 14px;
    background: linear-gradient(180deg, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
    animation: wave 0.8s ease-in-out infinite;
}

.sound-bar:nth-child(1) { animation-delay: 0s; }
.sound-bar:nth-child(2) { animation-delay: 0.1s; }
.sound-bar:nth-child(3) { animation-delay: 0.2s; }
.sound-bar:nth-child(4) { animation-delay: 0.3s; }
.sound-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 20px; }
}

nav.pulse {
    animation: navPulse 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes navPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5%;
}

.section-content {
    max-width: 1400px;
    width: 100%;
    z-index: 2;
    position: relative;
}

/* Typography */
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease 0.1s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Discover Section */
#discover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1624 100%);
}

.music-notes-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.music-note {
    position: absolute;
    font-size: 40px;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
    color: var(--primary-purple);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-150px) rotate(180deg);
        opacity: 0.15;
    }
}

.music-note:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.music-note:nth-child(2) { top: 20%; right: 15%; animation-delay: 3s; }
.music-note:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 6s; }
.music-note:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 9s; }
.music-note:nth-child(5) { top: 50%; left: 5%; animation-delay: 12s; }
.music-note:nth-child(6) { top: 60%; right: 8%; animation-delay: 15s; }

.piano-keys {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    display: flex;
    justify-content: center;
    opacity: 0.12;
    filter: blur(1px);
}

.white-key {
    width: 90px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 100%);
    border-right: 3px solid #333;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.white-key:hover {
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
    transform: translateY(8px);
    box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.4);
}

.black-key {
    width: 60px;
    height: 65%;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    position: absolute;
    top: 0;
    right: -30px;
    z-index: 2;
    border-radius: 0 0 5px 5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.black-key:hover {
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    transform: translateY(5px);
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.cta-button {
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.stats-row {
    display: flex;
    gap: 60px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 5px;
    font-weight: 500;
}

.floating-equalizer {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    align-items: flex-end;
    opacity: 0.15;
}

.eq-bar {
    width: 12px;
    background: linear-gradient(180deg, var(--primary-purple), var(--primary-pink));
    border-radius: 6px;
    animation: equalizer 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 100px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 150px; animation-delay: 0.2s; }
.eq-bar:nth-child(3) { height: 200px; animation-delay: 0.4s; }
.eq-bar:nth-child(4) { height: 130px; animation-delay: 0.6s; }
.eq-bar:nth-child(5) { height: 180px; animation-delay: 0.8s; }

@keyframes equalizer {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Trending Section - Drum Kit */
#trending {
    background: linear-gradient(135deg, #2d1b00 0%, #5a3a1a 50%, #3d2000 100%);
}

.drumkit-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.drum-piece {
    position: absolute;
    border-radius: 50%;
}

/* Bass Drum */
.bass-drum {
    width: 300px;
    height: 300px;
    left: 50%;
    top: 60%;
    transform: translateX(-50%);
    animation: drumPulse 2s ease-in-out infinite;
}

.bass-drum .drum-head {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #fb923c, #ea580c);
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.bass-drum .drum-rim {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 8px solid #c2410c;
    border-radius: 50%;
    top: 0;
    left: 0;
}

/* Snare Drum */
.snare-drum {
    width: 150px;
    height: 150px;
    left: 30%;
    top: 45%;
    animation: drumPulse 2s ease-in-out 0.3s infinite;
}

.snare-drum .drum-head {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #fbbf24, #f59e0b);
    border-radius: 50%;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.snare-drum .drum-rim {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 6px solid #d97706;
    border-radius: 50%;
}

.snare-wires {
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #fff 0px, #fff 2px, transparent 2px, transparent 6px);
}

/* Tom Drums */
.tom-drum {
    width: 120px;
    height: 120px;
}

.tom-1 {
    left: 60%;
    top: 35%;
    animation: drumPulse 2s ease-in-out 0.6s infinite;
}

.tom-2 {
    left: 75%;
    top: 40%;
    animation: drumPulse 2s ease-in-out 0.9s infinite;
}

.tom-drum .drum-head {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #fb923c, #ea580c);
    border-radius: 50%;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.3);
}

.tom-drum .drum-rim {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid #c2410c;
    border-radius: 50%;
}

/* Cymbals */
.cymbal {
    position: absolute;
}

.hi-hat {
    left: 20%;
    top: 20%;
    animation: cymbalSwing 3s ease-in-out infinite;
}

.crash {
    left: 70%;
    top: 15%;
    animation: cymbalSwing 3.5s ease-in-out 0.5s infinite;
}

.ride {
    right: 10%;
    top: 25%;
    animation: cymbalSwing 4s ease-in-out 1s infinite;
}

.cymbal-disk, .cymbal-top, .cymbal-bottom {
    width: 100px;
    height: 100px;
    background: radial-gradient(ellipse at center, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(251, 146, 60, 0.4);
}

.cymbal-bottom {
    margin-top: 5px;
    opacity: 0.7;
}

.cymbal-stand {
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, #78716c, #44403c);
    margin: 0 auto;
}

/* Drumsticks */
.drumstick {
    position: absolute;
    width: 8px;
    height: 120px;
    background: linear-gradient(180deg, #78716c 0%, #78716c 80%, #fbbf24 80%, #fbbf24 100%);
    border-radius: 4px;
}

.stick-1 {
    left: 35%;
    top: 50%;
    transform: rotate(-35deg);
    animation: drumstickHit 1s ease-in-out infinite;
}

.stick-2 {
    right: 30%;
    top: 48%;
    transform: rotate(35deg);
    animation: drumstickHit 1s ease-in-out 0.5s infinite;
}

@keyframes drumPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

@keyframes cymbalSwing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes drumstickHit {
    0%, 100% { transform: rotate(-35deg) translateY(0); }
    50% { transform: rotate(-30deg) translateY(-10px); }
}

.trending-title {
    background: linear-gradient(135deg, var(--primary-orange), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.trending-card {
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(251, 146, 60, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.trending-card:hover .card-glow {
    opacity: 1;
}

.trending-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(251, 146, 60, 0.08);
    border-color: rgba(251, 146, 60, 0.5);
    box-shadow: 0 30px 80px rgba(251, 146, 60, 0.4);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-family: 'Space Grotesk', sans-serif;
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.listeners {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 600;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), #f97316);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.5);
}

/* Playlists Section - Electric Guitar */
#playlists {
    background: linear-gradient(135deg, #0a2e1a 0%, #1a4d2e 50%, #0f3820 100%);
}

.guitar-bg {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    opacity: 0.1;
}

.guitar-body {
    width: 400px;
    height: 280px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50% 50% 45% 55% / 50% 50% 50% 50%;
    position: relative;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3), 0 20px 60px rgba(34, 197, 94, 0.4);
    animation: guitarGlow 4s ease-in-out infinite;
}

.guitar-pickguard {
    position: absolute;
    width: 60%;
    height: 65%;
    top: 15%;
    right: 8%;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50% 50% 45% 55% / 50% 50% 50% 50%;
}

.guitar-pickup {
    position: absolute;
    width: 120px;
    height: 30px;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.pickup-1 { top: 30%; }
.pickup-2 { top: 50%; }
.pickup-3 { top: 70%; }

.guitar-bridge {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 15px;
    background: linear-gradient(90deg, #78716c, #57534e);
    border-radius: 2px;
}

.guitar-knob {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #1a1a1a, #0a0a0a);
    border-radius: 50%;
    border: 3px solid #78716c;
}

.knob-1 { bottom: 20%; left: 15%; }
.knob-2 { bottom: 20%; left: 30%; }
.knob-3 { bottom: 20%; left: 45%; }

.guitar-jack {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 15px;
    height: 15px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 2px solid #78716c;
}

.guitar-neck {
    position: absolute;
    right: 380px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100px;
    background: linear-gradient(90deg, #78716c 0%, #57534e 100%);
    border-radius: 5px;
}

.guitar-fret {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #d4d4d4;
    border-radius: 2px;
}

.fret-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.marker-3 { top: 28%; }
.marker-5 { top: 56%; }

.guitar-headstock {
    position: absolute;
    right: 665px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 150px;
    background: linear-gradient(135deg, #78716c, #57534e);
    border-radius: 10px 50% 50% 10px;
}

.tuning-peg {
    position: absolute;
    width: 25px;
    height: 8px;
    background: #fbbf24;
    border-radius: 4px;
}

.peg-1 { top: 10%; right: -5px; }
.peg-2 { top: 30%; right: -5px; }
.peg-3 { top: 50%; right: -5px; }
.peg-4 { top: 50%; left: -5px; }
.peg-5 { top: 30%; left: -5px; }
.peg-6 { top: 10%; left: -5px; }

.guitar-strings-animated {
    position: absolute;
    right: 370px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 100px;
}

.guitar-string {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4d4d4, transparent);
    top: 0;
    animation: stringVibrate 3s ease-in-out infinite;
}

.guitar-string:nth-child(1) { top: 10%; height: 1px; animation-delay: 0s; }
.guitar-string:nth-child(2) { top: 25%; height: 1.5px; animation-delay: 0.2s; }
.guitar-string:nth-child(3) { top: 40%; height: 2px; animation-delay: 0.4s; }
.guitar-string:nth-child(4) { top: 55%; height: 2.5px; animation-delay: 0.6s; }
.guitar-string:nth-child(5) { top: 70%; height: 3px; animation-delay: 0.8s; }
.guitar-string:nth-child(6) { top: 85%; height: 3.5px; animation-delay: 1s; }

@keyframes guitarGlow {
    0%, 100% { box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3), 0 20px 60px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3), 0 20px 80px rgba(34, 197, 94, 0.6); }
}

@keyframes stringVibrate {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    25% { transform: translateY(-2px); opacity: 0.5; }
    75% { transform: translateY(2px); opacity: 0.5; }
}

.playlists-title {
    background: linear-gradient(135deg, var(--primary-green), #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.playlist-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.playlist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--card-color);
}

.playlist-cover {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--card-color), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.playlist-icon {
    font-size: 120px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
}

.playlist-card:hover .playlist-icon {
    transform: scale(1.1) rotate(5deg);
}

.playlist-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.playlist-card:hover .playlist-overlay {
    opacity: 1;
}

.playlist-play {
    padding: 16px 40px;
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-play:hover {
    transform: scale(1.1);
}

.playlist-info {
    padding: 24px;
}

.playlist-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.playlist-meta {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.playlist-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Artists Section - Harmonium */
#artists {
    background: linear-gradient(135deg, #3d0a2e 0%, #6a1b4d 50%, #4d0f38 100%);
}

.harmonium-bg {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.12;
}

.harmonium-body {
    width: 350px;
    height: 200px;
    background: linear-gradient(135deg, #7c2d12 0%, #991b1b 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

.harmonium-bellows {
    position: absolute;
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #450a0a, #7c2d12, #450a0a);
    border-top: 2px solid rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.bellows-1 { 
    top: 20px; 
    animation: bellowsExpand 3s ease-in-out infinite;
}

.bellows-2 { 
    top: 60px;
    animation: bellowsExpand 3s ease-in-out 0.5s infinite;
}

.bellows-3 { 
    top: 100px;
    animation: bellowsExpand 3s ease-in-out 1s infinite;
}

.bellows-4 { 
    top: 140px;
    animation: bellowsExpand 3s ease-in-out 1.5s infinite;
}

@keyframes bellowsExpand {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

.harmonium-keyboard {
    position: absolute;
    top: -60px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
    border-radius: 5px 5px 0 0;
}

.harm-key {
    position: absolute;
    bottom: 0;
    border-radius: 0 0 3px 3px;
}

.harm-key.white {
    width: 7%;
    height: 100%;
    background: linear-gradient(180deg, #fafafa, #e5e5e5);
    border-right: 1px solid #999;
    animation: keyPress 4s ease-in-out infinite;
}

.harm-key.black {
    width: 4%;
    height: 60%;
    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
    z-index: 2;
    animation: keyPress 4s ease-in-out infinite;
}

.harm-key:nth-child(1) { animation-delay: 0s; }
.harm-key:nth-child(2) { animation-delay: 0.3s; }
.harm-key:nth-child(3) { animation-delay: 0.6s; }
.harm-key:nth-child(4) { animation-delay: 0.9s; }
.harm-key:nth-child(5) { animation-delay: 1.2s; }
.harm-key:nth-child(6) { animation-delay: 1.5s; }

@keyframes keyPress {
    0%, 90%, 100% { transform: translateY(0); }
    5% { transform: translateY(3px); }
}

.harmonium-stops {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.stop {
    width: 20px;
    height: 40px;
    background: linear-gradient(180deg, #ec4899, #db2777);
    border-radius: 10px;
    animation: stopPull 5s ease-in-out infinite;
}

.stop:nth-child(1) { animation-delay: 0s; }
.stop:nth-child(2) { animation-delay: 1s; }
.stop:nth-child(3) { animation-delay: 2s; }
.stop:nth-child(4) { animation-delay: 3s; }

@keyframes stopPull {
    0%, 90%, 100% { transform: translateY(0); }
    10% { transform: translateY(-8px); }
}

.artists-title {
    background: linear-gradient(135deg, var(--primary-pink), #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.artist-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.4);
    border-color: rgba(236, 72, 153, 0.5);
}

.artist-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-follow {
    padding: 14px 35px;
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-follow:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.5);
}

.artist-info {
    padding: 24px;
}

.artist-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.artist-genre {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.artist-stats {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
    display: block;
}

/* Premium Section - Tabla & Music Player */
#premium {
    background: linear-gradient(135deg, #3d2a00 0%, #6b4a00 50%, #4d3500 100%);
}

/* Tabla Animation */
.tabla-bg {
    position: absolute;
    bottom: -80px;
    left: 5%;
    display: flex;
    gap: 40px;
    opacity: 0.12;
}

.tabla {
    position: relative;
}

.tabla-left {
    animation: tablaPlay 2s ease-in-out infinite;
}

.tabla-right {
    animation: tablaPlay 2s ease-in-out 0.5s infinite;
}

.tabla-head {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 35% 35%, #fbbf24, #f59e0b);
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(251, 191, 36, 0.4);
}

.tabla-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #1a1a1a, #0a0a0a);
    border-radius: 50%;
}

.tabla-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.3);
}

.ring-1 {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.ring-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.tabla-body {
    width: 180px;
    height: 120px;
    background: linear-gradient(180deg, #7c2d12 0%, #991b1b 100%);
    border-radius: 0 0 90px 90px;
    margin-top: -10px;
    position: relative;
}

.tabla-body::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(0, 0, 0, 0.2) 5px,
        rgba(0, 0, 0, 0.2) 10px
    );
}

@keyframes tablaPlay {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

/* Music Player Animation */
.music-player-bg {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.12;
}

.player-body {
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    position: relative;
}

.player-screen {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

.waveform {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 150px;
    gap: 8px;
    margin-bottom: 30px;
}

.wave-bar {
    flex: 1;
    background: linear-gradient(180deg, #eab308, #fbbf24);
    border-radius: 4px;
    animation: waveMove 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }

@keyframes waveMove {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.3); }
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, #eab308, #fbbf24);
    border-radius: 3px;
    animation: progressMove 5s ease-in-out infinite;
}

@keyframes progressMove {
    0% { width: 0%; }
    100% { width: 100%; }
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eab308, #fbbf24);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.play {
    width: 70px;
    height: 70px;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prev::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #1a1a1a transparent transparent;
    left: 45%;
}

.play::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #1a1a1a;
    left: 55%;
    animation: playPulse 2s ease-in-out infinite;
}

.next::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #1a1a1a;
    left: 55%;
}

@keyframes playPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.volume-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.volume-fill {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #eab308, #fbbf24);
    border-radius: 4px;
}

.cd-disk {
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center,
        #1a1a1a 0%,
        #0a0a0a 30%,
        #1a1a1a 35%,
        #0a0a0a 40%,
        #eab308 45%,
        #0a0a0a 50%
    );
    border-radius: 50%;
    animation: cdSpin 8s linear infinite;
    box-shadow: 0 10px 40px rgba(234, 179, 8, 0.4);
}

.cd-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #0a0a0a;
    border-radius: 50%;
}

.cd-reflection {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 30%;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(234, 179, 8, 0.3) 50%,
        transparent 100%
    );
    border-radius: 50%;
    transform: rotate(-25deg);
}

@keyframes cdSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.premium-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-badge-lg {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(234, 179, 8, 0.15);
    border: 2px solid rgba(234, 179, 8, 0.4);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(10px);
}

.premium-title {
    background: linear-gradient(135deg, var(--primary-gold), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.premium-feature {
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-feature:hover {
    background: rgba(234, 179, 8, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(234, 179, 8, 0.3);
    border-color: rgba(234, 179, 8, 0.4);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #fbbf24);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.premium-feature:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    font-size: 40px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fbbf24;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
    background: rgba(234, 179, 8, 0.1);
    border: 2px solid rgba(234, 179, 8, 0.4);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-gold), #fbbf24);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-plan {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
}

.period {
    font-size: 16px;
    color: var(--text-tertiary);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 60px;
    }

    .nav-menu {
        gap: 30px;
    }
    
    .drumkit-bg {
        transform: translate(-50%, -50%) scale(0.8);
    }
    
    .guitar-bg {
        right: -300px;
        transform: translateY(-50%) rotate(-15deg) scale(0.7);
    }
    
    .harmonium-bg {
        left: -200px;
        transform: translateY(-50%) scale(0.8);
    }
    
    .tabla-bg {
        left: 2%;
        transform: scale(0.8);
    }
    
    .music-player-bg {
        right: 5%;
        transform: translateY(-50%) scale(0.8);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 48px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 13px;
    }

    .logo {
        font-size: 24px;
    }

    .trending-grid,
    .playlists-grid,
    .artists-grid,
    .premium-features,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .stats-row {
        gap: 30px;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    /* Hide complex instrument backgrounds on mobile for performance */
    .drumkit-bg,
    .guitar-bg,
    .harmonium-bg,
    .tabla-bg,
    .music-player-bg {
        display: none;
    }
    
    /* Keep piano keys visible but simplified */
    .piano-keys {
        opacity: 0.08;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}