/* ==========================================================================
   MELLOW CUT ON - DIMENSION STYLESHEET
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #05010a;
    --bg-panel: rgba(15, 5, 25, 0.8);
    --bg-panel-border: rgba(255, 0, 127, 0.3);
    
    --neon-pink: #ff007f;
    --neon-magenta: #d600ff;
    --neon-peach: #ff8c42;
    --neon-purple: #7000ff;
    --neon-cyan: #00ffff;
    --neon-green: #39ff14;
    
    --text-main: #f0e6ff;
    --text-muted: #a395b5;
    
    /* Typography */
    --font-hud: 'VT323', monospace;
    --font-title: 'Righteous', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --glow-pink: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    --glow-peach: 0 0 10px var(--neon-peach), 0 0 20px var(--neon-peach);
    --glow-magenta: 0 0 10px var(--neon-magenta), 0 0 20px var(--neon-magenta);
    --glow-cyan: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    --glow-green: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
    
    --box-glow-pink: inset 0 0 20px rgba(255, 0, 127, 0.2), 0 0 15px rgba(255, 0, 127, 0.3);
}

/* ==========================================================================
   RESETS & GLOBALS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: 100px 0;
    position: relative;
}

.z-index-content {
    position: relative;
    z-index: 10;
}

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.w-full { width: 100%; }
.text-center { text-align: center; }
.center { display: flex; justify-content: center; align-items: center; flex-direction: column; }

/* Text Utilities */
.neon-pink-text { color: var(--neon-pink); text-shadow: var(--glow-pink); }
.neon-peach-text { color: var(--neon-peach); text-shadow: var(--glow-peach); }
.neon-magenta-text { color: var(--neon-magenta); text-shadow: var(--glow-magenta); }
.neon-cyan-text { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
.neon-green-text { color: var(--neon-green); text-shadow: var(--glow-green); }
.text-gray { color: var(--text-muted); }

/* ==========================================================================
   AMBIENT EFFECTS (Backgrounds)
   ========================================================================== */
#noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04;
    z-index: 9999;
    pointer-events: none;
}

.scanlines {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
    background-size: 100% 4px;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.3;
}

/* Stars */
.stars-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
#stars, #stars2, #stars3 {
    position: absolute;
    width: 2px; height: 2px;
    background: transparent;
    box-shadow: 10vw 20vh #fff, 30vw 40vh #fff, 50vw 10vh #fff, 70vw 80vh #fff, 90vw 30vh #fff, 20vw 80vh #fff, 80vw 20vh #fff, 40vw 60vh #fff, 60vw 90vh #fff, 15vw 50vh #fff, 85vw 70vh #fff;
    animation: animStar 50s linear infinite;
}
#stars2 { width: 3px; height: 3px; box-shadow: 25vw 15vh #ff8c42, 65vw 35vh #ff8c42, 45vw 75vh #ff8c42, 85vw 55vh #ff8c42, 15vw 95vh #ff8c42; animation: animStar 100s linear infinite; }
#stars3 { width: 4px; height: 4px; box-shadow: 10vw 60vh #00ffff, 50vw 40vh #00ffff, 90vw 80vh #00ffff; animation: animStar 150s linear infinite; }

