/* WC2026 Live Scores - Frontend Styles */
:root {
    --wc2026-primary:   #003DA5;
    --wc2026-accent:    #C8102E;
    --wc2026-live:      #22C55E;
    --wc2026-gold:      #F59E0B;
    --wc2026-silver:    #9CA3AF;
    --wc2026-bronze:    #92400E;
    --wc2026-bg:        #ffffff;
    --wc2026-bg2:       #f4f6f9;
    --wc2026-border:    #e0e4ea;
    --wc2026-text:      #1a1a2e;
    --wc2026-text-mute: #6b7280;
    --wc2026-radius:    10px;
    --wc2026-shadow:    0 2px 12px rgba(0,0,0,.08);
    --wc2026-fs:        10px; /* base font unit — override via admin setting */
}

@media (prefers-color-scheme: dark) {
    :root {
        --wc2026-bg:        #111827;
        --wc2026-bg2:       #1f2937;
        --wc2026-border:    #374151;
        --wc2026-text:      #f9fafb;
        --wc2026-text-mute: #9ca3af;
        --wc2026-shadow:    0 2px 12px rgba(0,0,0,.4);
    }
}

/* ── Base ── */
.wc2026-schedule-wrap,
.wc2026-standings-wrap,
.wc2026-scorers-wrap,
.wc2026-stats-card,
.wc2026-h2h-wrap,
.wc2026-bracket-wrap,
.wc2026-scoreboard,
.wc2026-predict-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--wc2026-text);
    line-height: 1.5;
}

/* ── Tables ── */
.wc2026-schedule-table,
.wc2026-standings-table,
.wc2026-scorers-table,
.wc2026-h2h-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--wc2026-bg);
    border-radius: var(--wc2026-radius);
    overflow: hidden;
    box-shadow: var(--wc2026-shadow);
    margin-bottom: 1.5rem;
}

.wc2026-schedule-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--wc2026-radius);
}

.wc2026-schedule-table {
    min-width: 580px;
}

.wc2026-schedule-table thead,
.wc2026-standings-table thead,
.wc2026-scorers-table thead,
.wc2026-h2h-table thead {
    background: linear-gradient(135deg, var(--wc2026-primary) 0%, #0052cc 100%);
    color: #fff;
}

.wc2026-schedule-table th,
.wc2026-standings-table th,
.wc2026-scorers-table th,
.wc2026-h2h-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: calc(1.6 * var(--wc2026-fs));
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
}

.wc2026-schedule-table th:nth-child(2) { text-align: right; }
.wc2026-schedule-table th:nth-child(3) { text-align: center; width: 90px; }
.wc2026-schedule-table th:nth-child(4) { text-align: left; }

.wc2026-schedule-table td,
.wc2026-standings-table td,
.wc2026-scorers-table td,
.wc2026-h2h-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--wc2026-border);
    font-size: calc(1.6 * var(--wc2026-fs));
    vertical-align: middle;
}

.wc2026-schedule-table tbody tr:last-child td,
.wc2026-standings-table tbody tr:last-child td,
.wc2026-scorers-table tbody tr:last-child td,
.wc2026-h2h-table tbody tr:last-child td {
    border-bottom: none;
}

.wc2026-schedule-table tbody tr:nth-child(even) {
    background: rgba(0, 61, 165, .03);
}

.wc2026-schedule-table tbody tr:hover,
.wc2026-standings-table tbody tr:hover,
.wc2026-h2h-table tbody tr:hover {
    background: var(--wc2026-bg2);
    transition: background .15s;
}

/* ── Status badges ── */
.wc2026-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: calc(1.4 * var(--wc2026-fs));
    font-weight: 700;
    background: var(--wc2026-bg2);
    color: var(--wc2026-text-mute);
}
.wc2026-status.live {
    background: var(--wc2026-live);
    color: #fff;
}
.wc2026-status.ft {
    background: var(--wc2026-primary);
    color: #fff;
}
.wc2026-status.ns {
    background: transparent;
    color: var(--wc2026-text-mute);
    font-weight: 400;
}

/* ── Pulse dot ── */
.wc2026-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: wc2026pulse 1.4s infinite;
}
@keyframes wc2026pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(1.4); }
}

