#season-banner {
    display: flex;
    align-items: center;
    gap: 14px;

    width: fit-content;
    margin: 24px auto 0;
    padding: 10px 20px;

    background: rgba(30, 30, 30, 0.72);
    border: 1px solid #4a4a4a;
    border-radius: 6px;

    font-family: Verdana, Geneva, Tahoma, sans-serif;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.season-label {
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.season-divider {
    width: 1px;
    height: 28px;
    background: #4a4a4a;
    flex-shrink: 0;
}

.season-countdown-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.season-ends-label {
    font-size: 11px;
    color: #9a9a9a;
    white-space: nowrap;
}

.season-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.season-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 32px;
}

.season-value {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.season-unit-label {
    font-size: 9px;
    color: #777;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.season-colon {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    line-height: 1;
    margin-bottom: 10px;
}

.season-ended {
    font-size: 12px;
    color: #9a9a9a;
    font-style: italic;
}