body {
    background-color: #000;
    color: #00ff00; /* Green text for a terminal-like feel */
    font-family: 'Share Tech Mono', monospace; /* A monospace font for digital look */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden; /* Hide scrollbars */
}

.countdown-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent background */
    padding: 40px;
    border: 2px solid #00ff00; /* Green border */
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5); /* Green glow effect */
    border-radius: 10px;
}

.countdown-display {
    font-size: 4em;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7); /* Text glow */
}

.countdown-display span {
    display: inline-block;
    min-width: 60px; /* Ensure consistent spacing */
}

.countdown-label {
    font-size: 1.2em;
    letter-spacing: 3px;
    color: #00cc00; /* Slightly darker green for labels */
    margin-bottom: 30px;
}

.lost-numbers {
    font-size: 1.5em;
    letter-spacing: 8px;
    color: #00cc00; /* Green for the new text */
    text-shadow: 0 0 10px rgba(0, 204, 0, 0.7); /* Green glow */
    font-size: 1.2em; /* Adjust font size for the new text */
    margin-top: 20px;
    animation: flicker 1.5s infinite alternate; /* Flicker effect */
}

@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Optional: Add a subtle scanline effect for CRT feel */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 1px,
        rgba(0, 255, 0, 0.05) 1px,
        rgba(0, 255, 0, 0.05) 2px
    );
    pointer-events: none;
    opacity: 0.5;
}
