/* ─── Sco Data ─── v3 ─── Real Design ───
   Yellow is back. Green anchors. 
   Break the grid monotony. Make it feel MADE.
──────────────────────────────────────────── */

:root {
  --green: #1b6b3a;
  --green-light: #24905a;
  --green-bright: #30b870;
  --yellow: #e8c840;
  --yellow-bright: #f0d650;
  --yellow-dim: rgba(232, 200, 64, 0.08);
  --yellow-glow: rgba(232, 200, 64, 0.15);
  --bg: #0a1a0f;
  --surface: #0e1f13;
  --surface-2: #132816;
  --surface-3: #1a3320;
  --border: #1e3a22;
  --border-light: #253525;
  --text: #ececec;
  --text-mid: #b0b0b0;
  --text-muted: #888;
  --text-dim: #555;
  --win: #30b870;
  --loss: #e04050;
  --font: 'Outfit', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max-w: 1140px;
  --r: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 20px rgba(232,200,64,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; transition: background 0.3s; }
a { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--yellow-bright); }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ─── Header ───────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10,26,15,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 54px; }
.site-logo { font-weight: 800; font-size: 1.2rem; color: var(--text); display: flex; gap: 0.3rem; align-items: baseline; letter-spacing: -0.01em; }
.site-logo:hover { color: var(--text); }
.site-nav { display: flex; gap: 1.75rem; }
.site-nav a { color: var(--text-muted); font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.01em; transition: color 0.15s; }
.site-nav a:hover { color: var(--yellow); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text-mid); margin: 4px 0; transition: all 0.2s; }

/* ─── Hero ─────────────────────────────── */
.hero {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--surface);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,15,0.55) 0%, rgba(10,26,15,0.8) 50%, var(--bg) 100%);
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--mono); font-size: 0.625rem; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 0.75rem;
  display: inline-block; background: rgba(232,200,64,0.12); padding: 0.25rem 0.75rem; border-radius: 3px;
  backdrop-filter: blur(4px);
}
.hero-title { font-size: 3.25rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.25rem; text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3); }
.hero-title em { font-style: normal; color: var(--yellow); }
.hero-sub { font-size: 1.125rem; color: var(--text); line-height: 1.6; margin-bottom: 1.75rem; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ─── Buttons ──────────────────────────── */
.btn { display: inline-flex; align-items: center; padding: 0.65rem 1.5rem; font-family: var(--font); font-weight: 600; font-size: 0.8125rem; border-radius: 100px; cursor: pointer; border: none; transition: all 0.2s; letter-spacing: 0.01em; }
.btn-primary { background: var(--yellow); color: #111; box-shadow: 0 2px 8px rgba(232,200,64,0.25); }
.btn-primary:hover { background: var(--yellow-bright); color: #111; box-shadow: 0 4px 16px rgba(232,200,64,0.35); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: var(--text-mid); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(232,200,64,0.06); }
.btn-primary:active { transform: scale(0.97); }
.btn-ghost:active { transform: scale(0.97); }

/* ─── Sections ─────────────────────────── */
.section { padding: 3rem 0; }
.section-alt { background: var(--surface); }
.section-title { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }
.section-title::before { content: ''; width: 4px; height: 1.2em; background: var(--yellow); border-radius: 2px; flex-shrink: 0; }
.section-link { margin-top: 1.25rem; font-family: var(--mono); font-size: 0.75rem; }

/* ─── Updates Feed ─────────────────────── */
.updates-feed { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.update-item { display: flex; gap: 0.75rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); align-items: flex-start; background: var(--surface); }
.update-item:last-child { border-bottom: none; }
.update-item:hover { background: var(--surface-2); }
.update-cat { font-family: var(--mono); font-size: 0.5rem; font-weight: 700; color: var(--bg); background: var(--yellow); padding: 0.2rem 0.5rem; border-radius: 100px; letter-spacing: 0.08em; white-space: nowrap; margin-top: 0.2rem; }
.update-text { font-size: 0.875rem; line-height: 1.5; }
.update-date { font-family: var(--mono); font-size: 0.625rem; color: var(--text-dim); margin-top: 0.15rem; }

/* ─── Case for 2026 ────────────────────── */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.case-point { padding: 0.875rem 1rem; background: var(--surface-2); border-left: 2px solid var(--green-light); font-size: 0.875rem; line-height: 1.5; color: var(--text-mid); }
.case-stat { font-family: var(--mono); font-weight: 700; color: var(--yellow); font-size: 0.9375rem; display: inline; margin-right: 0.25rem; }

/* ─── Team Analysis ────────────────────── */
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.analysis-card { padding: 1.1rem 1.25rem; background: var(--surface-2); border-radius: var(--r); border: 1px solid var(--border); }
.analysis-card.strength { border-left: 3px solid var(--win); }
.analysis-card.weakness { border-left: 3px solid var(--loss); }
.ac-area { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.15rem; }
.ac-ranking { font-family: var(--mono); font-size: 0.6875rem; color: var(--yellow); margin-bottom: 0.5rem; }
.ac-detail { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }

/* ─── Recruiting Table ─────────────────── */
.recruiting-table { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.rec-header { display: grid; grid-template-columns: 55px 180px 1fr; gap: 0.5rem; font-size: 0.5625rem; font-family: var(--mono); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 0.75rem; background: var(--surface-2); }
.rec-row { display: grid; grid-template-columns: 55px 180px 1fr; gap: 0.5rem; padding: 0.6rem 0.75rem; font-size: 0.8125rem; border-bottom: 1px solid var(--border); background: var(--surface); }
.rec-row:last-child { border-bottom: none; }
.rec-year { font-family: var(--mono); font-weight: 700; color: var(--yellow); }
.rec-rank { font-weight: 600; color: var(--text); }
.rec-note { font-size: 0.6875rem; color: var(--text-muted); }

/* ─── Stat Card ────────────────────────── */
.stat-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem 1rem; text-align: center; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); opacity: 0; transition: opacity 0.3s; }
.stat-card:hover { border-color: rgba(232,200,64,0.3); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.stat-card:hover::before { opacity: 1; }
.stat-value { font-family: var(--mono); font-size: 2rem; font-weight: 700; color: var(--yellow); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 0.6875rem; color: var(--text-muted); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
.stat-sub { font-family: var(--mono); font-size: 0.5625rem; color: var(--text-dim); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.6rem; margin-bottom: 1.75rem; }

/* ─── Season Cards ─────────────────────── */
.season-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.6rem; }
.season-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.2rem; color: var(--text); transition: all 0.2s; }
.season-card:hover { border-color: var(--yellow); color: var(--text); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.season-year { font-family: var(--mono); font-size: 1.375rem; font-weight: 700; color: var(--yellow); letter-spacing: -0.02em; }
.season-record { font-size: 1rem; font-weight: 700; margin-top: 0.1rem; }
.season-details { font-size: 0.6875rem; color: var(--text-muted); margin-top: 0.3rem; display: flex; justify-content: space-between; }
.season-rank { color: var(--green-bright); font-weight: 600; }
.season-bowl { font-size: 0.625rem; color: var(--text-dim); margin-top: 0.3rem; font-family: var(--mono); }

/* ─── Season Table ─────────────────────── */
.decade-header { font-family: var(--mono); font-size: 0.9375rem; color: var(--yellow); margin: 2rem 0 0.6rem; padding-bottom: 0.3rem; border-bottom: 1px solid var(--border); }
.season-table-header { display: grid; grid-template-columns: 50px 70px 50px 1fr 50px 50px 55px 1fr; gap: 0.3rem; font-size: 0.5625rem; font-family: var(--mono); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 0.6rem; }
.season-table-row { display: grid; grid-template-columns: 50px 70px 50px 1fr 50px 50px 55px 1fr; gap: 0.3rem; padding: 0.55rem 0.6rem; font-size: 0.8125rem; color: var(--text); border-bottom: 1px solid var(--border); }
.season-table-row:hover { background: var(--yellow-dim); color: var(--text); }
.st-year { font-family: var(--mono); font-weight: 700; color: var(--yellow); }
.st-record { font-weight: 600; }
.st-rank { color: var(--green-bright); }
.st-bowl { color: var(--text-muted); font-size: 0.6875rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ─── Rivalry Cards ────────────────────── */
.rivalry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.6rem; }
.rivalry-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1rem 1.1rem; color: var(--text); transition: border-color 0.2s, transform 0.2s; }
.rivalry-card:hover { border-color: var(--yellow); color: var(--text); transform: translateY(-2px); }
.rivalry-opponent { font-size: 1rem; font-weight: 700; }
.rivalry-record { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--yellow); margin-top: 0.3rem; letter-spacing: -0.02em; }
.rivalry-name { font-size: 0.6875rem; color: var(--text-dim); margin-top: 0.15rem; }

.rivalry-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; }
.rivalry-card-full { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; color: var(--text); transition: border-color 0.2s, transform 0.2s; }
.rivalry-card-full:hover { border-color: var(--yellow); color: var(--text); transform: translateY(-2px); }
.rivalry-opponent-lg { font-size: 1.25rem; font-weight: 800; }
.rivalry-record-lg { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--yellow); margin-top: 0.4rem; }
.rivalry-meta { font-size: 0.6875rem; color: var(--text-muted); margin-top: 0.3rem; display: flex; gap: 0.6rem; }
.streak { color: var(--win); font-weight: 600; }