/* ── Score ── */
.wc2026-score, .wc2026-score-val {
    font-size: calc(2 * var(--wc2026-fs));
    font-weight: 700;
    text-align: center;
}
.wc2026-score-val.live {
    color: var(--wc2026-live);
}
.wc2026-vs {
    color: var(--wc2026-text-mute);
    font-size: calc(1.6 * var(--wc2026-fs));
}

/* ── Team cell ── */
.wc2026-team-cell,
.wc2026-player-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wc2026-team.home,
.wc2026-team.away {
    vertical-align: middle;
}
.wc2026-flag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 26px;
    background: var(--wc2026-primary);
    color: #fff;
    font-size: calc(1.1 * var(--wc2026-fs));
    font-weight: 700;
    border-radius: 3px;
}
.fi {
    font-size: calc(2 * var(--wc2026-fs));
    border-radius: 2px;
}

/* ── Live row ── */
.wc2026-row.is-live {
    background: rgba(34,197,94,.06);
}

/* ── Scoreboard ── */
.wc2026-scoreboard {
    background: var(--wc2026-bg);
    border-radius: var(--wc2026-radius);
    box-shadow: var(--wc2026-shadow);
    padding: 1.5rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    border-top: 4px solid var(--wc2026-primary);
}
.wc2026-scoreboard.is-live {
    border-top-color: var(--wc2026-live);
}
.wc2026-sb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: calc(1.4 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
}
.wc2026-sb-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.wc2026-sb-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
}
.wc2026-sb-team .fi { font-size: calc(2.5 * var(--wc2026-fs)); }
.wc2026-sb-score {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: calc(3.5 * var(--wc2026-fs));
    font-weight: 900;
    color: var(--wc2026-text);
}
.wc2026-sb-venue {
    text-align: center;
    font-size: calc(1.3 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    margin-top: .75rem;
}
.wc2026-sb-events {
    margin-top: 1rem;
    border-top: 1px solid var(--wc2026-border);
    padding-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wc2026-event {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: calc(1.4 * var(--wc2026-fs));
}
.wc2026-event.away {
    flex-direction: row-reverse;
}

/* ── Standings ── */
.wc2026-group-title {
    font-size: calc(1.8 * var(--wc2026-fs));
    font-weight: 700;
    color: var(--wc2026-primary);
    margin: 1.2rem 0 .4rem;
}
.wc2026-qualify {
    background: rgba(0,61,165,.05);
}
.wc2026-qualify-badge {
    color: var(--wc2026-live);
    font-weight: 700;
    margin-left: 4px;
}
.wc2026-pts { color: var(--wc2026-primary); }

/* ── Scorers ── */
.wc2026-rank {
    display: inline-block;
    font-size: calc(1.8 * var(--wc2026-fs));
    min-width: 28px;
    text-align: center;
}
.wc2026-goals-val strong {
    font-size: calc(2 * var(--wc2026-fs));
    color: var(--wc2026-primary);
}

/* ── Stats card ── */
.wc2026-stats-card {
    background: var(--wc2026-bg);
    border-radius: var(--wc2026-radius);
    box-shadow: var(--wc2026-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.wc2026-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.wc2026-stats-team {
    display: flex;
    align-items: center;
    gap: 8px;
}
.wc2026-stats-team.right {
    flex-direction: row-reverse;
}
.wc2026-stat-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .6rem;
}
.wc2026-stat-val-a,
.wc2026-stat-val-b {
    min-width: 42px;
    font-weight: 700;
    font-size: calc(1.6 * var(--wc2026-fs));
}
.wc2026-stat-val-b { text-align: right; }
.wc2026-stat-bar-wrap {
    flex: 1;
    text-align: center;
}
.wc2026-stat-label {
    font-size: calc(1.3 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    margin-bottom: 3px;
}
.wc2026-stat-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--wc2026-bg2);
}
.wc2026-bar-a {
    background: var(--wc2026-primary);
    transition: width .4s ease;
}
.wc2026-bar-b {
    background: var(--wc2026-accent);
    transition: width .4s ease;
}

/* ── H2H ── */
.wc2026-h2h-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--wc2026-primary), var(--wc2026-accent));
    color: #fff;
    border-radius: var(--wc2026-radius);
    padding: 1.5rem;
    margin-bottom: 1.2rem;
}
.wc2026-h2h-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.wc2026-h2h-side .fi { font-size: calc(4 * var(--wc2026-fs)); }
.wc2026-h2h-name { font-weight: 700; font-size: calc(1.8 * var(--wc2026-fs)); }
.wc2026-h2h-vs {
    font-size: calc(2.5 * var(--wc2026-fs));
    font-weight: 900;
    opacity: .7;
}
.wc2026-win-a { background: rgba(0,61,165,.07); }
.wc2026-win-b { background: rgba(200,16,46,.07); }
.wc2026-result { font-weight: 700; }
.wc2026-result.draw { color: var(--wc2026-text-mute); }
.wc2026-result.win  { color: var(--wc2026-live); }

