.crt-container {
    position: relative;
    width: 800px;
    height: 600px;
    background: #111;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 0 0 10px #333, /* Inner Bezel */
        0 0 0 20px #222, /* Outer Bezel */
        0 0 50px rgba(0,0,0,0.8);
    overflow: hidden;
}

.crt-screen {
    width: 100%;
    height: 100%;
    background-color: #050505;
    border-radius: 100px / 20px; /* Slight curvature */
    position: relative;
    overflow: hidden;
    color: #0f0; /* Default terminal green */
    font-family: 'VT323', monospace;
    text-shadow: 0 0 5px currentColor;
}

/* Scanlines */
.crt-screen::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
}

/* Flicker / Glow */
.crt-screen::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(18, 16, 16, 0.1);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0% { opacity: 0.02; }
    50% { opacity: 0.05; }
    100% { opacity: 0.02; }
}

/* Game Specific Styles */
.game-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    position: relative;
}

/* TimeLock Specifics */
.timelock-screen {
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
}

/* Reflex Specifics */
.reflex-screen {
    color: #f00;
    text-shadow: 0 0 5px #f00;
}

/* Clickless Specifics */
.clickless-screen {
    color: #fff;
    text-shadow: 0 0 5px #fff;
}
