/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-primary: #050507;
    --bg-secondary: #0a0a0c;
    --bg-card: rgba(18, 18, 22, 0.35);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.10);
    --border-glow: rgba(255, 255, 255, 0.18);
    --text-primary: #f5f5f7;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.35);
    --accent: #f5f5f7;
    --accent-subtle: rgba(255, 255, 255, 0.08);
    --glow-color: rgba(255, 255, 255, 0.06);
    --glow-hover: rgba(255, 255, 255, 0.14);
    --gradient-main: linear-gradient(135deg, #ffffff, #909090);
    --gradient-subtle: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
    --shadow-glow: 0 0 60px rgba(255, 255, 255, 0.05);
    --shadow-glass: 0 12px 40px rgba(0, 0, 0, 0.45), inset 0 1px 1.5px rgba(255, 255, 255, 0.12);
    --liquid-blur: blur(48px) saturate(200%);
    --liquid-blur-heavy: blur(64px) saturate(220%);
    --liquid-blur-light: blur(32px) saturate(180%);
    --radius: 28px;
    --radius-sm: 18px;
    --radius-xs: 12px;
    --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --liquid-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --liquid-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateGlow {
    from { --glow-angle: 0deg; }
    to { --glow-angle: 360deg; }
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Disable image dragging globally */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* DevTools warning animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animated ambient glow layer behind everything */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(ellipse 800px 600px at 20% 20%, rgba(255, 255, 255, 0.05), transparent 70%),
        radial-gradient(ellipse 600px 600px at 80% 60%, rgba(255, 255, 255, 0.03), transparent 70%),
        radial-gradient(ellipse 900px 400px at 50% 90%, rgba(255, 255, 255, 0.04), transparent 70%);
    animation: ambientGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Cursor glow element */
.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 35%, transparent 65%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: left, top;
    filter: blur(1px);
}

[data-theme="light"] .cursor-glow {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.025) 0%, rgba(0, 0, 0, 0.008) 35%, transparent 65%);
}

/* Ambient floating particles */
.ambient-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    will-change: transform;
}

[data-theme="light"] .particle {
    background: rgba(0, 0, 0, 0.1);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}


@keyframes ambientGlow {
    0% { opacity: 0.4; filter: brightness(0.8); }
    33% { opacity: 0.7; filter: brightness(1.05); }
    66% { opacity: 0.5; filter: brightness(0.95); }
    100% { opacity: 0.45; filter: brightness(0.9); }
}

/* Liquid noise grain texture overlay */
body::after {
    content: '';
    position: fixed; inset: 0; z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    opacity: 0.55;
    pointer-events: none;
    animation: grainShift 8s steps(4) infinite;
}
@keyframes grainShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, 2px); }
    100% { transform: translate(0, 0); }
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION SLIDE ANIMATIONS ===== */

/* ===== TAP TO ENTER ===== */
.tap-to-enter {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: opacity 0.6s var(--liquid-ease), visibility 0.6s;
}
.tap-to-enter.hidden {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.tap-to-enter-content { text-align: center; }
.tap-to-enter-logo {
    margin-bottom: 32px;
    animation: tapEnterLogoPulse 2s ease-in-out infinite;
}
.tap-to-enter-logo-img {
    height: 160px; width: auto; border-radius: 16px; object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.28));
}
@keyframes tapEnterLogoPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}
.tap-to-enter-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.1rem; color: var(--text-secondary);
    animation: tapEnterIconPulse 1.5s ease-in-out infinite;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}
@keyframes tapEnterIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
    50% { transform: scale(1.08); box-shadow: 0 0 20px rgba(255,255,255,0.08); }
}
.tap-to-enter-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted);
    animation: tapEnterTextFade 1.5s ease-in-out infinite;
}
@keyframes tapEnterTextFade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s var(--liquid-ease), visibility 0.5s;
}
.page-loader.loaded {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.loader-content { text-align: center; }
.loader-logo {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-bottom: 32px; animation: loaderPulse 0.8s ease-in-out infinite;
}
.loader-logo-img { height: 180px; width: auto; border-radius: 16px; object-fit: contain; filter: drop-shadow(0 0 30px rgba(255,255,255,0.28)); }

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}
.loader-bar {
    width: 200px; height: 3px; border-radius: 2px;
    background: rgba(255, 255, 255, 0.06); overflow: hidden;
    margin: 0 auto;
}
.loader-bar-fill {
    width: 0%; height: 100%; border-radius: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.7));
    animation: loaderFill 0.45s var(--liquid-ease) forwards;
}
@keyframes loaderFill {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.loader-producer-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 20px;
    min-height: 1.2em;
    opacity: 0;
    animation: producerTagFade 0.5s var(--liquid-ease) 0.15s forwards;
}
.loader-producer-tag .typewriter-cursor {
    display: inline-block;
    width: 1px;
    height: 1em;
    background: var(--text-muted);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.6s step-end infinite;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

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

/* ===== FILTER TAG ENTRANCE ===== */
.filter-tag {
    opacity: 0; transform: translateY(16px) scale(0.9);
    transition: opacity 0.5s var(--liquid-ease), transform 0.5s var(--liquid-ease),
                background 0.35s var(--liquid-ease), color 0.35s var(--liquid-ease),
                border-color 0.35s var(--liquid-ease), box-shadow 0.35s var(--liquid-ease);
}
.filter-tag.animate-in {
    opacity: 1; transform: translateY(0) scale(1);
}
.filter-tag.animate-in:nth-child(1) { transition-delay: 0s; }
.filter-tag.animate-in:nth-child(2) { transition-delay: 0.06s; }
.filter-tag.animate-in:nth-child(3) { transition-delay: 0.12s; }
.filter-tag.animate-in:nth-child(4) { transition-delay: 0.18s; }
.filter-tag.animate-in:nth-child(5) { transition-delay: 0.24s; }
.filter-tag.animate-in:nth-child(6) { transition-delay: 0.30s; }
.filter-tag.animate-in:nth-child(7) { transition-delay: 0.36s; }
.filter-tag.animate-in:nth-child(8) { transition-delay: 0.42s; }

/* ===== SECTION SLIDE ANIMATIONS ===== */
.reveal-section {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-section-left {
    opacity: 0;
    transform: translateX(-100px) scale(0.96);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-section-left.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.reveal-section-right {
    opacity: 0;
    transform: translateX(100px) scale(0.96);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-section-right.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
}


/* Section divider animations */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 0;
    position: relative;
    overflow: visible;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.03) 20%,
        rgba(255,255,255,0.12) 50%,
        rgba(255,255,255,0.03) 80%,
        transparent 100%
    );
    filter: blur(2px);
    opacity: 0;
    transition: opacity 0.8s var(--liquid-ease);
}

