/*
 * CFBData.co — Site Stylesheet
 * Requires: Bootstrap 5.3, Font Awesome 6.5, Google Fonts (Bebas Neue, Source Serif 4, DM Sans)
 */

/* ── CSS VARIABLES ───────────────────────────────────────────────────────── */
:root {
    --cfb-red:        #C8102E;
    --cfb-red-dark:   #9B0B21;
    --cfb-red-light:  #FDEAED;
    --cfb-black:      #111111;
    --cfb-gray:       #6B6B6B;
    --cfb-gray-lt:    #F5F4F2;
    --cfb-border:     #E2E0DC;
    --cfb-white:      #FFFFFF;
    --nav-height:     64px;
    --font-display:   'Bebas Neue', sans-serif;
    --font-serif:     'Source Serif 4', serif;
    --font-body:      'DM Sans', sans-serif;
}

/* ── BASE ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cfb-black);
    background: var(--cfb-white);
    margin: 0;
    padding-top: var(--nav-height);
    overflow-x: hidden;
    max-width: 100%;
}

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */
#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: var(--cfb-white);
    border-bottom: 2px solid var(--cfb-red);
    z-index: 1000;
    display: flex;
    align-items: center;
}
#mainNav .nav-inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-logo { display: flex; align-items: baseline; gap: 4px; text-decoration: none; flex-shrink: 0; }
.nav-logo-wrap { display: flex; flex-direction: column; }
.nav-logo .logo-cfb { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.04em; color: var(--cfb-red); line-height: 1; }
.nav-logo .logo-data { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.04em; color: var(--cfb-black); line-height: 1; }
.nav-logo .logo-dot { font-family: var(--font-display); font-size: 18px; color: var(--cfb-gray); align-self: flex-end; line-height: 1.4; }
.nav-logo .logo-tagline { font-family: var(--font-body); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cfb-gray); display: block; line-height: 1; margin-top: 2px; }
.nav-toggler { display: none; background: none; border: none; padding: 6px; cursor: pointer; color: var(--cfb-black); font-size: 20px; }
.nav-toggler:focus { outline: none; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button.nav-link-btn {
    display: flex; align-items: center; gap: 5px;
    padding: 0 14px; height: var(--nav-height);
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--cfb-black); text-decoration: none;
    border: none; background: none; cursor: pointer; white-space: nowrap;
    transition: color 0.15s;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.nav-links > li > a:hover,
.nav-links > li > button.nav-link-btn:hover,
.nav-links > li.active > a,
.nav-links > li.open > button.nav-link-btn { color: var(--cfb-red); border-bottom-color: var(--cfb-red); }
.nav-links > li > button.nav-link-btn .caret { font-size: 10px; transition: transform 0.2s; }
.nav-links > li.open > button.nav-link-btn .caret { transform: rotate(180deg); }
.nav-dropdown {
    display: none; position: absolute;
    top: calc(var(--nav-height) - 2px); left: 0; min-width: 260px;
    background: var(--cfb-white); border: 1px solid var(--cfb-border);
    border-top: 3px solid var(--cfb-red);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); padding: 8px 0; z-index: 999;
}
.nav-links > li.open .nav-dropdown { display: block; }
.nav-dropdown .dd-section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cfb-gray); padding: 10px 18px 4px; }
.nav-dropdown a { display: block; padding: 7px 18px; font-size: 14px; font-weight: 400; color: var(--cfb-black); text-decoration: none; transition: background 0.12s, color 0.12s; }
.nav-dropdown a:hover { background: var(--cfb-red-light); color: var(--cfb-red); }
.nav-dropdown .dd-divider { border: none; border-top: 1px solid var(--cfb-border); margin: 6px 0; }
.nav-cta {
    margin-left: 8px !important; padding: 8px 18px !important; height: auto !important;
    background: var(--cfb-red) !important; color: var(--cfb-white) !important;
    border-radius: 4px !important; font-size: 13px !important; font-weight: 500 !important;
    letter-spacing: 0.04em !important; text-transform: uppercase !important;
    border-bottom: none !important; margin-bottom: 0 !important; transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--cfb-red-dark) !important; color: var(--cfb-white) !important; border-bottom-color: transparent !important; }