@keyframes animStar {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

/* ==========================================================================
   TOP HUD NAVIGATION
   ========================================================================== */
.hud-top {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1000;
    font-family: var(--font-hud);
    font-size: 1.2rem;
    background: linear-gradient(to bottom, rgba(5, 1, 10, 0.9) 0%, rgba(5, 1, 10, 0) 100%);
    border-top: 2px solid var(--neon-purple);
}

.hud-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hud-left { align-items: flex-start; }
.hud-right { align-items: flex-end; }

.hud-stats {
    display: flex;
    gap: 1rem;
}

.hud-hearts i { font-size: 1.5rem; }

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 0, 127, 0.3);
    backdrop-filter: blur(5px);
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.border-btn {
    border: 1px solid var(--neon-pink);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1rem;
    margin-right: 10px;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Synthwave Horizon */
.synthwave-grid {
    position: absolute;
    bottom: -50%; left: -50%;
    width: 200%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 127, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 127, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 2s linear infinite;
    z-index: 1;
}

.synthwave-sun {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: linear-gradient(to bottom, #ffeb3b, #ff007f);
    border-radius: 50%;
    box-shadow: 0 0 100px #ff007f, 0 0 50px #ffeb3b;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 50%, transparent 50%);
    -webkit-mask-image: repeating-linear-gradient(to bottom, black, black 4px, transparent 4px, transparent 8px);
}

.city-skyline {
    position: absolute;
    bottom: 30%;
    left: 0; width: 100%; height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" preserveAspectRatio="none"><path d="M0,200 L0,150 L50,150 L50,100 L80,100 L80,130 L150,130 L150,80 L180,80 L180,140 L250,140 L250,60 L300,60 L300,160 L400,160 L400,40 L450,40 L450,120 L550,120 L550,20 L600,20 L600,100 L700,100 L700,50 L750,50 L750,170 L850,170 L850,90 L900,90 L900,150 L1000,150 L1000,200 Z" fill="%2305010a"/></svg>') repeat-x;
    background-size: 1000px 200px;
    z-index: 3;
    border-bottom: 2px solid var(--neon-pink);
    box-shadow: 0 5px 20px var(--neon-pink);
}

/* Environment Details */
.palm-tree {
    position: absolute;
    bottom: 25%;
    width: 200px;
    height: 400px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 200" xmlns="http://www.w3.org/2000/svg"><path d="M45,200 Q50,100 55,0 Q40,50 55,200 Z" fill="%23020005"/><path d="M55,0 Q80,20 100,30 Q80,40 55,0 Z" fill="%23020005"/><path d="M55,0 Q90,50 100,70 Q70,50 55,0 Z" fill="%23020005"/><path d="M55,0 Q40,30 10,40 Q30,50 55,0 Z" fill="%23020005"/><path d="M55,0 Q30,60 5,80 Q30,70 55,0 Z" fill="%23020005"/><path d="M55,0 Q60,30 80,60 Q60,40 55,0 Z" fill="%23020005"/></svg>') no-repeat;
    background-size: contain;
    z-index: 3;
    opacity: 0.9;
}
.palm-tree.left-1 { left: 0%; transform: scaleX(-1); }
.palm-tree.right-1 { right: 0%; }

/* Arcade Machine */
.bg-arcade-machine {
    position: absolute;
    bottom: 5%;
    left: 8%;
    width: 140px;
    height: 280px;
    z-index: 5;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.2));
}

.arcade-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020005;
    border-left: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
    border-top: 2px solid var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0,255,255,0.1);
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 100%, 0 100%, 0 15%);
}

.arcade-marquee {
    position: absolute;
    top: 15px;
    left: 30px;
    width: 80px;
    height: 25px;
    background: var(--neon-peach);
    box-shadow: 0 0 15px var(--neon-peach);
    color: #000;
    font-family: var(--font-hud);
    font-size: 16px;
    text-align: center;
    line-height: 25px;
    border-radius: 2px;
}

.arcade-screen {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 100px;
    height: 80px;
    background: #000;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink), inset 0 0 10px var(--neon-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-cyan);
    font-family: var(--font-hud);
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    animation: blink 1.5s infinite;
    transform: perspective(100px) rotateX(-5deg);
}

/* Sports Car */
.bg-sports-car {
    position: absolute;
    bottom: 3%;
    right: 5%;
    width: 280px;
    height: 110px;
    z-index: 5;
}

.car-body {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 280px;
    height: 45px;
    background: #010003;
    border: 1px solid rgba(255,0,127,0.4);
    border-radius: 5px 5px 20px 20px;
    box-shadow: inset 0 0 15px rgba(255,0,127,0.2), 0 5px 10px rgba(0,0,0,0.8);
}