.section-divider.revealed::before {
    opacity: 1;
    animation: dividerGlow 3s ease-in-out infinite alternate;
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.9s var(--liquid-ease), transform 0.9s var(--liquid-ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s var(--liquid-ease), transform 0.9s var(--liquid-ease); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s var(--liquid-ease), transform 0.9s var(--liquid-ease); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.9s var(--liquid-ease), transform 0.9s var(--liquid-ease); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.stagger-children > * {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s var(--liquid-ease), transform 0.6s var(--liquid-ease);
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.08s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.16s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.32s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.40s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.48s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.56s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.64s; }
.stagger-children.revealed > *:nth-child(9) { transition-delay: 0.72s; }
.stagger-children.revealed > * { opacity: 1; transform: translateY(0); }

/* ===== ANIMATED BACKGROUND — DEEP PARALLAX + GLOWING ORBS ===== */
.bg-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.18;
    animation: blobFloat 30s ease-in-out infinite;
    will-change: transform;
    --parallax-y: 0px;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, var(--parallax-y)) scale(1); }
    33% { transform: translate(60px, calc(-40px + var(--parallax-y))) scale(1.08); }
    66% { transform: translate(-30px, calc(50px + var(--parallax-y))) scale(0.92); }
}

.blob-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%); top: -250px; left: -150px; animation: blobFloat 30s ease-in-out infinite; }
.blob-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 70%); bottom: -200px; right: -150px; animation-delay: -10s; animation: blobFloat 30s ease-in-out infinite reverse; }
.blob-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 255, 255, 0.02), transparent 70%); top: 50%; left: 50%; animation-delay: -20s; animation: blobFloat 30s ease-in-out infinite; }

@keyframes blobColorShift {
    0%, 100% { filter: blur(180px) brightness(1); }
    25% { filter: blur(200px) brightness(1.1); }
    50% { filter: blur(180px) brightness(0.9); }
    75% { filter: blur(190px) brightness(1.05); }
}

/* ===== NAVBAR — FLOATING LIQUID GLASS BAR ===== */
.navbar {
    position: fixed; top: 16px; left: 24px; right: 24px; z-index: 1000;
    width: calc(100% - 48px); margin: 0 auto;
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(18, 18, 22, 0.35);
    backdrop-filter: var(--liquid-blur);
    -webkit-backdrop-filter: var(--liquid-blur);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.02),
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.02);
}

.navbar::after {
    content: ''; position: absolute; inset: 0; border-radius: 50px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(18, 18, 22, 0.55);
    backdrop-filter: blur(64px) saturate(240%);
    -webkit-backdrop-filter: blur(64px) saturate(240%);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.03),
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 255, 255, 0.03);
    top: 10px;
    animation: navbarGlow 4s ease-in-out infinite alternate;
}

.nav-container { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }

.nav-logo { display: flex; flex-direction: column; align-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; align-self: flex-start; margin-top: -6px; }

.nav-logo-img {
    height: 52px; width: auto; border-radius: 10px; object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.18));
    transition: transform 0.4s var(--liquid-ease);
    animation: logoPulse 3s ease-in-out infinite;
}
.nav-logo:hover .nav-logo-img { transform: none; }

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1;
    margin-top: -18px;
    position: relative;
    z-index: 1;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255,255,255,0.12)); }
    50% { filter: drop-shadow(0 0 14px rgba(255,255,255,0.25)); }
}


.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); position: relative; }
.nav-links a:hover { color: var(--text-primary); }

.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--text-primary); transition: width 0.4s var(--liquid-ease); border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 20px; border-radius: 50px; color: var(--text-primary) !important;
    font-weight: 600 !important; display: flex; align-items: center; gap: 6px;
    transition: var(--transition);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.2);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 0 16px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.10);
}

