/* Additive release styles for per-map live countdowns. The main stylesheet is
   intentionally immutable, so this small versioned layer introduces the new
   card states without mutating an already-cached asset. */
.map-card.upcoming {
    opacity: 1;
    border-color: rgba(255, 165, 0, 0.75);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.16);
}

.map-card .timer {
    font-size: 1.45rem;
    text-align: center;
    margin: 0.75rem 0 0.15rem;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    min-height: 2.1rem;
}

.map-card.active .timer {
    color: #00ff88;
}

.map-card.upcoming .timer {
    color: #ffbd45;
}

.map-card-timer-label,
.maps-timer-intro {
    color: #c8d7e6;
    text-align: center;
}

.map-card-timer-label {
    font-size: 0.9rem;
    min-height: 1.35rem;
    margin: 0 0 0.75rem;
}

.maps-timer-intro {
    max-width: 760px;
    margin: -0.75rem auto 1.5rem;
    line-height: 1.5;
}

.map-card .status {
    display: block;
    width: max-content;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .map-card .timer {
        font-size: 1.3rem;
    }
}