.car-roof {
    position: absolute;
    bottom: 70px;
    left: 50px;
    width: 180px;
    height: 40px;
    background: #010003;
    border-radius: 15px 15px 0 0;
    border-top: 2px solid rgba(0,255,255,0.3);
    border-left: 1px solid rgba(0,255,255,0.3);
    border-right: 1px solid rgba(0,255,255,0.3);
    transform: perspective(50px) rotateX(10deg);
}

.car-spoiler {
    position: absolute;
    bottom: 75px;
    left: -10px;
    width: 300px;
    height: 8px;
    background: #010003;
    border-radius: 3px;
    border-top: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 5px rgba(0,0,0,0.8);
}

.taillight {
    position: absolute;
    bottom: 40px;
    width: 65px;
    height: 12px;
    background: #ff0000;
    border-radius: 2px;
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000;
}
.taillight.left { left: 20px; }
.taillight.right { right: 20px; }

.license-plate {
    position: absolute;
    bottom: 30px;
    left: 115px;
    width: 50px;
    height: 18px;
    background: #fff;
    color: #000;
    font-family: var(--font-hud);
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.reflection {
    position: absolute;
    bottom: -35px;
    left: 20px;
    width: 240px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,0,0,0.6), transparent);
    filter: blur(8px);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    margin-top: -5vh;
}

/* Mascot */
.mascot-container {
    position: relative;
    font-size: 8rem;
    line-height: 1;
    filter: drop-shadow(0 0 20px var(--neon-peach));
}

.sparkles i {
    position: absolute;
    color: #fff;
    text-shadow: 0 0 5px #fff;
    font-size: 1.5rem;
    animation: sparkle blink 2s infinite;
}
.s1 { top: 10%; left: -10%; animation-delay: 0s; }
.s2 { top: 50%; right: -20%; animation-delay: 0.5s; font-size: 1rem !important; }
.s3 { bottom: 0; left: 20%; animation-delay: 1s; font-size: 2rem !important; }

/* Main Logo Typography */
.main-logo {
    font-family: var(--font-title);
    display: flex;
    flex-direction: column;
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: 5px;
    background: linear-gradient(180deg, #ffffff 0%, #ff8c42 50%, #ff007f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 0px #7000ff) drop-shadow(0px 0px 15px rgba(255,0,127,0.5));
}

.power-btn {
    display: inline-flex;
    align-items: center;
    color: var(--neon-green);
    -webkit-text-fill-color: var(--neon-green);
    text-shadow: var(--glow-green);
    border: 3px solid var(--neon-green);
    padding: 0 10px;
    border-radius: 10px;
    background: rgba(57, 255, 20, 0.1);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.5), 0 0 10px rgba(57, 255, 20, 0.5);
}
.power-btn:hover {
    background: var(--neon-green);
    -webkit-text-fill-color: #000;
    box-shadow: inset 0 0 20px rgba(57, 255, 20, 1), 0 0 20px rgba(57, 255, 20, 1);
}

