/*
════════════════════════════════════════════════════════
  Site desenvolvido por: Albert Augustus Corbett
  Proibida reprodução sem autorização
  © 2026 AlbertCorbett - Todos os direitos reservados
════════════════════════════════════════════════════════
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --neon: #AAFF00;
    --neon-dark: #08CB00;
    --neon-glow: rgba(170, 255, 0, 0.6);
    --bg: #000000;
    --bg-2: #0a0a0a;
    --bg-3: #111111;
    --bg-4: #1a1a1a;
    --text: #ffffff;
    --text-muted: #b8b8b8;
    --text-dim: #777777;
    --magenta: #FF00FF;
    --cyan: #00FFFF;
    --yellow: #FFFF00;
    --pink: #FF1493;
    --orange: #FF6C00;
    --blue: #00BFFF;
    --purple: #8B5CF6;
    --f-pixel: 'Press Start 2P', monospace;
    --f-terminal: 'VT323', monospace;
    --f-bitmap: 'Silkscreen', monospace;
    --f-comic: 'Comic Neue', 'Comic Sans MS', cursive;
    --f-marker: 'Permanent Marker', cursive;
    --f-display: 'Bungee', cursive;
}

html { scroll-behavior: smooth; }

.lobby-body {
    font-family: var(--f-comic);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

a { color: var(--neon); text-decoration: none; }

/* === STARFIELD BACKGROUND === */
.lobby-stars {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

/* === SCANLINES (CRT TV) === */
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0) 0,
        rgba(0, 0, 0, 0) 2px,
        rgba(0, 0, 0, 0.15) 3px,
        rgba(0, 0, 0, 0) 4px
    );
    animation: scanlines-move 8s linear infinite;
}
@keyframes scanlines-move {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes pulse-glow {
    0%, 100% {
        text-shadow:
            0 0 10px var(--neon-glow),
            0 0 20px var(--neon-glow);
    }
    50% {
        text-shadow:
            0 0 20px var(--neon-glow),
            0 0 40px var(--neon-glow),
            0 0 80px var(--neon-glow);
    }
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes shake {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(-2px, 1px) rotate(-1deg); }
    50% { transform: translate(2px, -1px) rotate(1deg); }
    75% { transform: translate(-1px, 2px) rotate(-0.5deg); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes reveal-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === BOOT SCREEN === */
.boot-screen {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-terminal);
    color: var(--neon);
    transition: opacity 0.6s;
}
.boot-screen.hidden {
    opacity: 0;
    pointer-events: none;
}
.boot-inner {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}
.boot-logo-text {
    font-family: var(--f-pixel);
    font-size: 1.4rem;
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon-glow);
    margin-bottom: 8px;
    animation: pulse-glow 1.5s ease-in-out infinite;
}
.boot-sub {
    font-family: var(--f-comic);
    font-size: 1.1rem;
    color: var(--cyan);
    margin-bottom: 40px;
}
.boot-progress {
    background: var(--bg-3);
    border: 2px solid var(--neon-dark);
    padding: 3px;
    margin-bottom: 16px;
}
.boot-bar {
    height: 16px;
    background: linear-gradient(90deg, var(--neon-dark), var(--neon), var(--magenta));
    width: 0%;
    animation: boot-fill 3.5s ease-in-out forwards;
    box-shadow: 0 0 10px var(--neon);
}
@keyframes boot-fill {
    0% { width: 0%; }
    20% { width: 15%; }
    40% { width: 35%; }
    60% { width: 60%; }
    80% { width: 85%; }
    100% { width: 100%; }
}
.boot-msg {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    min-height: 30px;
}
.boot-tip {
    font-family: var(--f-comic);
    font-size: 0.95rem;
    color: var(--yellow);
    animation: blink 1.5s infinite;
}

/* === TOPBAR === */
.lobby-topbar {
    background: linear-gradient(180deg, var(--bg-4), var(--bg-3));
    border-bottom: 1px solid var(--neon-dark);
    font-family: var(--f-terminal);
    font-size: 1.05rem;
    color: var(--text-muted);
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 10;
}
.topbar-status {
    color: var(--neon);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.status-dot {
    width: 8px; height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon);
    animation: pulse-glow 1.5s ease-in-out infinite;
    display: inline-block;
}

/* === MAIN === */
.lobby-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    position: relative;
}

/* === HEADER === */
.lobby-header {
    text-align: center;
    margin-bottom: 60px;
    animation: reveal-up 1s ease;
}
.lobby-pretitle {
    font-family: var(--f-pixel);
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 #000;
}
.lobby-h1 {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lobby-h1 span:first-child {
    color: var(--text);
    text-shadow: 4px 4px 0 var(--neon-dark);
    animation: shake 0.4s ease-in-out 2;
}
.lobby-h1-accent {
    background: linear-gradient(90deg, var(--neon), var(--magenta), var(--cyan), var(--neon));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s linear infinite;
    text-shadow: none;
}
.lobby-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 30px;
}
.lobby-subtitle b { color: var(--neon); }
.blink { animation: blink 1s infinite; }