/* ─── Rivalry Detail ───────────────────── */
.rivalry-hero { text-align: center; padding: 1.25rem 0 2rem; }
.rivalry-big-record { font-family: var(--mono); font-size: 3rem; font-weight: 700; color: var(--yellow); letter-spacing: -0.03em; }
.rivalry-breakdown { display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
.rb-item { text-align: center; }
.rb-num { display: block; font-family: var(--mono); font-size: 1.75rem; font-weight: 700; }
.rb-label { font-size: 0.6875rem; color: var(--text-muted); }
.streak-badge { display: inline-block; margin-top: 1rem; padding: 0.4rem 1.25rem; border: 1px solid var(--yellow); border-radius: 100px; font-family: var(--mono); font-size: 0.75rem; color: var(--yellow); background: rgba(232,200,64,0.06); }

.notable-games { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.notable-game { display: grid; grid-template-columns: 60px 1fr; gap: 0.6rem; padding: 0.875rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); transition: border-color 0.2s; }
.notable-game:hover { border-color: rgba(232, 200, 64, 0.3); }
.ng-year { font-family: var(--mono); font-size: 1rem; font-weight: 700; color: var(--yellow); }
.ng-score { font-weight: 600; font-size: 0.9375rem; }
.ng-context { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ─── Greatest Games ───────────────────── */
.games-list { display: flex; flex-direction: column; gap: 0.6rem; }
.great-game { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1.1rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); transition: border-color 0.2s, transform 0.15s; }
.great-game:hover { border-color: rgba(232, 200, 64, 0.3); transform: translateY(-1px); }
.gg-rank { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--yellow); text-align: center; }
.gg-meta { font-size: 0.625rem; color: var(--text-dim); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }
.gg-score { font-size: 1.0625rem; font-weight: 700; margin-top: 0.15rem; }
.gg-context { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.3rem; line-height: 1.5; }
.gg-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.5rem; }
.tag { font-family: var(--mono); font-size: 0.5625rem; padding: 0.1rem 0.4rem; background: var(--yellow-dim); border-radius: 2px; color: var(--yellow); }

