/* =====================================================
   LIVE SCORES PAGE  —  sc- prefix
   ===================================================== */

/* ── Page / Results tabs (shared with results page) ── */
.rs-page-tabs { display:flex; align-items:center; gap:4px; background:#1f2937; border:1px solid #374151; border-radius:10px; padding:4px; }
.rs-page-tab { font-size:13px; font-weight:600; color:#9ca3af; padding:6px 14px; min-height:44px; display:inline-flex; align-items:center; border-radius:7px; text-decoration:none; transition:all .15s; white-space:nowrap; }
.rs-page-tab:hover { color:#f9fafb; }
.rs-page-tab--active { background:#374151; color:#f9fafb; cursor:default; }

/* ── Page header ── */
.sc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sc-title {
    font-size: 22px;
    font-weight: 800;
    color: #e8192c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sc-live-dot {
    width: 10px;
    height: 10px;
    background: #e8192c;
    border-radius: 50%;
    animation: scPulse 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes scPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.7); }
}
.sc-live-dot--off { animation: none; opacity: .25; }

.sc-refresh-info {
    font-size: 12px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sc-refresh-info svg { color: #374151; }
#scCountdown { color: #6b7280; font-weight: 600; }

/* ── Breadcrumb ── */
.sc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}
.sc-breadcrumb a { color: #9ca3af; text-decoration: none; }
.sc-breadcrumb a:hover { color: #e8192c; }

/* ── Date nav ── */
.sc-date-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sc-date-nav__cal {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    color: #9ca3af;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s;
    position: relative;
}
.sc-date-nav__cal:hover { border-color: #6b7280; color: #f9fafb; }
.sc-date-nav__cal input[type="date"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
}
.sc-date-pill {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 20px;
    color: #9ca3af;
    font-size: 13px;
    font-family: inherit;
    padding: 5px 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.sc-date-pill:hover { border-color: #6b7280; color: #f9fafb; }
.sc-date-pill--active {
    background: #1f2937;
    border-color: #f9fafb;
    color: #f9fafb;
    font-weight: 600;
}

/* ── League filter bar ── */
.sc-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sc-filter-bar::-webkit-scrollbar { display: none; }
.sc-league-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1f2937;
    border: 1px solid #374151;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    min-height: 44px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s;
    font-family: inherit;
}
.sc-league-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    background: #fff;
    border-radius: 3px;
    padding: 1px;
}
.sc-league-btn:hover { border-color: #6b7280; color: #f9fafb; }
.sc-league-btn--active {
    background: #1f2937;
    border-color: #f9fafb;
    color: #f9fafb;
    font-weight: 600;
}

/* ── Layout ── */
.sc-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: start;
}

/* ── Competition block ── */
/* ── Live Now block ── */
.sc-live-now {
    background: #0f1a2e;
    border: 1px solid rgba(232,25,44,.25);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}
.sc-live-now__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    background: rgba(232,25,44,.06);
    border-bottom: 1px solid rgba(232,25,44,.15);
}
.sc-live-now__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8192c;
    flex-shrink: 0;
    animation: scPulse 1.4s ease-in-out infinite;
}
.sc-live-now__title {
    font-size: 13px;
    font-weight: 800;
    color: #e8192c;
    text-transform: uppercase;
    letter-spacing: .06em;
    flex: 1;
}
.sc-live-now__count {
    font-size: 11px;
    color: #6b7280;
}
.sc-live-now__league-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 4px;
    border-top: 1px solid #1f2937;
}
.sc-live-now__league-row:first-of-type { border-top: none; }
.sc-live-now__league-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    border-radius: 3px;
    padding: 2px;
}
.sc-live-now__league-name {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.sc-comp {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}
.sc-comp__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,.02);
    border-bottom: 1px solid #1f2937;
}
.sc-comp__logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    border-radius: 3px;
    padding: 2px;
}
.sc-comp__name {
    font-size: 14px;
    font-weight: 700;
    color: #f9fafb;
    flex: 1;
}
h2.sc-comp__name { margin: 0; font-size: inherit; font-weight: 600; }
.sc-comp__count {
    font-size: 12px;
    color: #374151;
}
.sc-comp__live-badge {
    font-size: 10px;
    font-weight: 700;
    color: #e8192c;
    background: rgba(232,25,44,.1);
    border: 1px solid rgba(232,25,44,.2);
    border-radius: 20px;
    padding: 2px 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── Match row ── */
.sc-match {
    display: grid;
    grid-template-columns: 70px 1fr 110px 1fr 80px 28px 32px;
    align-items: center;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    text-decoration: none;
    color: inherit;
    transition: background .12s;
    cursor: pointer;
    min-height: 56px;
}
.sc-match:last-child { border-bottom: none; }
.sc-match:hover { background: rgba(255,255,255,.02); }

/* live highlight */
.sc-match--live {
    background: rgba(232,25,44,.03);
}
.sc-match--live:hover { background: rgba(232,25,44,.06); }

/* time / status cell */
.sc-match__time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-right: 1px solid rgba(255,255,255,.04);
    gap: 2px;
}
.sc-match__time-str {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
}
.sc-match__date-label {
    font-size: 10px;
    color: #6b7280;
    white-space: nowrap;
}
.sc-status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.sc-status--live {
    background: rgba(232,25,44,.15);
    color: #e8192c;
    animation: scStatusBlink 1.8s ease-in-out infinite;
}
@keyframes scStatusBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .5; }
}
.sc-status--fin  { background: rgba(255,255,255,.06); color: #4b5563; }
.sc-status--sched{ color: #374151; font-size: 9px; }

/* home team */
.sc-match__home {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 12px;
    min-width: 0; /* allow grid cell to shrink */
    overflow: hidden;
}
.sc-match__home--bold .sc-match__team-name { color: #f9fafb; font-weight: 700; }
.sc-match__home .sc-match__team-name { text-align: right; }

/* away team */
.sc-match__away {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 12px;
    min-width: 0; /* allow grid cell to shrink */
    overflow: hidden;
}
.sc-match__away--bold .sc-match__team-name { color: #f9fafb; font-weight: 700; }

.sc-match__team-name {
    font-size: 13px;
    font-weight: 500;
    color: #d1d5db;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
}
.sc-team-link {
    cursor: pointer;
}
.sc-team-link:hover {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.75);
}
.sc-match__crest {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}
/* Crest wrapper — non-interactive, inline-flex, preserves 56px row height */
.sc-crest-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Fav-star wrapper — interactive tap-target (a11y ≥44x44px without changing visual star size) */
.sc-fav-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    cursor: pointer;
}
.sc-fav-wrap:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
    border-radius: 8px;
}
.sc-crest-wrap:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
    border-radius: 6px;
}