/* === MARQUEE === */
.lobby-marquee {
    background: linear-gradient(90deg, #1a0033, #000, #1a0033);
    border-top: 2px solid var(--neon-dark);
    border-bottom: 2px solid var(--neon-dark);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}
.marquee-track {
    flex: 1;
    overflow: hidden;
}
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--f-terminal);
    font-size: 1.3rem;
    color: var(--neon);
    text-shadow: 0 0 8px var(--neon-glow);
    animation: marquee-scroll 25s linear infinite;
    padding-left: 100%;
}

/* === CHOICE SECTION === */
.choice-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 80px;
}

/* === CHOICE CARDS === */
.choice-card {
    background: var(--bg-3);
    border: 4px solid var(--neon-dark);
    padding: 40px 30px;
    position: relative;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 8px 8px 0 var(--bg-4);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}
.choice-card:hover {
    transform: translate(-6px, -6px) scale(1.02);
    box-shadow: 14px 14px 0 var(--neon-dark);
    border-color: var(--neon);
}

/* Card 90s */
.choice-90s {
    background:
        radial-gradient(ellipse at center, rgba(170,255,0,0.04) 0%, transparent 60%),
        var(--bg-3);
    border-color: var(--neon);
    box-shadow: 8px 8px 0 var(--neon-dark), inset 0 0 30px rgba(170, 255, 0, 0.05);
}
.choice-90s:hover {
    box-shadow: 14px 14px 0 var(--neon), 0 0 40px var(--neon-glow);
    animation: shake 0.5s ease-in-out infinite;
}
.choice-90s::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(170, 255, 0, 0.03) 2px, rgba(170, 255, 0, 0.03) 4px);
    pointer-events: none;
}

/* Card moderno */
.choice-app {
    background:
        radial-gradient(ellipse at center, rgba(0, 191, 255, 0.04) 0%, transparent 60%),
        var(--bg-3);
    border-color: var(--cyan);
    box-shadow: 8px 8px 0 #0080ff80, inset 0 0 30px rgba(0, 191, 255, 0.05);
}
.choice-app:hover {
    box-shadow: 14px 14px 0 var(--cyan), 0 0 40px rgba(0, 191, 255, 0.5);
}
.choice-app::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 191, 255, 0.05) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine-app 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shine-app {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

/* Cantos decorativos */
.choice-corner {
    position: absolute;
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neon);
    text-shadow: 0 0 8px var(--neon-glow);
}
.choice-corner.tl { top: 8px; left: 8px; }
.choice-corner.tr { top: 8px; right: 8px; }
.choice-corner.bl { bottom: 8px; left: 8px; }
.choice-corner.br { bottom: 8px; right: 8px; }

.choice-90s .choice-corner { color: var(--neon); }
.choice-app .choice-corner { color: var(--cyan); }

/* Tags */
.choice-tag {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-pixel);
    font-size: 0.7rem;
    padding: 6px 14px;
    letter-spacing: 2px;
    z-index: 2;
}
.choice-tag-retro {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 15px var(--neon-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}
.choice-tag-modern {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
}

/* Logo */
.choice-logo-wrap {
    position: relative;
    margin: 50px auto 20px;
    width: 280px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.choice-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px var(--neon-glow));
    transition: 0.4s;
}
.choice-90s .choice-logo {
    animation: shake 5s ease-in-out infinite;
}
.choice-app .choice-logo {
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.5));
}
.choice-card:hover .choice-logo {
    transform: scale(1.1) rotate(-2deg);
}

/* Glitch effect (90s) */
.choice-glitch {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 0, 255, 0.05) 20%,
            rgba(0, 255, 255, 0.05) 40%,
            rgba(170, 255, 0, 0.05) 60%,
            transparent 100%);
    animation: glitch-shift 3s steps(8) infinite;
    pointer-events: none;
}
@keyframes glitch-shift {
    0% { transform: translateX(0); opacity: 0.5; }
    20% { transform: translateX(-3px); opacity: 0.8; }
    40% { transform: translateX(3px); opacity: 0.3; }
    60% { transform: translateX(-2px); opacity: 0.9; }
    80% { transform: translateX(2px); opacity: 0.4; }
    100% { transform: translateX(0); opacity: 0.5; }
}