.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.9rem; transition: all 0.4s var(--liquid-ease);
    position: relative;
    backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.theme-toggle::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.theme-toggle:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.10); color: var(--text-primary);
    transform: rotate(30deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.14),
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 0 12px rgba(255, 255, 255, 0.06);
}

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --bg-primary: #f5f5f7;
    --bg-secondary: #e8e8ed;
    --bg-card: rgba(255, 255, 255, 0.55);
    --bg-glass: rgba(255, 255, 255, 0.45);
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(0, 0, 0, 0.12);
    --text-primary: #1d1d1f;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --text-muted: rgba(0, 0, 0, 0.35);
    --accent: #1d1d1f;
    --gradient-main: linear-gradient(135deg, #1d1d1f, #6e6e73);
    --gradient-subtle: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.01));
    --glow-color: rgba(0, 0, 0, 0.04);
    --glow-hover: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .blob { opacity: 0.08; }
[data-theme="light"] .blob-1 { background: radial-gradient(circle, rgba(0,0,0,0.04), transparent 70%); }
[data-theme="light"] .blob-2 { background: radial-gradient(circle, rgba(0,0,0,0.02), transparent 70%); }
[data-theme="light"] .blob-3 { background: radial-gradient(circle, rgba(0,0,0,0.015), transparent 70%); }

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8), 0 4px 30px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.10);
}
[data-theme="light"] .nav-cta { background: rgba(0, 0, 0, 0.05); border-color: rgba(0, 0, 0, 0.10); }
[data-theme="light"] .nav-cta:hover { background: rgba(0, 0, 0, 0.08); }

[data-theme="light"] .btn-primary {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.6), 0 8px 32px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .btn-primary:hover { background: rgba(0, 0, 0, 0.10); border-color: rgba(0, 0, 0, 0.25); box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.6), 0 8px 32px rgba(0,0,0,0.08), 0 0 20px rgba(0,0,0,0.04); }
[data-theme="light"] .btn-secondary { background: rgba(0, 0, 0, 0.03); border-color: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .btn-secondary:hover { background: rgba(0, 0, 0, 0.06); border-color: rgba(0,0,0,0.20); box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.6), 0 8px 24px rgba(0,0,0,0.06), 0 0 14px rgba(0,0,0,0.03); }

[data-theme="light"] .search-box input {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8), 0 4px 20px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .search-box input:focus {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.14);
}

[data-theme="light"] .filter-tag {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5), 0 2px 10px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .filter-tag:hover { background: rgba(0, 0, 0, 0.06); border-color: rgba(0, 0, 0, 0.10); }
[data-theme="light"] .filter-tag.active { background: rgba(0, 0, 0, 0.88); color: #f5f5f7; }

[data-theme="light"] .beat-card {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8), 0 10px 30px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .beat-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.9), 0 25px 50px rgba(0, 0, 0, 0.10);
}
[data-theme="light"] .beat-meta-item,
[data-theme="light"] .beat-tag,
[data-theme="light"] .beat-number,
[data-theme="light"] .beat-producer-tag {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .beat-link {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.10);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.6), 0 4px 15px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .beat-link:hover { background: rgba(0, 0, 0, 0.08); }
[data-theme="light"] .beat-play-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5), 0 4px 15px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .global-player {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8), 0 15px 50px rgba(0, 0, 0, 0.10);
}
[data-theme="light"] .gplayer-btn { border-color: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .gplayer-play { background: #1d1d1f; color: #f5f5f7; }
[data-theme="light"] .gplayer-progress { background: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .gplayer-progress::after { background: rgba(0, 0, 0, 0.6); }
[data-theme="light"] .gplayer-buy-btn { background: rgba(0, 0, 0, 0.05); border-color: rgba(0, 0, 0, 0.10); }

[data-theme="light"] .about-section { background: rgba(0, 0, 0, 0.02); }
[data-theme="light"] .about-card {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8), 0 15px 45px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .about-tags span {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .contact-card {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.8), 0 12px 35px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .contact-icon {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .footer-links a {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .footer-links a:hover { background: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .section-divider { background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent); }
[data-theme="light"] .section-divider::before { background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.02) 20%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.02) 80%, transparent 100%); }
[data-theme="light"] .section-header p { color: var(--text-secondary); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); }


.mobile-menu {
    display: none; position: fixed; top: 80px; left: 24px; right: 24px;
    background: rgba(18, 18, 22, 0.5);
    backdrop-filter: var(--liquid-blur-heavy);
    -webkit-backdrop-filter: var(--liquid-blur-heavy);
    padding: 24px; flex-direction: column; gap: 16px; z-index: 999;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 10px 40px rgba(0, 0, 0, 0.5);
}
.mobile-menu::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--text-secondary); padding: 12px 0; transition: var(--transition); position: relative; z-index: 2; }
.mobile-menu a:hover { color: var(--text-primary); }