/* ─── Coaching Eras ────────────────────── */
.coach-timeline { display: flex; flex-direction: column; }
.coach-era { display: grid; grid-template-columns: 100px 1fr; gap: 0.6rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.coach-years { font-family: var(--mono); font-size: 0.6875rem; color: var(--text-dim); padding-top: 0.1rem; }
.coach-name { font-weight: 700; font-size: 0.9375rem; }
.coach-record { font-family: var(--mono); color: var(--yellow); font-size: 0.8125rem; }
.coach-highlight { font-size: 0.75rem; color: var(--text-muted); }

.eras-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.era-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; transition: border-color 0.2s, transform 0.2s; }
.era-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.era-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.era-header h2 { font-size: 1.25rem; }
.era-years { font-family: var(--mono); color: var(--text-dim); font-size: 0.75rem; }
.era-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
.era-highlight { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; padding-top: 0.6rem; border-top: 1px solid var(--border); }

/* ─── Culture / YouTube ────────────────── */
.culture-quote { padding: 1.75rem 2rem; border-left: 3px solid var(--yellow); background: linear-gradient(135deg, var(--yellow-dim) 0%, rgba(232, 200, 64, 0.03) 100%); border-radius: 0 var(--r) var(--r) 0; margin-bottom: 1.25rem; }
.culture-quote blockquote { font-size: 1.1rem; font-weight: 600; line-height: 1.45; font-style: italic; color: var(--text); }
.culture-quote cite { display: block; margin-top: 0.6rem; font-size: 0.75rem; color: var(--text-muted); font-style: normal; font-family: var(--mono); }

.yt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.75rem; }
.yt-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.yt-card:hover { border-color: var(--yellow); }
.yt-embed { position: relative; padding-bottom: 56.25%; height: 0; }
.yt-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.yt-info { padding: 0.75rem 1rem; }
.yt-year { font-family: var(--mono); font-size: 0.5625rem; color: var(--yellow); letter-spacing: 0.05em; }
.yt-title { font-weight: 700; font-size: 0.875rem; margin-top: 0.1rem; }
.yt-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.45; }

/* ─── Must Watch ───────────────────────── */
.mw-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.5rem; }
.mw-card { padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: var(--r); background: var(--surface-2); transition: border-color 0.2s, transform 0.2s; }
.mw-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.mw-title { font-weight: 700; font-size: 0.875rem; }
.mw-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ─── Community Directory ──────────────── */
.directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.6rem; margin-bottom: 2rem; }
.directory-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1rem 1.1rem; color: var(--text); transition: border-color 0.2s, transform 0.2s; }
.directory-card:hover { border-color: var(--yellow); color: var(--text); transform: translateY(-2px); }
.dc-name { font-weight: 700; font-size: 0.9375rem; }
.dc-platform { font-family: var(--mono); font-size: 0.5625rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.1em; }
.dc-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.5; }

/* ─── Email CTA ────────────────────────── */
.email-cta { padding: 3.5rem 0; background: linear-gradient(180deg, transparent 0%, var(--surface) 100%); border-top: 1px solid var(--border); }
.cta-box { max-width: 520px; margin: 0 auto; text-align: center; padding: 2rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; }
.cta-box h2 { font-size: 1.375rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.cta-box p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.875rem; }
.email-form { display: flex; gap: 0.35rem; max-width: 380px; margin: 0 auto; }
.email-form input[type="email"] { flex: 1; padding: 0.65rem 1rem; background: var(--bg); border: 1px solid var(--border-light); border-radius: 100px; color: var(--text); font-family: var(--font); font-size: 0.8125rem; }
.email-form input::placeholder { color: var(--text-dim); }
.email-form input:focus { outline: none; border-color: var(--yellow); }
.email-form button { padding: 0.65rem 1.25rem; background: var(--yellow); color: #111; border: none; border-radius: 100px; font-family: var(--font); font-weight: 600; font-size: 0.8125rem; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.email-form button:hover { background: var(--yellow-bright); box-shadow: 0 2px 8px rgba(232,200,64,0.3); }

/* ─── Update Feed Layout ──────────────── */
.update-content { flex: 1; min-width: 0; }

/* ─── Season Nav (prev/next) ──────────── */
.sn-prev, .sn-next { color: var(--yellow); font-family: var(--mono); font-size: 0.75rem; }
.sn-prev:hover, .sn-next:hover { text-decoration: underline; }

/* ─── Bowl Result ─────────────────────── */
.bowl-result { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1rem 1.25rem; margin: 0.75rem 0 1.5rem; }
.bowl-name { font-weight: 700; font-size: 1rem; }
.bowl-score { font-family: var(--mono); font-size: 0.875rem; color: var(--yellow); margin-top: 0.25rem; }

/* ─── Newsletter Large Form ───────────── */
.email-form-lg { max-width: 440px; }
.email-form-lg input[type="email"] { padding: 0.75rem 1rem; font-size: 0.9375rem; }
.email-form-lg button { padding: 0.75rem 1.25rem; font-size: 0.9375rem; }

/* ─── Content Pages ────────────────────── */
.content-page { max-width: 640px; padding: 2rem 0; }
.content-page h2 { font-size: 1.125rem; margin: 1.75rem 0 0.6rem; }
.content-page p { color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.7; font-size: 0.9375rem; }
.content-page ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.content-page li { color: var(--text-muted); margin-bottom: 0.35rem; line-height: 1.6; font-size: 0.9375rem; }

/* ─── Page Header ──────────────────────── */
.page-header { padding: 2.5rem 0 2rem; background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 60%, var(--bg) 100%); border-bottom: none; }
.page-header h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.page-sub { color: var(--text-muted); font-size: 1rem; margin-top: 0.4rem; line-height: 1.5; }
.breadcrumb { font-size: 0.6875rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.breadcrumb a { color: var(--text-muted); }

/* ─── Misc ─────────────────────────────── */
.highlight-box { background: var(--yellow-dim); border-left: 3px solid var(--yellow); border-radius: 0 var(--r) var(--r) 0; padding: 0.75rem 1rem; margin-bottom: 0.6rem; color: var(--yellow); font-weight: 600; font-size: 0.9375rem; }
.key-results { padding-left: 1.25rem; margin-top: 0.5rem; margin-bottom: 1.5rem; }
.key-results li { margin-bottom: 0.3rem; color: var(--text-muted); font-size: 0.9375rem; }
.key-results.losses li { color: var(--loss); }
.note { font-size: 0.75rem; color: var(--text-dim); font-style: italic; }
.nl-features { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.nl-features li { margin-bottom: 0.5rem; line-height: 1.5; }
.newsletter-hero { max-width: 520px; }

/* ─── Footer ───────────────────────────── */
.site-footer { border-top: none; padding: 3rem 0 1.5rem; background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 30%); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.footer-links h4 { font-size: 0.5625rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 0.75rem; }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.8125rem; margin-bottom: 0.4rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--yellow); }
.footer-newsletter-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; flex-wrap: wrap; }
.footer-nl-text { font-size: 0.8125rem; color: var(--text-mid); }
.footer-nl-text strong { color: var(--text); font-weight: 700; margin-right: 0.4rem; }
.footer-nl-text span { color: var(--text-muted); }
.footer-newsletter-bar .email-form { max-width: 320px; }
.footer-disclaimer { font-size: 0.625rem; color: var(--text-dim); line-height: 1.6; }
.footer-copy { margin-top: 0.25rem; }