/* Shine effect (modern) */
.choice-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine-pass 4s ease-in-out infinite;
}
@keyframes shine-pass {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* Fallback de logo */
.choice-logo-fallback {
    font-family: var(--f-display);
    color: var(--neon);
    font-size: 3rem;
    text-align: center;
    text-shadow: 4px 4px 0 var(--neon-dark), 0 0 20px var(--neon-glow);
    line-height: 1;
}
.choice-logo-fallback div:last-child { font-size: 2.5rem; }
.choice-logo-fallback-modern { color: var(--cyan); text-shadow: 4px 4px 0 var(--purple); }

/* Title */
.choice-title {
    font-family: var(--f-display);
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 2px;
}
.text-shadow-pixel {
    display: block;
    font-family: var(--f-pixel);
    font-size: 0.4em;
    color: var(--text-muted);
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 8px;
    letter-spacing: 4px;
}
.neon-text {
    color: var(--neon);
    text-shadow:
        0 0 10px var(--neon-glow),
        0 0 20px var(--neon-glow),
        4px 4px 0 var(--neon-dark);
    animation: pulse-glow 2.5s ease-in-out infinite;
}
.gradient-text-modern {
    background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink), var(--cyan));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: rainbow 4s linear infinite;
}

/* Description */
.choice-desc {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 1rem;
}
.choice-90s .choice-desc { border-color: var(--neon); }
.choice-app .choice-desc { border-color: var(--cyan); }
.choice-desc p { padding: 4px 0; }
.choice-desc b { color: var(--neon); }
.choice-app .choice-desc b { color: var(--cyan); }

/* Meta info */
.choice-meta {
    background: var(--bg-4);
    border: 2px dashed var(--neon-dark);
    padding: 16px;
    margin-bottom: 24px;
    font-family: var(--f-terminal);
    font-size: 1.1rem;
}
.choice-app .choice-meta { border-color: var(--cyan); }
.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dotted var(--bg-4);
    gap: 8px;
}
.meta-row:last-child { border-bottom: none; }
.meta-label { color: var(--text-muted); }
.meta-value { color: var(--neon); text-align: right; }
.choice-app .meta-value { color: var(--cyan); }

/* CTA button */
.choice-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    font-family: var(--f-pixel);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: auto;
    margin-bottom: 12px;
    transition: 0.3s;
    border: 3px solid;
}
.choice-cta-retro {
    background: var(--neon);
    color: #000;
    border-color: var(--neon);
    box-shadow: 4px 4px 0 var(--neon-dark), 0 0 20px var(--neon-glow);
}
.choice-cta-retro:hover {
    box-shadow: 6px 6px 0 var(--neon-dark), 0 0 40px var(--neon);
    animation: shake 0.3s ease-in-out infinite;
}
.choice-cta-modern {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    border-color: var(--cyan);
    box-shadow: 4px 4px 0 var(--purple);
}
.choice-cta-modern:hover {
    box-shadow: 6px 6px 0 var(--purple), 0 0 30px var(--cyan);
}
.cta-arrow { animation: pulse-glow 1.5s ease-in-out infinite; }

/* URL */
.choice-url {
    text-align: center;
    font-family: var(--f-terminal);
    font-size: 1rem;
    color: var(--text-muted);
    background: #000;
    padding: 6px 12px;
    border: 1px dashed var(--neon-dark);
}
.choice-app .choice-url { border-color: var(--cyan); color: var(--cyan); }

/* Badge "NEW" */
.choice-badge-new {
    position: absolute;
    top: 10px;
    right: -10px;
    background: var(--magenta);
    color: #fff;
    font-family: var(--f-pixel);
    font-size: 0.55rem;
    padding: 8px 12px;
    transform: rotate(15deg);
    box-shadow: 0 0 15px var(--magenta);
    animation: float 2s ease-in-out infinite;
    z-index: 5;
}
.choice-badge-blue {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 15px var(--cyan);
}

/* === RETRO EFFECTS (sun + grid) === */
.retro-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    opacity: 0.15;
}
.retrowave-sun {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: linear-gradient(180deg, var(--magenta) 0%, var(--orange) 50%, var(--yellow) 100%);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 0 100px var(--magenta);
}
.retrowave-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-image:
        linear-gradient(var(--cyan) 1px, transparent 1px),
        linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(400px) rotateX(60deg);
    transform-origin: top;
}

/* === VS DIVIDER === */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.vs-line {
    flex: 1;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--neon), transparent);
    min-height: 100px;
    box-shadow: 0 0 10px var(--neon-glow);
}
.vs-circle {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--magenta), #800080);
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--magenta);
    animation: pulse-glow 2s ease-in-out infinite, spin 10s linear infinite;
}
.vs-text {
    font-family: var(--f-display);
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
}