/* ===== WELCOME TEXT ANIMATION ===== */
.welcome-text-container {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    max-width: 700px;
    width: 90%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.welcome-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.welcome-cursor {
    display: inline-block;
    color: var(--text-muted);
    font-weight: 300;
    animation: cursorBlink 0.6s step-end infinite;
    margin-left: 1px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 140px 24px 80px; max-width: 1280px;
    margin: 0 auto; gap: 60px;
    position: relative;
}
.hero-content { flex: 1; position: relative; z-index: 2; }

.hero-title { font-family: 'Space Grotesk', sans-serif; line-height: 1.05; margin-bottom: 28px; opacity: 0; letter-spacing: -0.03em; }
.hero-title.animate-in { animation: fadeInUp 0.8s var(--liquid-ease) 0.1s forwards; }
.hero-line-1 { display: block; color: var(--text-primary); margin-top: 8px; }
.hero-line-1::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    margin: 4px auto 0;
    transform: translateX(-108px) translateY(-42px);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), rgba(255,255,255,0.8), rgba(255,255,255,0.5), transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255,255,255,0.3), 0 0 30px rgba(255,255,255,0.1);
    animation: heroBadgeGlow 3s ease-in-out infinite alternate;
}
[data-theme="light"] .hero-line-1::after {
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3), rgba(0,0,0,0.5), rgba(0,0,0,0.3), transparent);
    box-shadow: 0 0 12px rgba(0,0,0,0.15), 0 0 30px rgba(0,0,0,0.05);
}
.hero-logo-inline { height: clamp(120px, 18vw, 220px); width: auto; object-fit: contain; filter: drop-shadow(0 0 20px rgba(255,255,255,0.15)); transition: transform 0.5s var(--liquid-ease), filter 0.5s var(--liquid-ease); transform: translateX(45px); }
.hero-logo-inline:hover { transform: translateX(45px) scale(1.05); filter: drop-shadow(0 0 30px rgba(255,255,255,0.25)); }
.hero-line-2 {
    display: block; font-size: clamp(3.5rem, 8vw, 7.5rem); font-weight: 700; letter-spacing: -0.05em;
    color: var(--text-primary);
}
.gradient-text {
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, #1d1d1f, #6e6e73);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 500px; margin-bottom: 36px; line-height: 1.7; opacity: 0; }
.hero-subtitle.animate-in { animation: fadeInUp 0.8s var(--liquid-ease) 0.2s forwards; }

.hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 44px; opacity: 0; }
.hero-stats.animate-in { animation: fadeInUp 0.8s var(--liquid-ease) 0.3s forwards; }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--text-primary); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent); }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; }
.hero-buttons.animate-in { animation: fadeInUp 0.8s var(--liquid-ease) 0.4s forwards; }

/* ===== BUTTONS — LIQUID GLASS CAPSULES ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
    border-radius: 50px; font-size: 0.95rem; font-weight: 600;
    transition: all 0.45s var(--liquid-ease); cursor: pointer; border: none;
    font-family: inherit; position: relative; overflow: hidden;
}

.btn::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none; z-index: 2;
}
.btn:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }

.btn-primary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-primary);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 16px rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.10);
}

@keyframes glowPulse {
    0%, 100% { box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(255, 255, 255, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.14); }
    50% { box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(255, 255, 255, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.22); }
}

@keyframes glowPulseSubtle {
    0%, 100% { box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 12px rgba(255, 255, 255, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.06); }
    50% { box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.16),
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(255, 255, 255, 0.07),
        0 0 0 1px rgba(255, 255, 255, 0.10); }
}

@keyframes cardGlow {
    0% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.20), inset 0 -1px 0 0 rgba(255,255,255,0.04), 0 25px 50px rgba(0,0,0,0.45), 0 0 40px rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.12); }
    100% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.25), inset 0 -1px 0 0 rgba(255,255,255,0.06), 0 25px 50px rgba(0,0,0,0.45), 0 0 60px rgba(255,255,255,0.09), 0 0 0 1px rgba(255,255,255,0.18); }
}

@keyframes aboutCardBreathe {
    0% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.12), inset 0 -1px 0 0 rgba(255,255,255,0.02), 0 15px 45px rgba(0,0,0,0.4), 0 0 0 0 rgba(255,255,255,0); }
    100% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.16), inset 0 -1px 0 0 rgba(255,255,255,0.03), 0 15px 45px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.04); }
}

@keyframes dividerGlow {
    0% { filter: blur(2px) brightness(0.8); opacity: 0.8; }
    100% { filter: blur(3px) brightness(1.2); opacity: 1; }
}

@keyframes playerGlow {
    0% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.15), inset 0 -1px 0 0 rgba(255,255,255,0.03), 0 15px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.03); }
    100% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.20), inset 0 -1px 0 0 rgba(255,255,255,0.05), 0 15px 50px rgba(0,0,0,0.5), 0 0 60px rgba(255,255,255,0.05); }
}

@keyframes navbarGlow {
    0% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.18), inset 0 -1px 0 0 rgba(255,255,255,0.03), 0 10px 40px rgba(0,0,0,0.5), 0 0 60px rgba(255,255,255,0.03); }
    100% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.22), inset 0 -1px 0 0 rgba(255,255,255,0.05), 0 10px 40px rgba(0,0,0,0.5), 0 0 80px rgba(255,255,255,0.05); }
}

/* Hero Visual */
.hero-visual { flex: 0 0 auto; opacity: 0; }
.hero-visual.animate-in { animation: fadeInUp 1s var(--liquid-ease) 0.3s forwards; }