/* score cell */
.sc-match__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 4px;
    border-left: 1px solid rgba(255,255,255,.04);
    border-right: 1px solid rgba(255,255,255,.04);
}
.sc-score-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0d1117;
    border: 1px solid #1f2937;
    border-radius: 8px;
    padding: 6px 12px;
}
.sc-score-box--live {
    border-color: rgba(232,25,44,.3);
    background: rgba(232,25,44,.05);
}
.sc-goal {
    font-size: 20px;
    font-weight: 800;
    color: #f9fafb;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}
.sc-goal--live { color: #e8192c; }
.sc-sep {
    font-size: 16px;
    font-weight: 700;
    color: #374151;
}
.sc-score-pending {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    letter-spacing: .1em;
}

/* Goal flash — brief green glow when score changes */
@keyframes scGoalFlash {
    0%   { border-color: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.35); background: rgba(34,197,94,.12); }
    100% { border-color: rgba(232,25,44,.3); box-shadow: none; background: rgba(232,25,44,.05); }
}
.sc-score-box--flash {
    animation: scGoalFlash 1.4s ease-out forwards;
}

/* HT score */
.sc-ht-score {
    font-size: 10px;
    color: #4b5563;
    text-align: center;
    margin-top: 3px;
    letter-spacing: .02em;
}

/* Sprint PEN_PIPELINE A-iter 3 B12 — penalty shootout score (mirrors
   site match.js + PWA match-detail.jsx render). Shown only on finished
   cup ties where pen score is non-null. Slightly bolder than HT for
   visual hierarchy since penalty winner = match outcome. */
.sc-pen-score {
    font-size: 10px;
    color: #1f2937;
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
    letter-spacing: .02em;
}

/* matchday cell */
.sc-match__md {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    font-size: 11px;
    color: #374151;
}

/* ── Heat indicator ── */
.sc-heat {
    font-size: 18px;
    text-align: center;
    line-height: 1;
    animation: scHeatPulse 2s ease-in-out infinite;
}
.sc-heat--hot  { filter: drop-shadow(0 0 5px rgba(251,146,60,.9)); }
.sc-heat--warm { filter: drop-shadow(0 0 4px rgba(250,204,21,.7)); }
@keyframes scHeatPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.25); }
}