/* === QUIZ === */
.quiz-section {
    margin-bottom: 60px;
}
.quiz-card {
    background: var(--bg-3);
    border: 4px double var(--neon);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 8px 8px 0 var(--neon-dark);
}
.quiz-title {
    font-family: var(--f-display);
    text-align: center;
    color: var(--neon);
    font-size: 1.4rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.quiz-question {
    font-family: var(--f-comic);
    font-size: 1.2rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 20px;
}
.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.quiz-opt {
    background: var(--bg-4);
    border: 2px solid var(--neon-dark);
    color: var(--text);
    padding: 16px;
    font-family: var(--f-comic);
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}
.quiz-opt:hover {
    background: var(--neon);
    color: #000;
    border-color: var(--neon);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--neon-glow);
}
.quiz-progress {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}
.qprog-dot {
    width: 14px; height: 14px;
    background: var(--bg-4);
    border: 2px solid var(--neon-dark);
    border-radius: 50%;
}
.qprog-dot.active {
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon-glow);
}
.quiz-result {
    text-align: center;
    padding: 20px;
    background: var(--bg-4);
    border: 2px solid var(--magenta);
}
.quiz-result-text {
    font-family: var(--f-display);
    color: var(--magenta);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.quiz-result-btn {
    display: inline-block;
    background: var(--neon);
    color: #000;
    padding: 12px 24px;
    font-family: var(--f-pixel);
    font-size: 0.85rem;
    text-decoration: none;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 var(--neon-dark);
}
.quiz-result-btn:hover {
    background: var(--magenta);
    color: #fff;
    box-shadow: 3px 3px 0 var(--neon-dark);
}

/* === DONT KNOW === */
.dont-know {
    text-align: center;
    margin-bottom: 60px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border: 2px dashed var(--text-dim);
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.dont-know b { color: var(--yellow); }

/* === FOOTER === */
.lobby-footer {
    text-align: center;
    padding: 30px 20px 0;
    border-top: 1px dashed var(--neon-dark);
    color: var(--text-muted);
    font-size: 0.95rem;
}
.lobby-footer p { margin: 6px 0; }
#visitorNum {
    color: var(--neon);
    background: #000;
    padding: 2px 8px;
    font-family: var(--f-terminal);
    border: 1px solid var(--neon-dark);
    text-shadow: 0 0 8px var(--neon-glow);
    letter-spacing: 2px;
}
.lobby-footer-tip {
    font-family: var(--f-pixel);
    font-size: 0.65rem !important;
    color: var(--yellow) !important;
    margin-top: 10px !important;
    animation: blink 2s infinite;
}

/* === KONAMI EGG === */
.konami-egg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.konami-egg.open {
    display: flex;
    animation: reveal-up 0.5s ease;
}
.egg-content {
    background: var(--bg-3);
    border: 4px double var(--magenta);
    padding: 40px;
    text-align: center;
    font-family: var(--f-pixel);
    box-shadow: 0 0 50px var(--magenta);
    max-width: 500px;
}
.egg-content h2 {
    color: var(--magenta);
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 var(--neon);
    animation: pulse-glow 1.5s ease-in-out infinite;
}
.egg-content p {
    font-family: var(--f-comic);
    color: var(--neon);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.egg-small {
    color: var(--cyan) !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
}
.egg-close {
    font-family: var(--f-bitmap);
    background: var(--neon);
    color: #000;
    border: 2px solid #000;
    padding: 10px 20px;
    cursor: pointer;
}
.egg-close:hover { background: var(--magenta); color: #fff; }

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--neon);
    color: #000;
    padding: 14px 24px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 var(--neon-dark);
    font-family: var(--f-bitmap);
    font-size: 0.95rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast-icon {
    background: #000;
    color: var(--neon);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .choice-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vs-divider {
        flex-direction: row;
        padding: 0;
        height: auto;
        gap: 0;
    }
    .vs-line {
        width: auto;
        height: 4px;
        min-height: 0;
        background: linear-gradient(90deg, transparent, var(--neon), transparent);
    }
    .vs-circle { width: 70px; height: 70px; }
    .vs-text { font-size: 1.5rem; }
    .lobby-topbar { font-size: 0.85rem; }
    .lobby-topbar span:nth-child(4) { display: none; }
    .choice-logo-wrap { width: 220px; height: 160px; }
    .quiz-options { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .choice-card { padding: 30px 20px; }
    .choice-logo-wrap { width: 180px; height: 130px; }
    .quiz-card { padding: 20px; }
    .lobby-footer-tip { font-size: 0.55rem !important; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scanlines { display: none; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track {
    background: var(--bg-2);
    border-left: 1px solid var(--neon-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon), var(--neon-dark));
    border: 2px solid var(--bg-2);
}
::-webkit-scrollbar-thumb:hover { background: var(--magenta); }