/* ── WEEK NAVIGATION BAR ─────────────────────────────────────────────────── */
#weekNav { background: var(--cfb-black); padding: 8px 0; }
#weekNav .week-nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.week-nav-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--cfb-white);
    width: 32px; height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
    text-decoration: none;
}
.week-nav-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: var(--cfb-white); }
.week-nav-btn.disabled, .week-nav-btn[disabled] { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
#ws-viewport { flex: 1; overflow-x: hidden; position: relative; }
#ws-rail { display: flex; gap: 2px; list-style: none; margin: 0; padding: 2px 0; white-space: nowrap; }
#ws-rail li { flex-shrink: 0; border-radius: 4px; }
#ws-rail li a {
    display: block; padding: 5px 14px; text-decoration: none;
    font-family: var(--font-display); font-size: 15px; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4); transition: color 0.15s, background 0.15s;
    border-radius: 4px; line-height: 1.2;
}
#ws-rail li a:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
#ws-rail li.active a { color: var(--cfb-white); font-weight: 700; background: rgba(255,255,255,0.12); }

/* ── SCOREBOARD SECTION ──────────────────────────────────────────────────── */
.scoreboard-section { background: var(--cfb-gray-lt); border-bottom: 1px solid var(--cfb-border); padding: 24px 0; }
.scoreboard-section .section-header {
    max-width: 1300px; margin: 0 auto; padding: 0 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.section-label { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; color: var(--cfb-black); }
.section-label span { color: var(--cfb-red); }
.view-all-link { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cfb-red); text-decoration: none; }
.view-all-link:hover { text-decoration: underline; }
.scoreboard-scroll {
    max-width: 1300px; margin: 0 auto; padding: 0 1.25rem 4px;
    display: flex; gap: 12px; overflow-x: auto;
    scrollbar-width: thin; scrollbar-color: var(--cfb-border) transparent;
}

/* ── SMALL SCOREBOARD CARDS ──────────────────────────────────────────────── */
.game-card { flex-shrink: 0; width: 210px; background: var(--cfb-white); border: 1px solid var(--cfb-border); border-radius: 6px; padding: 14px; }
.game-card .gc-status { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cfb-gray); margin-bottom: 10px; }
.game-card .gc-status.live { color: var(--cfb-red); }
.game-card .gc-team { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; }
.game-card .gc-team-name { font-size: 14px; font-weight: 500; color: var(--cfb-black); }
.game-card .gc-score { font-family: var(--font-display); font-size: 20px; color: var(--cfb-black); letter-spacing: 0.04em; }
.game-card .gc-divider { border: none; border-top: 1px solid var(--cfb-border); margin: 6px 0; }
.game-card .gc-meta { font-size: 10px; color: var(--cfb-gray); margin-top: 8px; }
.sb-empty { width: 100%; text-align: center; padding: 24px; font-size: 13px; color: var(--cfb-gray); font-style: italic; }
.sb-error { color: var(--cfb-red); }

