/* Off-season recap page.
   The one page of the year that is about absence: the champion is the last certainty,
   and the empty baseline below is this site's chart language with nothing in it yet. */

.offseason-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 32px 20px 72px;
}

/* --- Champion hero ------------------------------------------------------ */

.champion-hero {
    background: linear-gradient(160deg, #14203a 0%, #1e2f52 100%);
    border-radius: 10px;
    padding: 44px 40px 48px;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-eyebrow {
    margin: 0 0 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8a97b0;
}

.champion-block {
    display: flex;
    align-items: center;
    gap: 28px;
}

.champion-logo {
    width: 104px;
    height: 104px;
    flex: 0 0 auto;
    object-fit: contain;
}

.champion-name {
    margin: 0;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #fff;
}

/* Cup silver — the trophy's own colour, used once and nowhere else. */
.champion-title {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c8ccd4;
}

.champion-detail {
    margin: 14px 0 0;
    font-size: 14px;
    color: #9aa6bd;
}

/* --- Season in review --------------------------------------------------- */

.section-label {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
}

.review {
    margin-top: 48px;
}

.review-list {
    margin: 0;
    border-top: 1px solid #e3e5e9;
}

.review-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e3e5e9;
}

.review-row dt {
    font-size: 13px;
    color: #6b7280;
    flex: 0 0 auto;
}

.review-row dd {
    margin: 0;
    text-align: right;
}

.review-row dd a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.review-row dd a:hover,
.review-row dd a:focus-visible {
    color: #4a6fa5;
    text-decoration: underline;
}

.review-stat {
    display: block;
    font-size: 13px;
    color: #6b7280;
    font-variant-numeric: tabular-nums;
}

.review-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.review-links a {
    font-size: 14px;
    color: #4a6fa5;
    text-decoration: none;
    font-weight: 600;
}

.review-links a:hover,
.review-links a:focus-visible {
    text-decoration: underline;
}

/* --- The empty baseline ------------------------------------------------- */

.waiting {
    margin-top: 52px;
}

/* This site's own chart, drawn empty. The frame and axis labels are what make the
   flat line read as "nothing has happened yet" rather than a broken graphic. */
.odds-chart {
    display: block;
    margin-top: 26px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #9aa1ad;
    font-variant-numeric: tabular-nums;
}

.chart-plot {
    height: 112px;
    margin: 6px 0 4px;
    border-top: 1px dashed #d3d7de;
    border-bottom: 2px solid #14203a;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    width: 100%;
}

/* Every team at zero: stubs sitting on the axis. */
.tick {
    flex: 1 1 0;
    min-width: 2px;
    height: 3px;
    background: #b8bec9;
    border-radius: 1px 1px 0 0;
}

.chart-caption {
    margin: 16px 0 0;
    font-size: 14px;
    color: #6b7280;
}

.countdown {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 36px 0 0;
}

.countdown-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #14203a;
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    font-size: 15px;
    color: #6b7280;
}

.countdown-date {
    margin: 10px 0 0;
    font-size: 14px;
    color: #6b7280;
}

/* --- Small screens ------------------------------------------------------ */

@media (max-width: 640px) {
    .offseason-page {
        padding: 20px 16px 56px;
    }

    .champion-hero {
        padding: 32px 24px 36px;
    }

    .champion-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .champion-logo {
        width: 72px;
        height: 72px;
    }

    .champion-name {
        font-size: 32px;
    }

    .review-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .review-row dd {
        text-align: left;
    }

    .countdown-number {
        font-size: 44px;
    }
}
