/* ==========================================================================
   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;
    background-color: #05010a;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(5,1,10,0.8) 100%);
    pointer-events: none;
    z-index: 10;
}

/* Living Background Environment */
.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;
}
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

.synthwave-sun {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: linear-gradient(to bottom, #ff007f, #ff4e50, #f9d423);
    border-radius: 50%;
    box-shadow: 0 0 150px rgba(255, 0, 127, 0.8), 0 0 80px rgba(255, 78, 80, 0.8);
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 50%, transparent 60%);
    -webkit-mask-image: repeating-linear-gradient(to bottom, black, black 6px, transparent 6px, transparent 12px);
    animation: sun-pulse 4s infinite alternate ease-in-out;
}

.city-skyline {
    position: absolute;
    bottom: 35%;
    left: 0; width: 100%; height: 250px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 250" preserveAspectRatio="none"><path d="M0,250 L0,150 L30,150 L30,80 L80,80 L80,120 L150,120 L150,50 L200,50 L200,140 L280,140 L280,30 L350,30 L350,160 L420,160 L420,70 L500,70 L500,100 L580,100 L580,20 L650,20 L650,110 L750,110 L750,40 L820,40 L820,150 L900,150 L900,60 L980,60 L980,250 Z" fill="%230a0212"/><path d="M10,160 L15,160 M20,100 L25,100 M40,90 L45,90 M60,110 L65,110 M100,130 L105,130 M120,60 L125,60 M180,150 L185,150 M220,100 L225,100 M300,50 L305,50 M320,80 L325,80 M380,170 L385,170 M450,90 L455,90 M520,110 L525,110 M600,40 L605,40 M620,70 L625,70 M680,120 L685,120 M780,60 L785,60 M850,160 L855,160 M920,80 L925,80" stroke="%23ff007f" stroke-width="2" stroke-dasharray="2,10"/></svg>') repeat-x;
    background-size: 1000px 250px;
    z-index: 3;
    border-bottom: 2px solid var(--neon-pink);
    box-shadow: 0 5px 20px var(--neon-pink);
}