/* ─── Game Log ────────────────────────── */
.game-log { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 1.5rem; }
.gl-header { display: grid; grid-template-columns: 50px 1fr 120px; gap: 0.5rem; font-size: 0.5625rem; font-family: var(--mono); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 0.75rem; background: var(--surface-2); }
.gl-row { display: grid; grid-template-columns: 50px 1fr 120px; gap: 0.5rem; padding: 0.55rem 0.75rem; font-size: 0.8125rem; border-bottom: 1px solid var(--border); background: var(--surface); transition: background 0.1s; }
.gl-row:last-child { border-bottom: none; }
.gl-row:hover { background: var(--yellow-dim); }
.gl-row:nth-child(even) { background: var(--surface-2); }
.gl-row:nth-child(even):hover { background: var(--yellow-dim); }
.gl-win { border-left: 3px solid var(--win); }
.gl-loss { border-left: 3px solid var(--loss); }
.gl-num { font-family: var(--mono); font-weight: 700; color: var(--text-dim); }
.gl-opp { font-weight: 600; }
.gl-result { font-family: var(--mono); font-weight: 700; }
.gl-win .gl-result { color: var(--win); }
.gl-loss .gl-result { color: var(--loss); }

/* ─── Autzen Page ─────────────────────── */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.guide-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem; }
.guide-card-title { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.5rem; color: var(--yellow); }
.guide-card-text { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }
.noise-stat { font-family: var(--mono); font-size: 3rem; font-weight: 700; color: var(--yellow); text-align: center; margin: 1.5rem 0; letter-spacing: -0.03em; text-shadow: 0 0 30px rgba(232,200,64,0.15); }
.noise-context { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; max-width: 640px; margin-bottom: 1.5rem; }
.home-record-table { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 1.5rem; }
.hr-header { display: grid; grid-template-columns: 1fr 100px 80px 60px 1fr; gap: 0.5rem; font-size: 0.5625rem; font-family: var(--mono); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 0.75rem; background: var(--surface-2); }
.hr-row { display: grid; grid-template-columns: 1fr 100px 80px 60px 1fr; gap: 0.5rem; padding: 0.6rem 0.75rem; font-size: 0.8125rem; border-bottom: 1px solid var(--border); background: var(--surface); }
.hr-row:last-child { border-bottom: none; }
.hr-coach { font-weight: 700; }
.hr-years { font-family: var(--mono); color: var(--text-muted); font-size: 0.75rem; }
.hr-record { font-family: var(--mono); font-weight: 700; color: var(--yellow); }
.hr-pct { font-family: var(--mono); color: var(--win); }
.hr-note { font-size: 0.75rem; color: var(--text-muted); }

/* ─── Lanning Way: Weekly Phases ─────── */
.weekly-phases { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.phase-card { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1rem 1.25rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); }
.phase-num { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--yellow); text-align: center; line-height: 1; padding-top: 0.25rem; }
.phase-name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.phase-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; }