/* ── Favourite / watchlist star ── */
.sc-fav-star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    color: #374151;
    flex-shrink: 0;
    transition: color .15s, background .15s;
    user-select: none;
}
.sc-fav-star:hover {
    color: #f59e0b;
    background: rgba(245,158,11,.12);
}
.sc-fav-star--on {
    color: #f59e0b;
}
.sc-fav-star--on:hover {
    color: #d97706;
    background: rgba(245,158,11,.15);
}
/* League star sits in comp header — slightly larger hit target */
.sc-fav-star--league {
    margin-left: 4px;
    width: 30px;
    height: 30px;
}

/* ── Goal toast ── */
.sc-goal-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: #0d1f0d;
    border: 1px solid rgba(34,197,94,.35);
    color: #22c55e;
    border-radius: 24px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.sc-goal-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Side panel ── */
.sc-side { display: flex; flex-direction: column; gap: 14px; }

.sc-side-block {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
}
.sc-side-block__title {
    font-size: 13px;
    font-weight: 700;
    color: #f9fafb;
    padding: 12px 16px;
    border-bottom: 1px solid #1f2937;
}

/* stats row */
.sc-stat-row {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    gap: 8px;
    text-align: center;
}
.sc-stat__num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #e8192c;
}
.sc-stat__label {
    display: block;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
}

/* bookmaker side CTA */
.sc-bk-list { display: flex; flex-direction: column; }
.sc-bk-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #1f2937;
    text-decoration: none;
    transition: background .12s;
}
.sc-bk-item:last-child { border-bottom: none; }
.sc-bk-item:hover { background: rgba(255,255,255,.02); }
.sc-bk-item__name {
    font-size: 13px;
    font-weight: 600;
    color: #f9fafb;
}
.sc-bk-item__bonus {
    font-size: 12px;
    color: #22c55e;
}
.sc-bk-item__arrow {
    color: #374151;
}

/* ── Empty / loader ── */
.sc-loader {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}
.sc-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255,255,255,.08);
    border-top-color: #e8192c;
    border-radius: 50%;
    animation: scSpin .7s linear infinite;
}
@keyframes scSpin { to { transform: rotate(360deg); } }

.sc-empty {
    text-align: center;
    padding: 48px 20px;
    color: #4b5563;
    font-size: 14px;
}
.sc-empty__icon { font-size: 36px; margin-bottom: 12px; opacity: .4; }

.sc-error {
    background: rgba(224,84,84,.08);
    border: 1px solid rgba(224,84,84,.15);
    border-radius: 8px;
    padding: 14px 18px;
    color: #e05454;
    font-size: 13px;
    margin-bottom: 14px;
}

/* ── Highlights icon ── */
.sc-match__hl {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: .7;
    transition: opacity .15s;
}
.sc-match:hover .sc-match__hl { opacity: 1; }

/* ── Filter row (league pills + live toggle) ── */
.sc-filter-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.sc-filter-row .sc-filter-bar {
    flex: 1;
    margin-bottom: 0;
}
.sc-live-only-wrap { flex-shrink: 0; }

/* ── Live-only toggle button ── */
.sc-live-only-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    min-height: 44px;
    border-radius: 20px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .15s, background .15s, color .15s;
}
.sc-live-only-btn__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
    transition: background .15s;
}
.sc-live-only-btn:hover {
    border-color: #e8192c;
    color: #e8192c;
}
.sc-live-only-btn--active {
    background: #fff1f2;
    border-color: #e8192c;
    color: #e8192c;
}
.sc-live-only-btn--active .sc-live-only-btn__dot {
    background: #e8192c;
    animation: sc-pulse 1.2s ease-in-out infinite;
}

/* ── Sprint SPRINT3_WC2026_PART2 AC-4.14 — WC matches filter chip ── */
.sc-chip-wc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    min-height: 44px;
    border-radius: 20px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .15s, background .15s, color .15s;
}
.sc-chip-wc:hover {
    border-color: #1d4ed8;
    color: #1d4ed8;
}
.sc-chip-wc--active {
    background: #eff6ff;
    border-color: #1d4ed8;
    color: #1d4ed8;
}
.sc-chip-wc__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .sc-layout { grid-template-columns: 1fr; }
    .sc-side { display: none; }
    /* Scroll date/league pills horizontally, never wrap */
    .sc-filter-bar,
    .sc-date-nav {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .sc-filter-bar::-webkit-scrollbar,
    .sc-date-nav::-webkit-scrollbar { display: none; }
    /* Make sure pills/buttons never shrink */
    .sc-date-pill { flex-shrink: 0; }
    .sc-league-btn { flex-shrink: 0; }
}