/* ===== 3D TURNTABLE ===== */
.turntable-container {
    perspective: 1200px;
    width: 420px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.turntable {
    transform: rotateX(18deg) rotateY(-8deg);
    transform-style: preserve-3d;
    transition: transform 0.6s var(--liquid-ease);
}

.turntable:hover {
    transform: rotateX(15deg) rotateY(-5deg) scale(1.02);
}

.turntable-plinth {
    width: 380px;
    height: 320px;
    background: linear-gradient(160deg, #1a1a1e 0%, #111114 40%, #0e0e11 100%);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    box-shadow:
        inset 0 1px 0 0 rgba(255,255,255,0.10),
        inset 0 -2px 0 0 rgba(0,0,0,0.3),
        0 20px 60px rgba(0,0,0,0.5),
        0 0 80px rgba(255,255,255,0.03);
}

/* Glossy top reflection */
.turntable-plinth::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 5;
}

.turntable-feet {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.turntable-foot {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, #2a2a2e, #1a1a1e);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.foot-fl { top: -10px; left: 20px; }
.foot-fr { top: -10px; right: 20px; }
.foot-bl { bottom: -10px; left: 20px; }
.foot-br { bottom: -10px; right: 20px; }

.turntable-top {
    width: 100%;
    height: 100%;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 16px;
    position: relative;
}

.turntable-platter-area {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.turntable-platter {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #222226 0%, #1a1a1e 100%);
    border: 2px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 40px rgba(0,0,0,0.4),
        0 0 30px rgba(0,0,0,0.3);
}

.turntable-record {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        #0a0a0c 0%, 
        #141418 8%,
        #0c0c10 15%,
        #141418 22%,
        #0c0c10 30%,
        #141418 38%,
        #0c0c10 46%,
        #141418 54%,
        #0c0c10 62%,
        #141418 70%,
        #0c0c10 78%,
        #141418 86%,
        #0c0c10 94%,
        #0e0e12 100%
    );
    position: relative;
    animation: vinylSpin 3s linear infinite;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 0 40px rgba(0,0,0,0.5);
}

.record-groove {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.025);
}

.groove-1 { inset: 12%; }
.groove-2 { inset: 20%; }
.groove-3 { inset: 28%; }
.groove-4 { inset: 55%; }
.groove-5 { inset: 65%; }

.record-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%) rotate(-15deg);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(20, 20, 24, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.06),
        inset 0 0 10px rgba(0,0,0,0.3);
    z-index: 2;
}

.record-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%);
    z-index: 3;
}

.record-label-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    opacity: 0.9;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.1));
}

.record-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.06) 0%,
        transparent 30%,
        transparent 50%,
        rgba(255,255,255,0.03) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 3;
}

.platter-led {
    position: absolute;
    bottom: 8px;
    left: 28px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0,255,136,0.4), 0 0 20px rgba(0,255,136,0.15);
    animation: ledPulse 2s ease-in-out infinite;
}

@keyframes ledPulse {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 8px rgba(0,255,136,0.4); }
    50% { opacity: 1; box-shadow: 0 0 12px rgba(0,255,136,0.6), 0 0 24px rgba(0,255,136,0.2); }
}

/* Tonearm */
.turntable-tonearm {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    width: 80px;
    height: 100%;
    z-index: 4;
}

.tonearm-pivot {
    position: absolute;
    top: 16px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #4a4a50, #2a2a2e);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        0 2px 8px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.1);
    z-index: 2;
}

.tonearm-pivot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #1a1a1e;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.08);
}

.tonearm-arm {
    position: absolute;
    top: 28px;
    right: 20px;
    width: 4px;
    height: 180px;
    background: linear-gradient(180deg, #5a5a60 0%, #3a3a3e 50%, #2a2a2e 100%);
    border-radius: 2px;
    transform-origin: top center;
    transform: rotate(-25deg);
    box-shadow:
        1px 2px 6px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.tonearm-headshell {
    position: absolute;
    top: 200px;
    right: -16px;
    width: 22px;
    height: 36px;
    background: linear-gradient(180deg, #4a4a50, #2a2a2e);
    border-radius: 3px 3px 6px 6px;
    transform: rotate(-25deg);
    box-shadow:
        1px 2px 6px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.tonearm-headshell::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #8a8a90;
    border-radius: 0 0 1px 1px;
}

/* Speed buttons */
.turntable-controls {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-right: 4px;
}

.turntable-speed-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
}

.turntable-speed-btn:first-child {
    background: rgba(255,255,255,0.08);
    color: var(--text-secondary);
    border-color: rgba(255,255,255,0.14);
}

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

/* ===== FILTER SECTION ===== */
.filter-section { padding: 80px 0 20px; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-header h2 {
    font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem;
    font-weight: 800; margin-bottom: 10px; color: var(--text-primary);
    letter-spacing: -1px;
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

.filter-bar { display: flex; flex-direction: column; gap: 20px; align-items: center; }

/* ===== SEARCH BOX — LIQUID GLASS ===== */
.search-box { position: relative; width: 100%; max-width: 500px; }
.search-box i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); z-index: 3; }

.search-box input {
    width: 100%; padding: 16px 22px 16px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px; color: var(--text-primary); font-size: 0.95rem; font-family: inherit;
    outline: none; transition: all 0.45s var(--liquid-ease);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative; z-index: 2;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.05),
        0 0 20px rgba(255, 255, 255, 0.04);
    animation: glowPulse 1.5s ease-in-out infinite;
}

.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

/* ===== FILTER TAG — LIQUID GLASS ===== */
.filter-tag {
    padding: 10px 24px; border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-size: 0.85rem; font-weight: 500; cursor: pointer;
    font-family: inherit;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.1);
}
.filter-tag::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.filter-tag:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }
.filter-tag:hover {
    background: rgba(255, 255, 255, 0.08); color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.35); transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.25),
        0 0 14px rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}
.filter-tag.active {
    background: rgba(255, 255, 255, 0.92);
    border-color: transparent;
    color: #0a0a0c;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
        0 8px 25px rgba(255, 255, 255, 0.15),
        0 0 20px rgba(255, 255, 255, 0.08);
}

/* ===== BEATS GRID ===== */
.beats-section { padding: 20px 0 120px; }
.beats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