/* ── FULL GAME CARDS ─────────────────────────────────────────────────────── */
.sb-game-card { background: var(--cfb-white); border: 1px solid var(--cfb-border); border-radius: 8px; padding: 18px 20px; margin-bottom: 16px; max-width: 100%; overflow: hidden; }
.sb-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.sb-matchup-title { font-size: 15px; font-weight: 500; color: var(--cfb-black); line-height: 1.3; }
.sb-rank { display: inline-block; font-size: 11px; font-weight: 500; color: var(--cfb-gray); vertical-align: super; margin-right: 1px; }
.sb-status-badge { flex-shrink: 0; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; white-space: nowrap; }
.sb-status-pre  { background: var(--cfb-gray-lt); color: var(--cfb-gray); }
.sb-status-in   { background: var(--cfb-red-light); color: var(--cfb-red); }
.sb-status-post { background: #EAF3DE; color: #3B6D11; }

/* Score table */
.sb-score-table-wrap { overflow-x: auto; margin-bottom: 14px; border: 1px solid var(--cfb-border); border-radius: 6px; }
.sb-score-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 380px; }
.sb-score-table thead tr { background: var(--cfb-gray-lt); border-bottom: 1px solid var(--cfb-border); }
.sb-score-table thead th { padding: 7px 10px; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--cfb-gray); text-align: center; }
.sb-score-table thead th.sb-col-team { text-align: left; min-width: 180px; }
.sb-score-table tbody tr { border-bottom: 1px solid var(--cfb-border); }
.sb-score-table tbody tr:last-child { border-bottom: none; }
.sb-score-table tbody td { padding: 10px; text-align: center; color: var(--cfb-black); }
.sb-score-table tbody td.sb-col-team { text-align: left; padding: 8px 12px; }
.sb-col-total { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.04em; }
.sb-score-winner { font-weight: 700; }
.sb-winner .sb-team-name { font-weight: 600; }
.sb-team-cell { display: flex; align-items: center; gap: 10px; }
.sb-team-logo { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.sb-team-logo-placeholder { width: 32px; height: 32px; background: var(--cfb-gray-lt); border-radius: 50%; flex-shrink: 0; }
.sb-team-info { display: flex; flex-direction: column; }
.sb-team-name { font-size: 14px; font-weight: 500; color: var(--cfb-black); line-height: 1.2; }
.sb-team-record { font-size: 11px; color: var(--cfb-gray); margin-top: 2px; }
.sb-card-meta { border-top: 1px solid var(--cfb-border); padding-top: 12px; margin-bottom: 14px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px 16px; }
.sb-meta-row { font-size: 12px; color: var(--cfb-gray); display: flex; align-items: flex-start; gap: 5px; line-height: 1.4; }
.sb-meta-row .fa { margin-top: 2px; color: var(--cfb-red); flex-shrink: 0; font-size: 11px; }
.sb-card-actions { display: flex; gap: 10px; }
.sb-btn { display: inline-block; padding: 7px 16px; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; border-radius: 4px; text-decoration: none; transition: background 0.15s, color 0.15s; cursor: pointer; border: 1px solid var(--cfb-border); }
.sb-btn-primary { background: var(--cfb-black); color: var(--cfb-white); border-color: var(--cfb-black); }
.sb-btn-primary:hover { background: var(--cfb-red); border-color: var(--cfb-red); color: var(--cfb-white); }
.sb-btn-secondary { background: var(--cfb-white); color: var(--cfb-black); }
.sb-btn-secondary:hover { background: var(--cfb-gray-lt); color: var(--cfb-black); }

/* ── MAIN CONTENT AREA ───────────────────────────────────────────────────── */
.main-content { max-width: 1300px; margin: 0 auto; padding: 48px 1.25rem; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.games-section h2 { font-family: var(--font-display); font-size: 34px; letter-spacing: 0.04em; margin-bottom: 4px; color: var(--cfb-black); }
.games-section h2 span { color: var(--cfb-red); }
.games-section .section-intro { font-family: var(--font-serif); font-size: 16px; font-weight: 300; color: var(--cfb-gray); margin-bottom: 24px; line-height: 1.6; }

/* ── SIDEBAR WIDGETS ─────────────────────────────────────────────────────── */
.sidebar-widget { border: 1px solid var(--cfb-border); border-radius: 6px; overflow: hidden; margin-bottom: 20px; background: var(--cfb-white); }
.sidebar-widget .sw-header { background: var(--cfb-black); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
.sidebar-widget .sw-title { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.08em; color: var(--cfb-white); }
.sidebar-widget .sw-title span { color: var(--cfb-red); }
.sidebar-widget .sw-body { padding: 7px 16px; }
.sidebar-widget .sw-row { padding: 7px 0; border-bottom: 1px solid var(--cfb-border); font-size: 13px; align-items: center; }
.sidebar-widget .sw-row:last-child { border-bottom: none; }
.sidebar-widget .sw-row .sw-name { color: var(--cfb-black); font-weight: 500; font-size: 13px; }
.sidebar-widget .sw-row .sw-val { color: var(--cfb-gray); font-size: 13px; }
.sidebar-widget .sw-row .sw-badge { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: var(--cfb-red-light); color: var(--cfb-red); padding: 2px 7px; border-radius: 3px; white-space: nowrap; }
.sidebar-widget .sw-row a { color: var(--cfb-black); text-decoration: none; font-size: 13px; transition: color 0.12s; }
.sidebar-widget .sw-row a:hover { color: var(--cfb-red); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: var(--cfb-black); padding: 48px 0 24px; margin-top: 64px; }
footer .footer-inner { max-width: 1300px; margin: 0 auto; padding: 0 1.25rem; }
footer .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer .footer-logo { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.04em; line-height: 1; color: var(--cfb-white); margin-bottom: 10px; }
footer .footer-logo .logo-red { color: var(--cfb-red); }
footer .footer-logo .logo-muted { font-size: 20px; color: rgba(255,255,255,0.3); }
footer .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 240px; }
footer h4 { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.12s; }
footer ul li a:hover { color: var(--cfb-white); }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
footer .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
footer .footer-note { font-size: 11px; color: rgba(255,255,255,0.2); font-style: italic; }

/* ── RESPONSIVE — TABLET ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .nav-toggler { display: flex; align-items: center; justify-content: center; }
    .nav-links { display: none; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--cfb-white); flex-direction: column; align-items: stretch; border-bottom: 2px solid var(--cfb-red); box-shadow: 0 8px 24px rgba(0,0,0,0.1); max-height: calc(100vh - var(--nav-height)); overflow-y: auto; padding: 8px 0; gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links > li > a, .nav-links > li > button.nav-link-btn { height: auto; padding: 13px 20px; border-bottom: none; margin-bottom: 0; justify-content: space-between; font-size: 14px; border-top: 1px solid var(--cfb-border); }
    .nav-links > li:first-child > a, .nav-links > li:first-child > button { border-top: none; }
    .nav-links > li > a:hover, .nav-links > li > button.nav-link-btn:hover { background: var(--cfb-gray-lt); }
    .nav-dropdown { position: static; border: none; border-top: none; box-shadow: none; background: var(--cfb-gray-lt); padding: 0; }
    .nav-dropdown a { padding: 10px 32px; font-size: 14px; }
    .nav-dropdown .dd-section-label { padding: 10px 32px 4px; }
    .nav-cta { margin: 12px 16px !important; justify-content: center !important; border-radius: 4px !important; padding: 12px 18px !important; border-top: none !important; }
    .sb-card-meta { grid-template-columns: 1fr 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    footer .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ── RESPONSIVE — MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 575px) {
    .main-content { padding: 24px 0.75rem; }
    .sb-card-meta { grid-template-columns: 1fr; }
    .sb-card-actions { flex-wrap: wrap; }
    footer .footer-top { grid-template-columns: 1fr; }
    footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── CONDENSED SCORE (final games) ──────────────────────────────────────── */
.sb-condensed-score { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--cfb-border); margin-bottom: 14px; }
.sb-condensed-score--bordered { border-bottom: 1px solid var(--cfb-border); }
.sb-condensed-team { flex: 1; display: flex; align-items: center; gap: 10px; }
.sb-condensed-team:last-child { flex-direction: row-reverse; text-align: right; }
.sb-condensed-logo { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.sb-condensed-logo-placeholder { width: 44px; height: 44px; background: var(--cfb-gray-lt); border-radius: 50%; flex-shrink: 0; }
.sb-condensed-name { font-size: 14px; font-weight: 500; color: var(--cfb-black); line-height: 1.2; }
.sb-condensed-winner .sb-condensed-name { font-weight: 600; }
.sb-condensed-score-num { font-family: var(--font-display); font-size: 36px; color: var(--cfb-black); letter-spacing: 0.04em; line-height: 1; margin-left: auto; }
.sb-condensed-team:last-child .sb-condensed-score-num { margin-left: 0; margin-right: auto; }
.sb-condensed-winner .sb-condensed-score-num { font-weight: 700; }
.sb-condensed-vs { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cfb-gray); flex-shrink: 0; text-align: center; min-width: 40px; }

/* ── VIDEO PLAYER ────────────────────────────────────────────────────────── */
.sb-video-wrap { margin-bottom: 14px; }
.sb-video-thumb { position: relative; width: 100%; border-radius: 6px; overflow: hidden; cursor: pointer; background: var(--cfb-black); aspect-ratio: 16 / 9; }
.sb-video-poster { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.2s; }
.sb-video-thumb:hover .sb-video-poster { opacity: 0.85; }
.sb-video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; background: rgba(200,16,46,0.92); border: none; border-radius: 50%; color: var(--cfb-white); font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s, transform 0.15s; padding-left: 3px; }
.sb-video-thumb:hover .sb-video-play-btn { background: var(--cfb-red); transform: translate(-50%, -50%) scale(1.08); }
.sb-video-duration { position: absolute; bottom: 8px; right: 10px; font-size: 11px; font-weight: 500; color: var(--cfb-white); background: rgba(0,0,0,0.6); padding: 2px 6px; border-radius: 3px; letter-spacing: 0.04em; }
.sb-video-player { width: 100%; border-radius: 6px; display: block; background: var(--cfb-black); aspect-ratio: 16 / 9; }
.sb-video-title { font-size: 13px; color: var(--cfb-gray); margin: 8px 0 0; line-height: 1.4; }

