/* ==============================================
   CRT Theme — Зелёный терминал с эффектами
   Tokens defined in main.css body.theme-crt
   ============================================== */

/* Дополнительный glow и scanlines поверх main.css */

body.theme-crt #display {
    text-shadow: 0 0 3px #00ff00, 0 0 10px rgba(0, 255, 0, 0.45);
}

body.theme-crt .stats-bar,
body.theme-crt .panel-section,
body.theme-crt .tutorial-box,
body.theme-crt #pause-menu button {
    text-shadow: 0 0 6px rgba(0, 255, 0, 0.3);
}

/* Кнопки с glow */
body.theme-crt button:hover {
    box-shadow: 0 0 14px var(--g-accent), 0 0 28px rgba(0, 255, 0, 0.2);
}

/* Flicker animation */
@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    93% {
        opacity: 0.85;
    }

    94% {
        opacity: 1;
    }

    96% {
        opacity: 0.92;
    }

    97% {
        opacity: 1;
    }
}

body.theme-crt #game-container {
    animation: flicker 8s infinite;
}