/* ===== BEAT CARD — APPLE LIQUID GLASS + 3D TILT ===== */
.beat-card {
    background: rgba(18, 18, 22, 0.35);
    backdrop-filter: blur(48px) saturate(200%);
    -webkit-backdrop-filter: blur(48px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    --tilt-x: 50%;
    --tilt-y: 50%;
    display: flex;
    flex-direction: column;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.02),
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 0 0 rgba(255, 255, 255, 0);
}

/* Prismatic border — cursor-following glow */
.beat-card::after {
    content: ''; position: absolute; inset: -1px; border-radius: var(--radius); padding: 1px;
    background: radial-gradient(circle at var(--tilt-x) var(--tilt-y),
        rgba(255, 120, 120, 0.22),
        rgba(255, 220, 120, 0.15),
        rgba(120, 255, 160, 0.12),
        rgba(120, 170, 255, 0.20),
        rgba(220, 120, 255, 0.15),
        transparent 70%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.5s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.beat-card:hover::after { opacity: 1; }

.beat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.20),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.04),
        0 25px 50px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.20);
}

/* Rotating glow border */
.beat-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.beat-card:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }

.beat-cover {
    position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0; background: var(--bg-secondary);
}
.beat-cover img {
    position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: transform 0.7s var(--liquid-ease), opacity 0.5s ease;
}
.beat-cover img.loaded { opacity: 1; }
.beat-card:hover .beat-cover img { transform: scale(1.08); }

/* Liquid gloss reflection */
.beat-cover::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.10) 0%,
        rgba(255,255,255,0.02) 30%,
        transparent 50%,
        rgba(0,0,0,0.12) 100%
    );
    z-index: 2; pointer-events: none;
}

.beat-cover-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.15));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); z-index: 3;
}
.beat-card:hover .beat-cover-overlay { opacity: 1; }

.beat-play-btn-cover {
    width: 68px; height: 68px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    color: white; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.4s var(--liquid-ease); font-size: 1.5rem;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        0 8px 30px rgba(0,0,0,0.3);
}
.beat-play-btn-cover:hover {
    background: rgba(255,255,255,0.2); transform: scale(1.15);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3),
        0 12px 50px rgba(0,0,0,0.4);
    border-color: white;
}

.beat-cover-placeholder {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    color: var(--text-muted); font-size: 2.5rem; z-index: 0;
}

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

@keyframes heroBadgeGlow {
    0% { box-shadow: 0 0 12px rgba(255,255,255,0.15); opacity: 0.8; }
    100% { box-shadow: 0 0 25px rgba(255,255,255,0.35); opacity: 1; }
}

.beat-cover.loading::before {
    content: ''; position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.beat-card-body { padding: 20px; position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; }

.beat-meta { display: flex; gap: 10px; margin-bottom: 10px; }
.beat-meta-item {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.72rem; font-weight: 600; color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04); padding: 5px 12px; border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.beat-meta-item i { font-size: 0.62rem; color: var(--text-muted); }

.beat-producer { margin-bottom: 10px; }
.beat-producer-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 700; color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04); padding: 4px 12px; border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.beat-producer-tag i { font-size: 0.6rem; }

.beat-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }

.beat-number {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; font-weight: 700;
    color: var(--text-muted); background: rgba(255, 255, 255, 0.04);
    padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.06);
}

.beat-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }

.beat-name {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700;
    margin-bottom: 12px; line-height: 1.3; text-transform: capitalize;
}

.beat-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.beat-tag {
    font-size: 0.68rem; font-weight: 600; padding: 4px 10px; border-radius: 50px;
    background: rgba(255, 255, 255, 0.04); color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.beat-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

/* ===== BUY BUTTON — LIQUID GLASS CAPSULE ===== */
.beat-link {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    transition: all 0.45s var(--liquid-ease); position: relative; overflow: hidden;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.2);
}
.beat-link::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.beat-link::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none; z-index: 2;
}
.beat-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.18),
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 14px rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.10);
}
.beat-link:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }
.beat-link i { font-size: 0.75rem; }

/* ===== PLAY BUTTON — LIQUID GLASS CIRCLE ===== */
.beat-play-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.35s var(--liquid-ease); font-size: 0.9rem;
    position: relative;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}
.beat-play-btn::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.beat-play-btn:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }
.beat-play-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.14),
        0 8px 20px rgba(0, 0, 0, 0.25),
        0 0 12px rgba(255, 255, 255, 0.06);
}

.beat-card.playing {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.18),
        0 0 40px rgba(255, 255, 255, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.35);
}
.beat-card.playing::before { opacity: 0.5; animation: rotateGlow 4s linear infinite; }

/* ===== GLOBAL PLAYER BAR — FLOATING LIQUID DOCK ===== */
.global-player {
    position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 1500;
    background: rgba(18, 18, 22, 0.4);
    backdrop-filter: blur(64px) saturate(240%);
    -webkit-backdrop-filter: blur(64px) saturate(240%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    transform: translateY(150px); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.03),
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 255, 255, 0.03);
    width: calc(100% - 48px); margin: 0 auto;
    overflow: hidden;
}
.global-player.active {
    animation: playerGlow 4s ease-in-out infinite alternate;
}
.global-player::after {
    content: ''; position: absolute; inset: 0; border-radius: 30px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none; z-index: 1;
}
.global-player.active { transform: translateY(0); }

.global-player-inner { max-width: 1280px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 24px; position: relative; z-index: 2; }