/* ── Bracket ── */
.wc2026-bracket {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.wc2026-bracket-round {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}
.wc2026-bracket-round h4 {
    font-size: calc(1.4 * var(--wc2026-fs));
    text-transform: uppercase;
    color: var(--wc2026-primary);
    margin: 0 0 8px;
    text-align: center;
}
.wc2026-bracket-match {
    background: var(--wc2026-bg2);
    border: 1px solid var(--wc2026-border);
    border-radius: 6px;
    overflow: hidden;
}
.wc2026-bracket-team {
    padding: 6px 10px;
    font-size: calc(1.5 * var(--wc2026-fs));
    border-bottom: 1px solid var(--wc2026-border);
}
.wc2026-bracket-team:last-child { border-bottom: none; }
.wc2026-bracket-match.champion {
    border-color: var(--wc2026-gold);
    box-shadow: 0 0 0 2px var(--wc2026-gold);
}

/* ── Predict ── */
.wc2026-predict-wrap {
    background: var(--wc2026-bg);
    border-radius: var(--wc2026-radius);
    box-shadow: var(--wc2026-shadow);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}
.wc2026-predict-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: .8rem 0;
}
.wc2026-vote-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--wc2026-primary);
    background: transparent;
    color: var(--wc2026-primary);
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    min-width: 80px;
}
.wc2026-vote-btn:hover {
    background: var(--wc2026-primary);
    color: #fff;
}
.wc2026-predict-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.wc2026-predict-label { min-width: 70px; font-size: calc(1.4 * var(--wc2026-fs)); }
.wc2026-predict-bar {
    flex: 1;
    height: 10px;
    background: var(--wc2026-bg2);
    border-radius: 5px;
    overflow: hidden;
}
.wc2026-predict-fill {
    height: 100%;
    border-radius: 5px;
    transition: width .4s ease;
}
.wc2026-predict-fill.home { background: var(--wc2026-primary); }
.wc2026-predict-fill.draw { background: var(--wc2026-silver); }
.wc2026-predict-fill.away { background: var(--wc2026-accent); }
.wc2026-predict-pct { min-width: 32px; font-size: calc(1.4 * var(--wc2026-fs)); font-weight: 700; text-align: right; }
.wc2026-predict-total { font-size: calc(1.3 * var(--wc2026-fs)); color: var(--wc2026-text-mute); margin-top: 6px; }
.wc2026-predict-bars.hidden { display: none; }

/* ── Widget ── */
.wc2026-widget-list { display: flex; flex-direction: column; gap: 8px; }
.wc2026-widget-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    background: var(--wc2026-bg2);
    border-radius: 6px;
    font-size: calc(1.5 * var(--wc2026-fs));
}
.wc2026-widget-match.is-live { background: rgba(34,197,94,.08); }
.wc2026-widget-teams {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}
.wc2026-widget-score {
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}
.wc2026-live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--wc2026-live);
    font-size: calc(1.3 * var(--wc2026-fs));
    font-weight: 700;
}

/* ── Emoji img fix (WordPress replaces emoji text with <img class="emoji">;
   themes often set img { max-width:100%; height:auto } which makes them huge) ── */
.wc2026-sb-venue img.emoji,
.wc2026-ls-expand-item img.emoji,
.wc2026-ev-icon img.emoji {
    width: 1em;
    height: 1em;
    vertical-align: -.1em;
    margin: 0;
    max-width: none;   /* override theme max-width:100% */
}