/* ── RECAP BLOCK ─────────────────────────────────────────────────────────── */
.sb-recap-text { display: flex; flex-direction: column; gap: 4px; border-left: 3px solid var(--cfb-red); padding: 8px 14px; margin-bottom: 14px; background: var(--cfb-gray-lt); border-radius: 0 4px 4px 0; }
.sb-recap-title { font-size: 13px; font-weight: 500; color: var(--cfb-black); line-height: 1.3; }
.sb-recap-desc { font-family: var(--font-serif); font-size: 13px; font-weight: 300; font-style: italic; color: var(--cfb-gray); line-height: 1.65; }
.sb-score-pre { color: var(--cfb-gray); font-size: 14px; }
.sb-state-in { border-left: 3px solid var(--cfb-red); }

/* ── FINAL CARD TWO-COLUMN LAYOUT ────────────────────────────────────────── */
.sb-final-cols { display: grid; grid-template-columns: 1fr 45%; gap: 16px; align-items: start; }
.sb-final-left { display: flex; flex-direction: column; }
.sb-final-right { padding-top: 2px; }
.sb-final-left .sb-condensed-score { border-top: none; padding-top: 0; }
.sb-final-right .sb-video-wrap { margin-bottom: 0; }
.sb-final-right .sb-video-title { font-size: 12px; }

