/* ─────────────────────────────────────────────────────────────
   Center everything on a dark background and style the timer.
───────────────────────────────────────────────────────────── */
body {
    background: #10141a;
    color: #00ffd0;
    font-family: "Courier New", monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem;
}

/* Container for the countdown fields */
#countdown {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Each time component (Year, Month, etc.) */
.time-box {
    text-align: center;
}

.time-box .number {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-shadow: 0 0 0.4rem #00ffd0;
    text-shadow: 5px 15px 0.44rem #00bee476;
}

.time-box .label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Status text below the countdown */
#status {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Hidden iframe container (1×1 px) */
#audio-player {
    width: 1px;
    height: 1px;
    overflow: hidden;
}