/* ── Countdown ── */
.wc2026-countdown {
    font-size: calc(1.3 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    margin-top: 3px;
}
.wc2026-countdown img.emoji {
    width: .85em;
    height: .85em;
    vertical-align: -.1em;
    margin: 0;
}

/* ── Calendar dropdown ── */
.wc2026-cal-dropdown { position: relative; display: inline-block; }
.wc2026-btn-cal {
    background: none;
    border: none;
    cursor: pointer;
    font-size: calc(1.8 * var(--wc2026-fs));
    padding: 2px 4px;
    line-height: 1;
}
.wc2026-btn-cal img.emoji {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -.15em;
    margin: 0;
}
.wc2026-cal-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--wc2026-bg);
    border: 1px solid var(--wc2026-border);
    border-radius: 6px;
    box-shadow: var(--wc2026-shadow);
    min-width: 150px;
    z-index: 99;
    display: flex;
    flex-direction: column;
}
.wc2026-cal-menu a {
    padding: 8px 12px;
    font-size: calc(1.5 * var(--wc2026-fs));
    text-decoration: none;
    color: var(--wc2026-text);
    border-bottom: 1px solid var(--wc2026-border);
}
.wc2026-cal-menu a:last-child { border-bottom: none; }
.wc2026-cal-menu a:hover { background: var(--wc2026-bg2); }
[hidden] { display: none !important; }

/* ── Powered by ── */
.wc2026-powered-by {
    font-size: calc(1.2 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    text-align: right;
    margin-top: .5rem;
}
.wc2026-powered-by a {
    color: var(--wc2026-text-mute);
    text-decoration: none;
}
.wc2026-powered-by a:hover {
    text-decoration: underline;
}

/* ── Live Scores (wc2026_livescores) ── */
.wc2026-ls-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--wc2026-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Date tabs */
.wc2026-ls-dates-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: .8rem;
    padding-bottom: 4px;
}
.wc2026-ls-dates {
    display: flex;
    gap: 6px;
    white-space: nowrap;
    min-width: min-content;
}
.wc2026-ls-date-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 7px 14px;
    border: 2px solid var(--wc2026-border);
    border-radius: 8px;
    background: var(--wc2026-bg);
    cursor: pointer;
    font-size: calc(1.5 * var(--wc2026-fs));
    color: var(--wc2026-text);
    transition: border-color .15s, background .15s, color .15s;
    white-space: nowrap;
    line-height: 1.3;
}
.wc2026-ls-date-btn.active {
    border-color: var(--wc2026-primary);
    background: var(--wc2026-primary);
    color: #fff;
}
.wc2026-ls-date-btn:hover:not(.active) {
    border-color: var(--wc2026-primary);
    color: var(--wc2026-primary);
}
.wc2026-ls-date-count {
    font-size: calc(1.2 * var(--wc2026-fs));
    opacity: .7;
}