@media (max-width: 640px) {
    /* Remove matchday column */
    .sc-match { grid-template-columns: 54px 1fr 88px 1fr 28px; }
    .sc-match__md { display: none; }
    .sc-match__home { padding: 10px 8px; gap: 6px; }
    .sc-match__away { padding: 10px 8px; gap: 6px; }
    .sc-goal { font-size: 16px; }
    .sc-score-box { padding: 5px 10px; gap: 4px; }
}

@media (max-width: 480px) {
    /* Compact time cell */
    .sc-match__time { padding: 8px 4px; }
    .sc-match__time-str { font-size: 11px; }
    .sc-match__date-label { font-size: 9px; }
    /* Compact crests on small screens */
    .sc-match__crest { width: 18px; height: 18px; }
    .sc-match__home { padding: 8px 6px; gap: 4px; }
    .sc-match__away { padding: 8px 6px; gap: 4px; }
    .sc-match__team-name { font-size: 12px; }
    /* Compact score */
    .sc-score-box { padding: 5px 8px; gap: 3px; }
    .sc-goal { font-size: 15px; min-width: 14px; text-align: center; }
    .sc-sep { font-size: 13px; }
}

@media (max-width: 380px) {
    .sc-title { font-size: 18px; }
    .sc-match { grid-template-columns: 44px 1fr 78px 1fr 24px; }
    .sc-match__team-name { font-size: 11px; }
    .sc-score-box { padding: 4px 6px; gap: 2px; }
    .sc-goal { font-size: 14px; }
}

/* ── Skeleton loader (first paint when no SSR preload, no cache) ── */
.sc-skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 6px 0;
}
.sc-match--skeleton {
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1f2937 0%, #374151 50%, #1f2937 100%);
    background-size: 200% 100%;
    animation: scSkeleton 1.5s ease-in-out infinite;
    border: 1px solid #1f2937;
}
@keyframes scSkeleton {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Stale cache visual indicator (when API failed and serving cache) ── */
.sc-stale-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.25);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #d97706;
    font-weight: 600;
}
.sc-stale-notice__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d97706;
    flex-shrink: 0;
}
/* Whole content container gets a subdued border when stale data shown */
.sc-stale #scContent .sc-comp,
.sc-stale #scContent .sc-live-now {
    border-color: rgba(245,158,11,.25);
}

/* ── GSC-FIX-2 AC-2: Upcoming matches block (crawl-budget pump) ── */
.sc-upcoming {
    margin: 24px 0;
    padding: 22px 22px 18px;
    background: var(--color-bg-card, #1e2533);
    border: 1px solid var(--color-border, rgba(255,255,255,.06));
    border-radius: 12px;
}
.sc-upcoming__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--color-text, #f1f5f9);
}
.sc-upcoming__group { margin-bottom: 18px; }
.sc-upcoming__group:last-of-type { margin-bottom: 8px; }
.sc-upcoming__heading {
    font-size: .92rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--color-text-muted, #9ca3af);
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.sc-upcoming__date {
    font-size: .78rem;
    font-weight: 500;
    color: #6b7280;
}
.sc-upcoming__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 6px;
}
.sc-upcoming__item { margin: 0; }
.sc-upcoming__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--color-bg-elevated, rgba(255,255,255,.04));
    border: 1px solid var(--color-border, rgba(255,255,255,.06));
    border-radius: 8px;
    color: var(--color-text, #e2e8f0);
    text-decoration: none;
    font-size: .82rem;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.sc-upcoming__link:hover,
.sc-upcoming__link:focus-visible {
    background: rgba(232, 25, 44, .08);
    border-color: #e8192c;
    color: #fff;
    outline: none;
}
.sc-upcoming__league {
    flex-shrink: 0;
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #6b7280;
    background: rgba(255,255,255,.04);
    padding: 3px 6px;
    border-radius: 4px;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sc-upcoming__teams {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}
.sc-upcoming__vs {
    color: #6b7280;
    font-weight: 400;
    margin: 0 2px;
}
.sc-upcoming__time {
    flex-shrink: 0;
    font-size: .7rem;
    color: #6b7280;
    font-variant-numeric: tabular-nums;
}
.sc-upcoming__cta {
    margin: 14px 0 0;
    font-size: .85rem;
    text-align: center;
}
.sc-upcoming__cta a {
    color: #e8192c;
    text-decoration: none;
    font-weight: 600;
}
.sc-upcoming__cta a:hover { text-decoration: underline; }
@media (max-width: 480px) {
    .sc-upcoming { padding: 16px 14px; }
    .sc-upcoming__list { grid-template-columns: 1fr; }
}