.gplayer-info { flex: 0 0 220px; min-width: 0; }
.gplayer-name { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gplayer-status { display: block; font-size: 0.7rem; color: var(--text-muted); }

.gplayer-controls { display: flex; align-items: center; gap: 8px; }
.gplayer-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06); background: transparent;
    color: var(--text-primary); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s var(--liquid-ease); font-size: 0.8rem;
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
}
.gplayer-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.gplayer-play {
    width: 42px; height: 42px; background: rgba(255, 255, 255, 0.92);
    border: none; font-size: 0.9rem; color: #0a0a0c;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
        0 4px 15px rgba(255, 255, 255, 0.15);
}
.gplayer-play:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.gplayer-progress-wrap { flex: 1; min-width: 100px; }
.gplayer-progress { height: 4px; background: rgba(255, 255, 255, 0.08); border-radius: 2px; overflow: hidden; cursor: pointer; position: relative; }
.gplayer-progress::after {
    content: ''; position: absolute; top: 0; left: 0; height: 100%;
    width: var(--progress, 0%); background: rgba(255, 255, 255, 0.75);
    border-radius: 2px; transition: width 0.3s linear;
}
.gplayer-time { font-size: 0.65rem; color: var(--text-muted); margin-top: 4px; }

.gplayer-right { display: flex; align-items: center; gap: 14px; }
.gplayer-volume { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.8rem; }

.volume-slider {
    width: 80px; height: 4px; -webkit-appearance: none; appearance: none;
    background: rgba(255, 255, 255, 0.08); border-radius: 2px; outline: none; cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.85); cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.gplayer-buy-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary); border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; transition: var(--transition); white-space: nowrap;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.2);
}
.gplayer-buy-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.18),
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(255, 255, 255, 0.06);
}
.gplayer-close { font-size: 0.75rem; }

.no-results { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.no-results i { font-size: 3rem; margin-bottom: 16px; display: block; }

/* ===== ABOUT SECTION — LIQUID GLASS BAND ===== */
.about-section {
    padding: 100px 0;
    background: rgba(10, 10, 12, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

/* Subtle animated gradient across section */
.about-section::before {
    content: ''; position: absolute; top: 0; left: -100%; right: 0; height: 1px; width: 300%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.04) 20%,
        rgba(255,255,255,0.10) 50%,
        rgba(255,255,255,0.04) 80%,
        transparent 100%
    );
    animation: shimmerLine 8s linear infinite;
}
.about-section::after {
    content: ''; position: absolute; bottom: 0; left: -100%; right: 0; height: 1px; width: 300%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.04) 20%,
        rgba(255,255,255,0.10) 50%,
        rgba(255,255,255,0.04) 80%,
        transparent 100%
    );
    animation: shimmerLine 8s linear infinite 4s;
}

@keyframes shimmerLine {
    0% { transform: translateX(0); }
    100% { transform: translateX(33%); }
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 800; margin-bottom: 24px; color: var(--text-primary); }
.about-content p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.8; }

.about-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.about-tags span {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px; font-size: 0.85rem; color: var(--text-secondary);
    transition: all 0.4s var(--liquid-ease);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    position: relative;
}
.about-tags span::after {
    content: ''; position: absolute; inset: 0; border-radius: 50px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.about-tags span:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.15),
        0 0 10px rgba(255, 255, 255, 0.05);
}
.about-tags span::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.about-tags span:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }

.about-visual { display: flex; justify-content: center; }

/* ===== ABOUT CARD — LIQUID GLASS ===== */
.about-card {
    width: 300px; height: 300px; border-radius: var(--radius);
    background: rgba(18, 18, 22, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 40px 20px 20px;
    backdrop-filter: blur(48px) saturate(200%);
    -webkit-backdrop-filter: blur(48px) saturate(200%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.02),
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 0 0 rgba(255, 255, 255, 0);
    position: relative; overflow: hidden;
    animation: aboutCardBreathe 4s ease-in-out infinite alternate;
}
@keyframes aboutCardBreathe {
    0% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.12), inset 0 -1px 0 0 rgba(255,255,255,0.02), 0 15px 45px rgba(0,0,0,0.4), 0 0 0 0 rgba(255,255,255,0); }
    100% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.16), inset 0 -1px 0 0 rgba(255,255,255,0.03), 0 15px 45px rgba(0,0,0,0.4), 0 0 30px rgba(255,255,255,0.04); }
}
.about-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.10) 0%,
        rgba(255,255,255,0.02) 30%,
        transparent 50%
    );
    pointer-events: none; z-index: 1;
}

/* Rotating glow border on about card */
.about-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.3) 75%, rgba(255,255,255,0.6) 88%, rgba(255,255,255,0.3) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1; pointer-events: none; z-index: 10;
    animation: rotateGlow 4s linear infinite;
}

.eq-bars { display: flex; gap: 6px; align-items: flex-end; height: 120px; position: relative; z-index: 2; }
.eq-bar {
    width: 12px; background: var(--gradient-main); border-radius: 6px;
    animation: eqBounce 1.2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}
.eq-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.eq-bar:nth-child(5) { height: 60%; animation-delay: 0.15s; }
.eq-bar:nth-child(6) { height: 80%; animation-delay: 0.25s; }
.eq-bar:nth-child(7) { height: 35%; animation-delay: 0.05s; }
@keyframes eqBounce { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.3); } }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 100px 0; }
.contact-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* ===== CONTACT CARD — LIQUID GLASS ===== */
.contact-card {
    background: rgba(18, 18, 22, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 44px 48px; text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(48px) saturate(200%);
    -webkit-backdrop-filter: blur(48px) saturate(200%);
    min-width: 280px; flex: 1; max-width: 400px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.02),
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 0 0 0 rgba(255, 255, 255, 0);
    position: relative; overflow: hidden;
}