.stars-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 60%;
    background: radial-gradient(1px 1px at 10% 20%, #fff, transparent), radial-gradient(2px 2px at 30% 40%, #ff8c42, transparent), radial-gradient(1px 1px at 50% 10%, #00ffff, transparent), radial-gradient(2px 2px at 70% 30%, #ff007f, transparent), radial-gradient(1px 1px at 90% 50%, #fff, transparent);
    background-size: 200px 200px;
    z-index: 1;
    animation: twinkle-stars 5s infinite alternate;
}
@keyframes twinkle-stars { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* Environmental Decor */
.bg-arcade {
    position: absolute;
    bottom: 5%;
    left: 3%;
    width: 260px;
    height: 400px;
    background: #080211;
    z-index: 5;
    border: 2px solid rgba(255,0,127,0.3);
    border-radius: 10px 10px 0 0;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.9), 10px 0 30px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.arcade-roof {
    width: 110%;
    height: 30px;
    background: #05010a;
    border-bottom: 3px solid var(--neon-pink);
    margin-top: -10px;
    transform: perspective(100px) rotateX(10deg);
}
.arcade-neon {
    margin-top: 20px;
    padding: 10px;
    border: 3px solid var(--neon-pink);
    border-radius: 5px;
    color: var(--neon-pink);
    font-family: var(--font-title);
    font-size: 28px;
    text-align: center;
    line-height: 1.1;
    text-shadow: var(--glow-pink);
    box-shadow: inset 0 0 15px rgba(255,0,127,0.4), 0 0 15px rgba(255,0,127,0.4);
    animation: blink-slow 3s infinite alternate;
}
.arcade-marquee {
    margin-top: 20px;
    padding: 5px 15px;
    border: 2px solid var(--neon-peach);
    border-radius: 20px;
    color: var(--neon-peach);
    font-family: var(--font-hud);
    font-size: 16px;
    text-shadow: var(--glow-peach);
}
.arcade-screen {
    margin-top: 20px;
    width: 200px;
    height: 140px;
    background: #000;
    border: 4px solid var(--neon-cyan);
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0,255,255,0.4), 0 0 20px rgba(0,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.arcade-screen::after {
    content: 'INSERT COIN';
    color: var(--neon-cyan);
    font-family: var(--font-hud);
    font-size: 24px;
    text-shadow: var(--glow-cyan);
    animation: blink 1.5s infinite;
}
.arcade-controls {
    margin-top: 20px;
    width: 220px;
    height: 50px;
    background: #020005;
    transform: perspective(100px) rotateX(40deg);
    border-top: 2px solid var(--neon-purple);
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.arcade-controls span {
    width: 15px; height: 15px; border-radius: 50%;
    background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink);
}
.arcade-controls span:nth-child(2) { background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }
.arcade-controls span:nth-child(3) { background: var(--neon-peach); box-shadow: 0 0 10px var(--neon-peach); }

.bg-sports-car {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 300px;
    height: 100px;
    z-index: 5;
}
.car-body {
    position: absolute;
    bottom: 10px;
    width: 100%;
    height: 50px;
    background: #05010a;
    border: 2px solid rgba(255,0,127,0.5);
    border-radius: 10px 10px 30px 30px;
    box-shadow: inset 0 0 20px rgba(255,0,127,0.3), 0 10px 20px rgba(0,0,0,0.9);
}
.car-body::before {
    content: ''; position: absolute;
    bottom: 50px; left: 50px; width: 200px; height: 40px;
    background: #020005;
    border-radius: 20px 20px 0 0;
    border-top: 2px solid var(--neon-cyan);
}
.car-lights {
    position: absolute;
    bottom: 20px; right: 20px;
    width: 40px; height: 15px;
    background: #ff0000;
    border-radius: 5px;
    box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
}
.car-lights::before {
    content: ''; position: absolute; left: -220px; top: 0;
    width: 40px; height: 15px; background: #ff0000;
    border-radius: 5px; box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
}

.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-hud);
    display: flex;
    flex-direction: column;
    font-size: 6rem;
    line-height: 0.8;
    letter-spacing: 2px;
    text-align: center;
    filter: drop-shadow(0px 8px 0px #300b52) drop-shadow(0px 0px 20px rgba(255,0,127,0.5));
    margin-top: -1rem;
}

.mellow-text {
    background: linear-gradient(180deg, #ffeb3b 0%, #ff8c42 50%, #ff007f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cut-text {
    background: linear-gradient(180deg, #d600ff 0%, #7000ff 50%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.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;
}

/* Responsive Scaling for Hero */
@media (max-width: 1024px) {
    .bg-arcade { transform: scale(0.8); transform-origin: bottom left; }
    .bg-sports-car { transform: scale(0.8); transform-origin: bottom right; }
}

@media (max-width: 768px) {
    .bg-arcade, .bg-sports-car { opacity: 0.2; }
    .city-skyline { opacity: 0.5; }
    
    .mascot-container { font-size: 6rem; }
    .main-logo { font-size: 4.5rem; }
    .cut-text { font-size: 4rem; }
    .btn-start { font-size: 1.8rem; padding: 10px 25px; }
    .hero-bottom-ui {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
        width: 90%;
        justify-content: center;
    }
}

/* 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) {
    .hero { min-height: 850px; }
    .hud-top { padding: 1rem; flex-wrap: wrap; gap: 0.5rem; justify-content: space-between; font-size: 0.9rem; }
    .main-nav { order: 3; width: 100%; justify-content: space-around; padding: 0.5rem; border-radius: 10px; gap: 0.5rem; }
    .nav-link { font-size: 0.75rem; letter-spacing: 1px; }
    .hud-hearts i { font-size: 1rem; }
    
    .bg-arcade { transform: scale(0.4); transform-origin: bottom left; opacity: 0.15; }
    .bg-sports-car { transform: scale(0.4); transform-origin: bottom right; opacity: 0.15; }
    .city-skyline { opacity: 0.3; }
    
    .hero-content { margin-top: -5vh; gap: 1rem; padding-bottom: 60px; }
    .mascot-container { font-size: 4rem; }
    .main-logo { font-size: 3rem; margin-top: 0; }
    .cut-text { font-size: 3rem; gap: 5px; }
    .btn-start { font-size: 1.2rem; padding: 10px 20px; }
    .subtitle { font-size: 0.9rem; }
    
    .hero-bottom-ui { 
        left: 50%; 
        transform: translateX(-50%); 
        width: 95%; 
        bottom: 1rem; 
    }
    .player-module {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .lore-box { flex-direction: column; text-align: center; gap: 2rem; }
    .huge-title { font-size: 2.5rem; }
    .beat-grid { grid-template-columns: 1fr; }
    
    .progression-board { padding-left: 20px; }
    .path-line { left: 9px; }
    .node-marker { left: -25px; width: 30px; height: 30px; font-size: 0.8rem; }
    .level-node { gap: 1rem; }
    
    .countdown .time-box { min-width: 50px; padding: 5px; }
    .countdown .num { font-size: 1.8rem; }
    .countdown .colon { font-size: 1.5rem; }
    
    .collab-wrapper { gap: 2rem; }
    .arcade-cabinet-mini { margin: 1rem auto; width: 100px; height: 150px; }
}