/* ─── Lanning Way: Principles ─────────── */
.principle-section { margin: 2.5rem 0; padding-top: 2rem; border-top: 1px solid var(--border); }
.principle-section:first-of-type { border-top: none; padding-top: 0; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.5rem; }
.proof-card { background: var(--surface-2); border: 1px solid var(--border); border-left: 3px solid var(--green-light); border-radius: var(--r); padding: 0.875rem 1rem; transition: border-color 0.2s; }
.proof-card:hover { border-color: rgba(232, 200, 64, 0.2); }
.proof-label { font-weight: 700; font-size: 0.8125rem; margin-bottom: 0.25rem; }
.proof-result { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* ─── Ducks vs Them Timeline ──────────── */
.dvt-timeline { display: flex; flex-direction: column; gap: 0.5rem; }
.dvt-season-break { font-family: var(--mono); font-size: 1rem; font-weight: 700; color: var(--yellow); padding: 1.25rem 0 0.5rem; border-bottom: 1px solid var(--border); margin-bottom: 0.25rem; }
.dvt-season-break:not(:first-child) { margin-top: 1rem; }
.dvt-timeline-card { display: grid; grid-template-columns: 160px 1fr; gap: 1rem; padding: 0.75rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); transition: border-color 0.15s; }
.dvt-timeline-card:hover { border-color: var(--yellow); }
.dvt-win { border-left: 3px solid var(--win); }
.dvt-loss { border-left: 3px solid var(--loss); }
.dvt-timeline-thumb { position: relative; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; display: block; }
.dvt-timeline-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dvt-timeline-info { display: flex; flex-direction: column; justify-content: center; }
.dvt-timeline-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.25rem; }
.dvt-game-num { font-family: var(--mono); font-size: 0.625rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.dvt-run-record { font-family: var(--mono); font-size: 0.6875rem; font-weight: 700; color: var(--yellow); background: var(--yellow-dim); padding: 0.1rem 0.4rem; border-radius: 2px; }
.dvt-timeline-opp { font-weight: 700; font-size: 1rem; }
.dvt-timeline-result { font-family: var(--mono); font-weight: 700; font-size: 0.875rem; margin-top: 0.15rem; }
.dvt-win .dvt-timeline-result { color: var(--win); }
.dvt-loss .dvt-timeline-result { color: var(--loss); }

/* ─── Coaching Era Comparison Table ───── */
.era-comparison-table { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; overflow-x: auto; }
.ec-header { display: grid; grid-template-columns: 1fr 100px 80px 55px 50px 55px 65px 50px; gap: 0.3rem; font-size: 0.5625rem; font-family: var(--mono); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; padding: 0.5rem 0.75rem; background: var(--surface-2); min-width: 600px; }
.ec-row { display: grid; grid-template-columns: 1fr 100px 80px 55px 50px 55px 65px 50px; gap: 0.3rem; padding: 0.6rem 0.75rem; font-size: 0.8125rem; border-bottom: 1px solid var(--border); background: var(--surface); min-width: 600px; }
.ec-row:last-child { border-bottom: none; }
.ec-row:hover { background: var(--yellow-dim); }
.ec-coach { font-weight: 700; }
.ec-years { font-family: var(--mono); color: var(--text-muted); font-size: 0.75rem; }
.ec-record { font-weight: 600; }
.ec-pct { font-family: var(--mono); color: var(--yellow); font-weight: 700; }
.ec-ppg { color: var(--win); font-weight: 600; }

/* ─── Autzen Meta ─────────────────────── */
.autzen-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; margin-bottom: 2rem; padding: 1rem 1.25rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); }
.am-item { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }
.am-label { font-weight: 600; color: var(--text-mid); }

/* ─── Schedule List ───────────────────── */
.sched-list { display: flex; flex-direction: column; gap: 0.5rem; }
.sched-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 1rem; padding: 1rem 1.25rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); align-items: start; transition: border-color 0.2s; }
.sched-item:hover { border-color: rgba(232, 200, 64, 0.3); }
.sched-home { border-left: 3px solid var(--win); }
.sched-away { border-left: 3px solid var(--text-dim); }
.sched-big { background: var(--surface-2); }
.sched-big.sched-away { border-left-color: var(--yellow); }
.sched-bye { opacity: 0.4; border-left: 3px solid transparent; }
.sched-bye .sched-opp { font-style: italic; color: var(--text-muted); font-weight: 400; }
.sched-date { font-family: var(--mono); font-size: 0.8125rem; font-weight: 700; color: var(--yellow); padding-top: 0.1rem; }
.sched-opp { font-weight: 700; font-size: 1rem; }
.sched-big .sched-opp { color: var(--yellow); }
.sched-loc { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.15rem; }
.sched-ctx { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.5; }
.sched-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; padding-top: 0.15rem; }
.sched-tag { font-family: var(--mono); font-size: 0.5rem; font-weight: 700; padding: 0.15rem 0.4rem; border-radius: 2px; letter-spacing: 0.06em; white-space: nowrap; }
.sched-tag.home { background: var(--win); color: #fff; }
.sched-tag.away { background: var(--text-dim); color: var(--bg); }
.sched-tag.conf { background: var(--surface-3); color: var(--text-mid); border: 1px solid var(--border); }
.sched-tag.marquee { background: rgba(232, 200, 64, 0.15); color: var(--yellow); border: 1px solid rgba(232, 200, 64, 0.3); }

/* ─── Schedule Enhancements ───────────── */
.sched-game-num { display: block; font-size: 0.5rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.15rem; }
.sched-series { font-family: var(--mono); font-size: 0.6875rem; color: var(--yellow); margin-top: 0.2rem; }
.sched-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.sched-difficulty { display: flex; align-items: center; gap: 0.4rem; }
.sched-diff-dots { font-size: 0.625rem; letter-spacing: 0.1em; color: var(--text-dim); }
.sched-diff-label { font-family: var(--mono); font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── Rivalry Index Enhancements ──────── */
.rivalry-teaser { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.5; }
.rivalry-games-count { font-family: var(--mono); font-size: 0.625rem; color: var(--yellow); margin-top: 0.6rem; letter-spacing: 0.03em; }

/* ─── Position Rankings ───────────────── */
.rankings-methodology { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 2rem; padding: 1rem 1.25rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); max-width: 720px; }
.position-group-title { font-family: var(--mono); font-size: 1rem; font-weight: 700; color: var(--yellow); margin: 2rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.06em; }
.position-rankings { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.rank-card { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1rem 1.25rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); transition: border-color 0.2s, transform 0.15s; }
.rank-card:hover { border-color: rgba(232, 200, 64, 0.3); transform: translateY(-1px); }
.rank-card:first-child { border-left: 3px solid var(--yellow); }
.rank-num { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--yellow); text-align: center; line-height: 1; padding-top: 0.2rem; }
.rank-card:first-child .rank-num { color: var(--yellow); }
.rank-card:nth-child(2) .rank-num, .rank-card:nth-child(3) .rank-num { color: var(--text-mid); }
.rank-card:nth-child(n+4) .rank-num { color: var(--text-dim); font-size: 1.25rem; }
.rank-name { font-weight: 700; font-size: 1rem; }
.rank-years { font-family: var(--mono); font-size: 0.6875rem; color: var(--text-muted); font-weight: 400; margin-left: 0.3rem; }
.rank-case { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.55; margin-top: 0.3rem; }
.rank-meta { display: flex; gap: 1rem; margin-top: 0.4rem; font-family: var(--mono); font-size: 0.6875rem; }
.rank-keystat { color: var(--green-bright); font-weight: 600; }
.rank-draft { color: var(--yellow); }
.rank-draft.undrafted { color: var(--text-dim); }