/* Glass shine */
.contact-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.02) 30%,
        transparent 50%
    );
    pointer-events: none; z-index: 1;
}

/* Rotating glow border */
.contact-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.contact-card:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.20),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.04),
        0 25px 55px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}
@keyframes cardGlow {
    0% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.20), inset 0 -1px 0 0 rgba(255,255,255,0.04), 0 25px 50px rgba(0,0,0,0.45), 0 0 40px rgba(255,255,255,0.06), 0 0 0 1px rgba(255,255,255,0.12); }
    100% { box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.25), inset 0 -1px 0 0 rgba(255,255,255,0.06), 0 25px 50px rgba(0,0,0,0.45), 0 0 60px rgba(255,255,255,0.09), 0 0 0 1px rgba(255,255,255,0.18); }
}

.contact-icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--text-primary); margin-bottom: 4px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.10);
    position: relative; z-index: 2;
}
.contact-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text-primary); position: relative; z-index: 2; }
.contact-card p { color: var(--text-secondary); font-size: 0.9rem; position: relative; z-index: 2; }

.contact-cta {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
    padding: 10px 22px; background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; color: var(--text-primary);
    transition: all 0.4s var(--liquid-ease);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
    position: relative; z-index: 2;
}
.contact-card:hover .contact-cta {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 10px rgba(255, 255, 255, 0.05);
}
.contact-card:hover .contact-cta i { transform: translateX(4px); }
.contact-cta i { transition: transform 0.4s var(--liquid-ease); font-size: 0.75rem; }

/* ===== FOOTER — LIQUID GLASS ===== */
.footer { padding: 40px 0; padding-bottom: 120px; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.3rem; }
.footer-logo-img { height: 50px; width: auto; border-radius: 10px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(255,255,255,0.15)); }
.footer-links { display: flex; gap: 16px; }
.footer-links a {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all 0.4s var(--liquid-ease);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
    position: relative;
}
.footer-links a::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.footer-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary); transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.12),
        0 6px 15px rgba(0, 0, 0, 0.2),
        0 0 12px rgba(255, 255, 255, 0.06);
}
.footer-links a::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
    background: conic-gradient(from var(--glow-angle), transparent 0%, transparent 55%, rgba(255,255,255,0.35) 75%, rgba(255,255,255,0.7) 88%, rgba(255,255,255,0.35) 100%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s var(--liquid-ease); pointer-events: none; z-index: 10;
}
.footer-links a:hover::before { opacity: 1; animation: rotateGlow 2s linear infinite; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .navbar { top: 12px; left: 16px; right: 16px; width: calc(100% - 32px); padding: 8px 16px; }
    .nav-logo-img { height: 42px; }
    .nav-logo-text { font-size: 0.45rem; letter-spacing: 2px; margin-top: -12px; }
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .welcome-text-container { top: 110px; }
    .turntable-container { width: 320px; height: 290px; }
    .turntable-plinth { width: 300px; height: 250px; }
    .turntable-platter { width: 170px; height: 170px; }
    .turntable-record { width: 155px; height: 155px; }
    .record-label { width: 50px; height: 50px; }
    .tonearm-arm { height: 140px; }
    .tonearm-headshell { top: 158px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-tags { justify-content: center; }
    .contact-grid { flex-direction: column; align-items: center; }
    .contact-card { min-width: 260px; width: 100%; }
    .global-player { bottom: 16px; left: 16px; right: 16px; width: calc(100% - 32px); border-radius: 20px; }
    .global-player-inner { padding: 10px 16px; gap: 12px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .beats-grid { grid-template-columns: 1fr; }
    .nav-logo-img { height: 36px; }
    .nav-logo-text { font-size: 0.4rem; letter-spacing: 1.8px; margin-top: -8px; }
    .hero-line-2 { letter-spacing: -2px; }
    .turntable-container { width: 260px; height: 240px; }
    .turntable { transform: rotateX(18deg) rotateY(-5deg) scale(0.85); }
    .turntable-plinth { width: 250px; height: 210px; padding: 0; }
    .turntable-top { padding: 16px; gap: 8px; }
    .turntable-platter { width: 140px; height: 140px; }
    .turntable-record { width: 125px; height: 125px; }
    .record-label { width: 42px; height: 42px; }
    .tonearm-arm { height: 110px; }
    .tonearm-headshell { top: 126px; }
    .turntable-controls { display: none; }
    .global-player-inner { flex-wrap: wrap; justify-content: center; }
    .gplayer-info { flex: 1 1 100%; text-align: center; margin-bottom: 4px; }
    .gplayer-progress-wrap { flex: 1 1 100%; order: 3; }
    .gplayer-controls { order: 1; }
    .gplayer-right { order: 2; }
}
@media (max-width: 480px) {
    .turntable-container { width: 220px; height: 200px; }
    .turntable { transform: rotateX(16deg) rotateY(-3deg) scale(0.75); }
    .turntable-plinth { width: 220px; height: 190px; }
    .turntable-platter { width: 120px; height: 120px; }
    .turntable-record { width: 108px; height: 108px; }
    .record-label { width: 36px; height: 36px; }
    .tonearm-arm { height: 95px; }
    .tonearm-headshell { top: 110px; }
    .hero-title .hero-line-2 { font-size: 3rem; }
    .section-header h2 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; max-width: 280px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); }
