body {
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: radial-gradient(circle, #000000, #2b2b2b, #000000);
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

#countdown {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border: 2px solid #ff0000;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

#title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5em;
    margin-bottom: 20px;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.time {
    font-size: 2em;
    margin: 5px;
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.4;
    }
}