@media (max-width: 640px) {
    .sb-final-cols { grid-template-columns: 1fr; }
    .sb-final-right { padding-top: 0; }
    .sb-final-left .sb-condensed-score { border-top: 1px solid var(--cfb-border); padding-top: 14px; }
}

/* ── SCORE TABLE MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .sb-score-table { min-width: 0; width: 100%; }
    .sb-score-table thead th, .sb-score-table tbody td { padding: 6px 5px; font-size: 12px; }
    .sb-score-table thead th.sb-col-team, .sb-score-table tbody td.sb-col-team { padding: 6px 8px; min-width: 0; }
    .sb-col-total { font-size: 15px; }
    .sb-team-logo { width: 24px; height: 24px; }
    .sb-team-name { font-size: 12px; }
    .sb-team-record { font-size: 10px; }
    .sb-final-cols { grid-template-columns: 1fr; }
    .sb-final-left .sb-condensed-score { border-top: 1px solid var(--cfb-border); padding-top: 14px; }
    .sb-condensed-score-num { font-size: 28px; }
    .sb-condensed-logo { width: 32px; height: 32px; }
    .sb-condensed-name { font-size: 13px; }
    .sb-card-meta { grid-template-columns: 1fr; }
    .sb-game-card { padding: 14px 12px; }
    .sb-matchup-title { font-size: 14px; line-height: 1.4; }
}

/* ── SCROLL TO TOP BUTTON ─────────────────────────────────────────────────── */
#scrollTopBtn { position: fixed; bottom: 28px; right: 24px; width: 44px; height: 44px; background: var(--cfb-red); color: var(--cfb-white); border: none; border-radius: 50%; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 900; opacity: 0; transform: translateY(12px); transition: opacity 0.25s, transform 0.25s, background 0.15s; pointer-events: none; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
#scrollTopBtn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTopBtn:hover { background: var(--cfb-red-dark); }

/* ── FBS CONFERENCE GRID ─────────────────────────────────────────────────── */
.conf-section { background: var(--cfb-white); padding: 32px 0; border-bottom: 1px solid var(--cfb-border); }
.conf-section-inner { max-width: 1300px; margin: 0 auto; padding: 0 1.25rem; }
.conf-section-title { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--cfb-black); margin-bottom: 20px; }
.conf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.conf-card { background: var(--cfb-white); border: 1px solid var(--cfb-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 20px; transition: border-color 0.15s, box-shadow 0.15s; text-decoration: none; aspect-ratio: 2 / 1; }
.conf-card:hover { border-color: var(--cfb-red); box-shadow: 0 2px 12px rgba(200,16,46,0.07); }
.conf-logo { max-width: 100%; max-height: 60px; object-fit: contain; }

@media (max-width: 767px) {
    .conf-grid { grid-template-columns: repeat(2, 1fr); }
    .conf-card { aspect-ratio: 3 / 2; padding: 14px; }
    .conf-logo { max-height: 44px; }
}
@media (max-width: 400px) {
    .conf-card { aspect-ratio: 4 / 3; padding: 12px; }
    .conf-logo { max-height: 36px; }
}

/* ── SEASON PICKER ───────────────────────────────────────────────────────── */
.nav-season-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.nav-season-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cfb-gray);
    white-space: nowrap;
}
#seasonPicker {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.06em;
    color: var(--cfb-black);
    background: var(--cfb-white);
    border: 2px solid var(--cfb-red);
    border-radius: 4px;
    padding: 3px 8px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C8102E'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
    transition: border-color 0.15s;
}
#seasonPicker:hover { border-color: var(--cfb-red-dark); }
#seasonPicker:focus { border-color: var(--cfb-red-dark); }

/* Mobile — season picker stays visible and usable */
@media (max-width: 991px) {
    .nav-season-label { display: none; }
    #seasonPicker { font-size: 14px; }
}