/* Cinematic Countdown Display */
#countdown-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    font-weight: 900;
    color: #d4af37;
    text-shadow:
        0 10px 30px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(212, 175, 55, 0.6);
    z-index: 50;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#countdown-display.hidden {
    opacity: 0;
}