/* Round filter pills */
.wc2026-ls-rounds {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: .8rem;
}
.wc2026-ls-round-btn {
    padding: 4px 12px;
    border: 1px solid var(--wc2026-border);
    border-radius: 20px;
    background: var(--wc2026-bg);
    cursor: pointer;
    font-size: calc(1.4 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    transition: border-color .15s, background .15s, color .15s;
}
.wc2026-ls-round-btn.active {
    border-color: var(--wc2026-primary);
    background: rgba(0,61,165,.08);
    color: var(--wc2026-primary);
    font-weight: 700;
}
.wc2026-ls-round-btn:hover:not(.active) {
    border-color: var(--wc2026-primary);
    color: var(--wc2026-primary);
}

/* Match list */
.wc2026-ls-matches {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.wc2026-ls-hidden { display: none !important; }

/* Match card */
.wc2026-ls-match {
    background: var(--wc2026-bg);
    border: 1px solid var(--wc2026-border);
    border-radius: var(--wc2026-radius);
    box-shadow: var(--wc2026-shadow);
    overflow: hidden;
    transition: border-color .2s;
}
.wc2026-ls-match.is-live {
    border-color: var(--wc2026-live);
}
.wc2026-ls-round-label {
    font-size: calc(1.2 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    background: var(--wc2026-bg2);
    padding: 3px 12px;
    border-bottom: 1px solid var(--wc2026-border);
}
.wc2026-ls-match-inner {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 8px;
}

/* Teams */
.wc2026-ls-team {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}
.wc2026-ls-team.away {
    flex-direction: row-reverse;
    text-align: right;
}
.wc2026-ls-team-name {
    font-size: calc(1.5 * var(--wc2026-fs));
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Score / status center */
.wc2026-ls-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 96px;
    gap: 2px;
    flex-shrink: 0;
}
.wc2026-ls-goals {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: calc(2.2 * var(--wc2026-fs));
    font-weight: 700;
}
.wc2026-ls-dash {
    color: var(--wc2026-text-mute);
    font-weight: 300;
}
.wc2026-ls-kickoff {
    font-size: calc(1.5 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    text-align: center;
}
.wc2026-ls-vs {
    font-size: calc(1.3 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    letter-spacing: .05em;
}
.wc2026-ls-no-match {
    text-align: center;
    color: var(--wc2026-text-mute);
    padding: 1.5rem;
}

/* Chevron toggle */
.wc2026-ls-match-inner {
    cursor: pointer;
    user-select: none;
}
.wc2026-ls-chevron {
    font-size: calc(1.6 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    transition: transform .2s;
    flex-shrink: 0;
    line-height: 1;
    margin-left: 4px;
}
.wc2026-ls-match-inner.expanded .wc2026-ls-chevron {
    transform: rotate(180deg);
}

/* Expand panel */
.wc2026-ls-expand {
    border-top: 1px solid var(--wc2026-border);
    padding: 8px 14px;
    background: var(--wc2026-bg2);
}
.wc2026-ls-expand-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}
.wc2026-ls-expand-item {
    font-size: calc(1.3 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    display: flex;
    align-items: center;
    gap: 4px;
}
.wc2026-ls-expand-ft {
    font-weight: 700;
    color: var(--wc2026-text);
}

/* Desktop 2-column grid */
@media (min-width: 640px) {
    .wc2026-ls-matches {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .wc2026-ls-no-match {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .wc2026-ls-team-name { font-size: calc(1.3 * var(--wc2026-fs)); }
    .wc2026-ls-match-inner { padding: 8px; gap: 5px; }
    .wc2026-ls-goals { font-size: calc(1.9 * var(--wc2026-fs)); }
    .wc2026-ls-score { min-width: 80px; }
}

/* ── Coming Soon card ── */
.wc2026-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 3rem 1.5rem;
    background: var(--wc2026-bg);
    border-radius: var(--wc2026-radius);
    box-shadow: var(--wc2026-shadow);
    text-align: center;
    margin-bottom: 1rem;
}
.wc2026-coming-soon-icon {
    font-size: 3rem;
    line-height: 1;
    display: block;
}
.wc2026-coming-soon-text {
    font-size: calc(1.7 * var(--wc2026-fs));
    color: var(--wc2026-text-mute);
    margin: 0;
}

/* ── Misc ── */
.wc2026-no-matches,
.wc2026-error {
    color: var(--wc2026-text-mute);
    font-style: italic;
    padding: 1rem;
    text-align: center;
}
.wc2026-test-notice {
    font-size: calc(1.3 * var(--wc2026-fs));
    color: var(--wc2026-accent);
    margin-top: .5rem;
    padding: 6px 10px;
    background: rgba(200,16,46,.06);
    border-radius: 4px;
}

/* ── Goal animation ── */
@keyframes wc2026goal {
    0%   { color: var(--wc2026-gold); transform: scale(1.4); }
    100% { color: inherit; transform: scale(1); }
}
.wc2026-score-updated {
    animation: wc2026goal .6s ease;
}

/* ── RWD ── */
@media (max-width: 600px) {
    .wc2026-schedule-table th:nth-child(5),
    .wc2026-schedule-table td:nth-child(5) { display: none; }
    .wc2026-schedule-table th,
    .wc2026-schedule-table td { font-size: calc(1.2 * var(--wc2026-fs)); }
    .wc2026-sb-score { font-size: calc(2.4 * var(--wc2026-fs)); }
    .wc2026-sb-team .fi { font-size: calc(1.8 * var(--wc2026-fs)); }
    .wc2026-bracket { gap: .5rem; }
    .wc2026-bracket-round { min-width: 110px; }
    .wc2026-h2h-banner { padding: 1rem; }
    .wc2026-h2h-side .fi { font-size: calc(2.5 * var(--wc2026-fs)); }
}