/* Call to Action */
.btn-start {
    font-family: var(--font-hud);
    font-size: 2.5rem;
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
    border: 3px solid var(--neon-pink);
    padding: 10px 40px;
    border-radius: 50px;
    background: rgba(255, 0, 127, 0.1);
    box-shadow: var(--box-glow-pink);
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-start:hover {
    background: rgba(255, 0, 127, 0.3);
    transform: scale(1.05);
}

.arrow { font-size: 1.5rem; }

.subtitle {
    font-family: var(--font-hud);
    font-size: 1.2rem;
    color: var(--neon-peach);
    letter-spacing: 3px;
}

/* Bottom Player UI */
.hero-bottom-ui {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
}

.player-module {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(10, 0, 20, 0.8);
    border: 1px solid var(--neon-purple);
    padding: 10px 20px 10px 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.player-cover {
    width: 50px; height: 50px;
    background: #000;
    border: 1px solid var(--neon-pink);
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem;
    border-radius: 5px;
}

.player-info { display: flex; flex-direction: column; gap: 3px; }
.track-name { font-family: var(--font-body); font-weight: 800; font-size: 0.9rem; color: #fff; }
.artist-name { font-family: var(--font-hud); font-size: 0.9rem; color: var(--neon-cyan); }

.equalizer-mini { display: flex; gap: 2px; align-items: flex-end; height: 10px; margin-top: 2px; }
.equalizer-mini span {
    width: 3px; background: var(--neon-magenta);
    animation: eq 1s infinite alternate ease-in-out;
}
.equalizer-mini span:nth-child(even) { animation-duration: 0.7s; background: var(--neon-pink); }
.equalizer-mini span:nth-child(3n) { animation-duration: 1.2s; background: var(--neon-purple); }

.play-btn {
    background: none; border: none;
    color: #fff; font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}
.play-btn:hover { color: var(--neon-pink); text-shadow: var(--glow-pink); }

/* ==========================================================================
   SHARED COMPONENTS
   ========================================================================== */
.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--neon-cyan);
    margin: 0 auto 3rem;
    box-shadow: var(--glow-cyan);
    border-radius: 2px;
}

.futuristic-panel {
    background: var(--bg-panel);
    border: 1px solid var(--bg-panel-border);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.futuristic-panel::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.btn-action {
    background: rgba(255, 0, 127, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    font-family: var(--font-hud);
    font-size: 1.2rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-action:hover {
    background: var(--neon-pink);
    color: #000;
    box-shadow: var(--glow-pink);
}

.btn-small {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 5px 15px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-small:hover { background: var(--neon-cyan); color: #000; box-shadow: var(--glow-cyan); }

/* ==========================================================================
   SECTION 2: DIMENSION (Lore)
   ========================================================================== */
.lore-box {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.lore-content { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.lore-subtitle { font-family: var(--font-hud); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 1rem; }
.lore-content p { font-size: 1.1rem; color: #ddd; }

.status-indicator {
    font-family: var(--font-hud);
    color: var(--neon-green);
    margin-top: 1rem;
    display: flex; align-items: center; gap: 10px;
    font-size: 1.2rem;
}
.status-indicator .dot { width: 10px; height: 10px; background: var(--neon-green); border-radius: 50%; box-shadow: var(--glow-green); }

.lore-visual { flex: 1; display: flex; justify-content: center; align-items: center; }

/* CSS Hologram Globe */
.holo-globe { position: relative; width: 250px; height: 250px; perspective: 1000px; transform-style: preserve-3d; }
.ring {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: 2px solid rgba(0, 255, 255, 0.3); border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0,255,255,0.2), 0 0 20px rgba(0,255,255,0.2);
}
.ring:nth-child(1) { animation: rotateRing 10s linear infinite; }
.ring:nth-child(2) { animation: rotateRing 15s linear infinite reverse; transform: rotateX(60deg); border-color: rgba(255,0,127,0.3); }
.ring:nth-child(3) { animation: rotateRing 20s linear infinite; transform: rotateY(60deg); border-color: rgba(255,140,66,0.3); }

/* ==========================================================================
   SECTION 3: BEATS
   ========================================================================== */
.beats-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; }

.weekly-drop {
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.badge-new {
    background: var(--neon-peach); color: #000; font-family: var(--font-hud);
    padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 1.2rem;
    margin-bottom: 1.5rem; box-shadow: var(--glow-peach);
}
.panel-title { font-family: var(--font-title); font-size: 2rem; color: #fff; margin-bottom: 0.5rem; }
.panel-desc { color: var(--text-muted); margin-bottom: 2rem; }

.countdown { display: flex; gap: 10px; align-items: center; font-family: var(--font-hud); }
.time-box { display: flex; flex-direction: column; background: rgba(0,0,0,0.5); border: 1px solid var(--neon-purple); padding: 10px; border-radius: 5px; min-width: 60px; }
.time-box .num { font-size: 2.5rem; color: #fff; line-height: 1; }
.time-box .label { font-size: 0.8rem; color: var(--neon-magenta); }
.colon { font-size: 2rem; color: var(--neon-pink); animation: blink 1s infinite; }

.beat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.beat-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.beat-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.beat-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, #2a0845 0%, #6441A5 100%);
    opacity: 0.5; transition: 0.3s;
}
.bg-purple { background: linear-gradient(45deg, #0f0c29, #302b63, #24243e); }
.bg-peach { background: linear-gradient(45deg, #ff4e50, #f9d423); }
.bg-green { background: linear-gradient(45deg, #11998e, #38ef7d); }

.beat-card:hover .beat-bg { opacity: 0.8; }

.beat-content { position: absolute; bottom: 0; left: 0; padding: 1.5rem; z-index: 2; }
.beat-genre { font-family: var(--font-hud); font-size: 1.2rem; margin-bottom: 5px; }
.beat-title { font-family: var(--font-title); font-size: 1.5rem; color: #fff; line-height: 1.2; }
.beat-meta { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 5px; }

.beat-hover-ui {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(2px);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: 0.3s; z-index: 3;
}
.beat-card:hover .beat-hover-ui { opacity: 1; }

.btn-play-circle {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 2px solid #fff;
    color: #fff; font-size: 1.5rem; display: flex; justify-content: center; align-items: center;
    cursor: pointer; transition: 0.3s;
}
.btn-play-circle:hover { background: #fff; color: #000; transform: scale(1.1); box-shadow: 0 0 20px #fff; }

/* ==========================================================================
   SECTION 4: WORLD / AESTHETIC
   ========================================================================== */
.world-aesthetic {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,0,127,0.2);
    border-bottom: 1px solid rgba(255,0,127,0.2);
    background: linear-gradient(0deg, rgba(5,1,10,1) 0%, rgba(255,0,127,0.05) 50%, rgba(5,1,10,1) 100%);
}

.huge-title { font-family: var(--font-title); font-size: 5rem; line-height: 1; margin-bottom: 1.5rem; }
.world-desc { font-size: 1.5rem; color: #fff; max-width: 800px; margin: 0 auto 3rem; }

.visual-loop { display: flex; justify-content: center; gap: 3rem; font-size: 3rem; color: rgba(255,255,255,0.1); }
.visual-loop i { transition: 0.3s; }
.visual-loop i:hover { color: var(--neon-cyan); text-shadow: var(--glow-cyan); transform: translateY(-10px); }

/* ==========================================================================
   SECTION 5: EVENTS / LEVEL SELECT
   ========================================================================== */
.progression-board { position: relative; max-width: 800px; margin: 0 auto; padding-left: 50px; }
.path-line {
    position: absolute; top: 0; left: 24px; width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--neon-green) 0%, var(--neon-peach) 50%, rgba(255,255,255,0.1) 100%);
    border-radius: 2px;
}

.level-node { position: relative; margin-bottom: 3rem; display: flex; align-items: center; gap: 2rem; }
.node-marker {
    position: absolute; left: -50px; width: 50px; height: 50px;
    background: var(--bg-dark); border: 2px solid; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-size: 1.2rem; z-index: 2;
}
.node-content { flex: 1; padding: 1.5rem; }

.level-node.completed .node-marker { border-color: var(--neon-green); color: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }
.level-node.active .node-marker { border-color: var(--neon-peach); color: var(--neon-peach); box-shadow: var(--glow-peach); }
.level-node.locked .node-marker { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.2); }

.border-peach { border-color: var(--neon-peach); box-shadow: 0 5px 15px rgba(255, 140, 66, 0.2); }
.faded { opacity: 0.5; border-color: rgba(255,255,255,0.1); }

.level-status { font-family: var(--font-hud); font-size: 1.2rem; margin-bottom: 5px; }
.level-title { font-family: var(--font-title); font-size: 1.8rem; color: #fff; line-height: 1.2; }
.level-date { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }

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

/* ==========================================================================
   SECTION 6: COLLAB / CONTACT
   ========================================================================== */
.collab-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.arcade-cabinet-mini {
    margin-top: 2rem; width: 150px; height: 200px;
    border: 4px solid var(--neon-pink); border-radius: 10px 10px 0 0;
    position: relative; display: flex; justify-content: center; align-items: center; font-size: 4rem;
    box-shadow: inset 0 0 20px rgba(255,0,127,0.3), var(--glow-pink);
    background: #000;
}
.screen-glitch {
    position: absolute; top: 10%; left: 10%; width: 80%; height: 50%;
    background: repeating-linear-gradient(0deg, rgba(0,255,255,0.1), rgba(0,255,255,0.1) 2px, transparent 2px, transparent 4px);
    border-radius: 5px; border: 1px solid var(--neon-cyan);
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-family: var(--font-hud); font-size: 1.2rem; color: var(--neon-cyan); }
.form-group input, .form-group textarea {
    background: rgba(0,0,0,0.5); border: 1px solid rgba(0,255,255,0.3);
    padding: 15px; color: #fff; font-family: var(--font-body); font-size: 1rem; border-radius: 5px;
    transition: 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0,255,255,0.2); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    border-top: 2px solid var(--neon-purple);
    background: #020005;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-title { font-family: var(--font-hud); font-size: 2rem; color: #fff; margin-bottom: 2rem; letter-spacing: 2px; }

.social-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 4rem; }
.social-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px; font-family: var(--font-hud); font-size: 1.2rem; transition: 0.3s;
}
.social-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); border-color: var(--neon-peach); color: var(--neon-peach); box-shadow: var(--glow-peach); }

.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 1rem; font-family: var(--font-hud); }
.player-ready { font-size: 1.5rem; color: var(--neon-green); text-shadow: var(--glow-green); }
.copyright { color: var(--text-muted); }
.footer-peach { font-size: 2rem; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes blink-slow { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes pulse-fast { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 10px var(--neon-peach); } 50% { box-shadow: 0 0 25px var(--neon-peach); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes glow-pulse { 0%, 100% { filter: drop-shadow(0 0 15px var(--neon-peach)); } 50% { filter: drop-shadow(0 0 35px var(--neon-peach)); } }
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 0 40px; } }
@keyframes rotateRing { 0% { transform: rotateX(0) rotateY(0) rotateZ(0); } 100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); } }
@keyframes eq { 0% { height: 10%; } 100% { height: 100%; } }

.blink { animation: blink 1s infinite; }
.blink-slow { animation: blink-slow 2s infinite; }
.pulse-fast { animation: pulse-fast 0.5s infinite; }
.pulse-glow { animation: pulse-glow 2s infinite; }
.float-anim { animation: float 4s ease-in-out infinite; }
.glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }

/* Text Glitch Effect */
.text-glitch { position: relative; }
.text-glitch::before, .text-glitch::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.8;
}
.text-glitch::before { color: var(--neon-cyan); z-index: -1; animation: glitchAnim 3s infinite; }
.text-glitch::after { color: var(--neon-pink); z-index: -2; animation: glitchAnim2 2.5s infinite; }
@keyframes glitchAnim {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}
@keyframes glitchAnim2 {
    0% { transform: translate(0) }
    20% { transform: translate(2px, -2px) }
    40% { transform: translate(2px, 2px) }
    60% { transform: translate(-2px, -2px) }
    80% { transform: translate(-2px, 2px) }
    100% { transform: translate(0) }
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .huge-title { font-size: 3.5rem; }
    .beats-layout, .collab-wrapper { grid-template-columns: 1fr; }
    .main-logo { font-size: 4rem; }
}

@media (max-width: 768px) {
    .hud-top { padding: 1rem; flex-wrap: wrap; gap: 1rem; justify-content: center; }
    .main-nav { order: 3; width: 100%; justify-content: space-around; padding: 0.5rem; border-radius: 10px; }
    .main-logo { font-size: 3rem; }
    .btn-start { font-size: 1.5rem; }
    .mascot-container { font-size: 5rem; }
    .hero-bottom-ui { left: 50%; transform: translateX(-50%); width: 90%; bottom: 1rem; }
    .lore-box { flex-direction: column; text-align: center; }
    .huge-title { font-size: 2.5rem; }
    .beat-grid { grid-template-columns: 1fr; }
    .progression-board { padding-left: 30px; }
    .path-line { left: 14px; }
    .node-marker { left: -30px; width: 30px; height: 30px; font-size: 0.8rem; }
}