/* ─── Photography ─────────────────────── */
.photo-gallery { margin-bottom: 2rem; }
.photo-hero { border-radius: var(--r); overflow: hidden; margin-bottom: 0.5rem; }
.photo-hero img { width: 100%; height: auto; display: block; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.photo-item { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/10; }
.photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.photo-item:hover img { transform: scale(1.03); }
.photo-credit { font-size: 0.625rem; color: var(--text-dim); font-style: italic; margin-top: 0.5rem; }
.about-photo { border-radius: var(--r); overflow: hidden; margin: 1.5rem 0; }
.about-photo img { width: 100%; height: auto; display: block; }

/* ─── Mobile ───────────────────────────── */
@media (max-width: 768px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2rem; }
  .site-nav { display: none; position: fixed; top: 56px; left: 0; right: 0; background: rgba(10, 26, 15, 0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1.25rem; gap: 0.75rem; z-index: 99; }
  .site-nav a { font-size: 0.9375rem; padding: 0.5rem 0; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .case-grid { grid-template-columns: 1fr; }
  .analysis-grid { grid-template-columns: 1fr; }
  .season-table-header, .season-table-row { grid-template-columns: 45px 60px 1fr 45px; }
  .season-table-header span:nth-child(3), .season-table-header span:nth-child(6), .season-table-header span:nth-child(7), .season-table-row .st-conf, .season-table-row .st-ppg, .season-table-row .st-oppg, .season-table-row .st-bowl { display: none; }
  .rec-header, .rec-row { grid-template-columns: 45px 120px 1fr; }
  .rec-note { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter-bar { flex-direction: column; align-items: flex-start; }
  .footer-newsletter-bar .email-form { max-width: 100%; width: 100%; }
  .rivalry-breakdown { gap: 1rem; }
  .rb-num { font-size: 1.375rem; }
  .rivalry-big-record { font-size: 1.5rem; }
  .notable-game { grid-template-columns: 1fr; }
  .great-game { grid-template-columns: 36px 1fr; }
  .gg-rank { font-size: 1.25rem; }
  .era-stats { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.75rem; }
  .email-form { flex-direction: column; }
  .email-form button { width: 100%; }
  .coach-era { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: 1fr; }
  .culture-quote blockquote { font-size: 0.9375rem; }
  .gl-header, .gl-row { grid-template-columns: 40px 1fr 90px; }
  .hr-header, .hr-row { grid-template-columns: 1fr 80px 70px; }
  .hr-header span:nth-child(4), .hr-header span:nth-child(5), .hr-row .hr-pct, .hr-row .hr-note { display: none; }
  .guide-grid { grid-template-columns: 1fr; }
  .noise-stat { font-size: 2rem; }
  .dvt-timeline-card { grid-template-columns: 120px 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .phase-card { grid-template-columns: 36px 1fr; }
  .phase-num { font-size: 1.25rem; }
  .ec-header, .ec-row { font-size: 0.6875rem; }
  .sched-item { grid-template-columns: 55px 1fr; }
  .sched-right { flex-direction: row; align-items: center; margin-top: 0.5rem; }
  .sched-difficulty { display: none; }
  .sched-tags { display: none; }
  .autzen-meta { grid-template-columns: 1fr; }
  .rank-card { grid-template-columns: 36px 1fr; padding: 0.875rem 1rem; }
  .rank-num { font-size: 1.25rem; }
  .rank-card:nth-child(n+4) .rank-num { font-size: 1rem; }
}

/* ─── Logo ─────────────────────────────── */
.logo-the { color: var(--text-mid); font-weight: 300; }
.logo-quack { color: var(--yellow); font-weight: 800; }
.logo-report { color: var(--green); font-weight: 400; }

/* ─── Championship Section ─────────────── */
.champ-game { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; margin-bottom: 1.5rem; border-left: 3px solid var(--loss); }
.champ-game-full { padding: 2rem; }
.champ-header { margin-bottom: 1rem; }
.champ-year { font-family: var(--mono); font-size: 2rem; font-weight: 700; color: var(--yellow); }
.champ-matchup { font-size: 0.75rem; color: var(--text-muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.15rem; }
.champ-score { font-size: 1.25rem; font-weight: 700; margin-top: 0.25rem; }
.champ-venue { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.1rem; }
.champ-story { color: var(--text-mid); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.25rem; }
.champ-rosters { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.champ-rosters h4 { font-size: 0.75rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 0.75rem; }
.roster-col.ours h4 { color: var(--green-light); }
.roster-player { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.roster-player:last-child { border-bottom: none; }
.rp-name { font-weight: 700; font-size: 0.875rem; }
.rp-pick { font-family: var(--mono); font-size: 0.6875rem; color: var(--yellow); }
.rp-note { font-size: 0.75rem; color: var(--text-muted); }

/* ─── Heartbreak & Glory Index ─────────── */
.section-full { padding-left: 0; padding-right: 0; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hbi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
@media(max-width:900px){.hbi-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.hbi-grid{grid-template-columns:1fr}}
.hbi-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.25rem; transition: border-color 0.2s, transform 0.2s; }
.hbi-card:hover { border-color: rgba(232, 200, 64, 0.3); transform: translateY(-1px); }
.hbi-year { font-family: var(--mono); font-size: 1.25rem; font-weight: 700; color: var(--yellow); float: left; margin-right: 1rem; line-height: 1; }
.hbi-meters { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 0.5rem; overflow: hidden; }
.hbi-bar { height: 26px; border-radius: 100px; display: flex; align-items: center; padding: 0 0.6rem; font-family: var(--mono); font-size: 0.5625rem; font-weight: 700; min-width: 60px; transition: width 0.5s; }
.hbi-bar.glory { background: linear-gradient(90deg, var(--green), var(--green-bright)); color: #fff; }
.hbi-bar.pain { background: linear-gradient(90deg, var(--loss), #ff6b7a); color: #fff; }
.hbi-bar span { white-space: nowrap; }
.hbi-label { font-weight: 700; font-size: 0.875rem; clear: both; }
.hbi-takeaway { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; margin-top: 0.25rem; }

/* ─── Analysis Labels ──────────────────── */
.analysis-label { font-family: var(--mono); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.strength-label { color: var(--win); }
.concern-label { color: var(--loss); margin-top: 1.75rem; }

@media (max-width: 768px) {
  .champ-rosters { grid-template-columns: 1fr; }
  .hbi-year { float: none; margin-bottom: 0.5rem; }
}

/* Hero two-column: odds + schedule */
.hero-two-col{display:grid;grid-template-columns:190px 1fr;gap:1.5rem;margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgba(232,200,64,0.15)}
@media(max-width:700px){.hero-two-col{grid-template-columns:1fr}}
.hero-odds{display:flex;flex-direction:column;gap:0}
.odds-item{display:flex;justify-content:space-between;align-items:center;padding:0.5rem 0;border-bottom:1px solid rgba(255,255,255,0.06)}
.odds-label{font-size:0.8125rem;color:var(--text-muted)}
.odds-val{font-family:'JetBrains Mono',monospace;font-weight:700;font-size:1.125rem;color:#e8c840}
.hero-sched-col{flex:1}
.hero-sched-label{font-family:'JetBrains Mono',monospace;font-size:0.6875rem;letter-spacing:0.06em;text-transform:uppercase;color:var(--text-muted);margin-bottom:0.625rem}
.sched-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0.375rem}
@media(max-width:700px){.sched-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:480px){.sched-grid{grid-template-columns:repeat(2,1fr)}}
.sg-game{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.08);border-radius:5px;padding:0.5rem 0.6rem;display:flex;flex-direction:column;gap:2px;transition:border-color 0.15s}
.sg-game:hover{border-color:rgba(232,200,64,0.3)}
.sg-game.sg-big{border-color:rgba(232,200,64,0.4);background:rgba(232,200,64,0.06);grid-column:span 1;position:relative}
.sg-game.sg-big::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--yellow);border-radius:5px 5px 0 0}
.sg-bye{background:transparent;border:none;padding:0.5rem 0.6rem;display:flex;flex-direction:column;gap:2px;opacity:0.3;justify-content:center}
.sg-bye .sg-date{color:var(--text-dim)}
.sg-bye .sg-opp{font-size:0.625rem;font-style:italic;color:var(--text-dim);font-weight:400;letter-spacing:0.05em}
.sg-date{font-family:'JetBrains Mono',monospace;font-size:0.5625rem;color:var(--text-muted);letter-spacing:0.03em}
.sg-opp{font-weight:600;font-size:0.8125rem;color:var(--text)}
.sg-game.sg-big .sg-opp{color:#e8c840;font-size:0.875rem}
.sg-game.sg-big .sg-loc{color:var(--yellow-bright);opacity:0.7}
.sg-loc{font-size:0.625rem;color:var(--text-dim)}
.hero-sched-src{font-size:0.625rem;color:var(--text-dim);margin-top:0.625rem;font-style:italic;line-height:1.5}

/* Ducks vs Them video grid */
.dvt-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:0.5rem}
.dvt-card{display:block;border-radius:6px;overflow:hidden;border:1px solid var(--border);transition:border-color 0.15s,transform 0.15s;text-decoration:none}
.dvt-card:hover{border-color:rgba(232,200,64,0.4);transform:translateY(-2px)}
.dvt-thumb{position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--surface-2)}
.dvt-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.dvt-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:32px;height:32px;background:rgba(0,0,0,0.6);border-radius:50%;display:flex;align-items:center;justify-content:center}
.dvt-play::after{content:'';display:block;width:0;height:0;border-style:solid;border-width:6px 0 6px 10px;border-color:transparent transparent transparent #fff;margin-left:2px}
.dvt-label{padding:0.375rem 0.5rem;font-family:var(--mono);font-size:0.6875rem;color:var(--text-muted);background:var(--surface-2)}
.dvt-cta{margin-top:1rem;text-align:center}

/* Culture YouTube grid */
.yt-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:0.625rem}
.yt-card{display:block;border-radius:6px;overflow:hidden;border:1px solid var(--border);transition:border-color 0.15s,transform 0.15s;text-decoration:none}
.yt-card:hover{border-color:rgba(232,200,64,0.4);transform:translateY(-2px)}
.yt-thumb{position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--surface-2)}
.yt-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.yt-title{padding:0.375rem 0.5rem;font-size:0.75rem;color:var(--text-mid);background:var(--surface-2);line-height:1.3}

/* Season page enhancements */
.season-narrative{font-size:1rem;line-height:1.7;color:var(--text-mid);margin-bottom:1.5rem;padding:1rem 1.25rem;background:var(--surface-2);border-left:3px solid var(--green-light);border-radius:0}
.hbi-inline{display:flex;flex-direction:column;gap:3px;margin-bottom:1.5rem;max-width:400px}
.season-nav{display:flex;justify-content:space-between;margin-top:1rem;font-size:0.8125rem}
.season-nav a{color:var(--yellow);text-decoration:none}
.season-nav a:hover{text-decoration:underline}
.season-source{margin-top:2rem;font-size:0.75rem;color:var(--text-dim);font-style:italic}

/* Coaching era enrichments */
.era-narrative{font-size:0.875rem;line-height:1.6;color:var(--text-mid);margin-top:0.75rem;padding:0.75rem 1rem;background:var(--surface);border-left:2px solid var(--green-light);border-radius:0}
.era-players{font-size:0.8125rem;color:var(--text-muted);margin-top:0.5rem}
.era-players-label{font-weight:600;color:var(--text-mid)}

/* Rivalry page enrichments */
.rivalry-context{font-size:0.9375rem;line-height:1.65;color:var(--text-mid);margin:1.25rem 0;padding:1rem 1.25rem;background:var(--surface-2);border-left:3px solid var(--green-light);border-radius:0}
.rivalry-source{margin-top:2rem;font-size:0.75rem;color:var(--text-dim);font-style:italic}

/* Famous Ducks grid */
.famous-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:0.75rem}
.famous-card{background:var(--surface-2);border:1px solid var(--border);border-radius:var(--r);padding:1rem 1.125rem;transition:border-color 0.2s, transform 0.2s}
.famous-card:hover{border-color:var(--yellow);transform:translateY(-2px)}
.fc-name{font-weight:700;font-size:1.0625rem;color:var(--text)}
.fc-pos{font-family:var(--mono);font-size:0.6875rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.25rem}
.fc-draft{font-family:var(--mono);font-size:0.8125rem;color:var(--yellow);margin-bottom:0.125rem}
.fc-team{font-size:0.8125rem;color:var(--text-mid);margin-bottom:0.375rem}
.fc-note{font-size:0.8125rem;color:var(--text-muted);line-height:1.4}

/* Mariota stats table override (7 columns) */
.mariota-stats .rec-header, .mariota-stats .rec-row{grid-template-columns:50px 60px 80px 55px 45px 75px 55px}

/* NFL Ducks grid */
.nfl-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:0.5rem;margin-bottom:2rem}
.nfl-card{background:var(--surface-2);border:1px solid var(--border);border-radius:var(--r);padding:0.75rem 0.875rem;transition:border-color 0.2s, transform 0.2s}
.nfl-card:hover{border-color:var(--yellow);transform:translateY(-2px)}
.nfl-card.nfl-starter{border-left:3px solid var(--green-light)}
.nfl-name{font-weight:700;font-size:0.9375rem;color:var(--text)}
.nfl-team-pos{font-family:var(--mono);font-size:0.6875rem;color:var(--text-muted);letter-spacing:0.03em}
.nfl-draft{font-family:var(--mono);font-size:0.75rem;color:var(--yellow);margin:0.125rem 0}
.nfl-status{font-size:0.6875rem;font-weight:600;color:var(--green-light);text-transform:uppercase;letter-spacing:0.04em}
.nfl-note{font-size:0.75rem;color:var(--text-muted);line-height:1.35;margin-top:0.25rem}

/* Compact championship grid */
.champ-compact-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:0.75rem;margin-bottom:1.5rem}
.champ-compact{background:var(--surface-2);border:1px solid var(--border);border-radius:var(--r);padding:1rem;transition:border-color 0.2s}
.champ-compact:hover{border-color:var(--yellow)}
.champ-compact.champ-win{border-left:3px solid var(--green-light)}
.champ-compact .champ-header{display:flex;align-items:baseline;gap:0.5rem;flex-wrap:wrap;margin-bottom:0.25rem}
.champ-compact .champ-year{font-family:var(--mono);font-weight:700;font-size:0.875rem;color:var(--yellow)}
.champ-compact .champ-matchup{font-weight:600;font-size:0.875rem;color:var(--text)}
.champ-compact .champ-score{font-family:var(--mono);font-size:0.8125rem;font-weight:700;color:var(--text-mid);margin-bottom:0.375rem}
.champ-story-compact{font-size:0.8125rem;color:var(--text-muted);line-height:1.45;margin-bottom:0.5rem}
.champ-rosters-compact{display:flex;gap:1rem;font-size:0.75rem}
.champ-rosters-compact .roster-col{flex:1}
.champ-rosters-compact h4{font-size:0.6875rem;text-transform:uppercase;letter-spacing:0.04em;color:var(--text-muted);margin-bottom:0.25rem}
.champ-rosters-compact .roster-col.ours h4{color:var(--green-light)}
.rp-mini{color:var(--text-mid);line-height:1.5}
.rp-pick-mini{color:var(--text-muted);font-family:var(--mono);font-size:0.625rem}
.rp-more{color:var(--yellow);font-style:italic;margin-top:0.125rem}
