/* Famous Sports People — Interactive Hub Styles
   Piggybacks on the main site's CSS variables:
   --brand-dark, --brand-mid, --gold, --surface-1/2/3,
   --text, --text-muted, --border, --radius
   ─────────────────────────────────────────────── */

/* ── Hub shell ─────────────────────────────────── */
.fsp-interactive-hub {
  background: var(--surface-1, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  margin: 2rem 0;
}

/* ── Tab nav ────────────────────────────────────── */
.fsp-tab-nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--surface-2, #f8fafc);
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.fsp-tab-nav::-webkit-scrollbar { display: none; }

.fsp-tab-btn {
  flex: none;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted, #64748b);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.fsp-tab-btn:hover { color: var(--text, #0f172a); }
.fsp-tab-btn.active {
  color: var(--gold, #f0b429);
  border-bottom-color: var(--gold, #f0b429);
}

/* ── Panel ──────────────────────────────────────── */
.fsp-panel { display: none; padding: 24px; }
.fsp-panel.active { display: block; }
.fsp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #f0b429);
  margin-bottom: 6px;
}
.fsp-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text, #0f172a);
  margin-bottom: 6px;
}
.fsp-panel-sub {
  font-size: .9rem;
  color: var(--text-muted, #64748b);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── Shared buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-2, #f8fafc);
  color: var(--text, #0f172a);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.btn:hover { background: var(--surface-3, #f1f5f9); }
.btn-gold {
  background: var(--gold, #f0b429);
  color: #1a0f00;
  border-color: #c8911a;
}
.btn-gold:hover { background: #c8911a; color: #fff; }

/* ── Shared badge ───────────────────────────────── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-correct { background: #dcfce7; color: #166534; }
.badge-wrong   { background: #fee2e2; color: #991b1b; }
.badge-gold    { background: #fef9c3; color: #92400e; }

/* ── Quiz progress dots ─────────────────────────── */
.quiz-progress { display: flex; gap: 4px; margin-bottom: 16px; }
.qprog-dot { flex: 1; height: 4px; border-radius: 2px; background: var(--border, #e2e8f0); display: inline-block; }
.qprog-dot.done { background: var(--gold, #f0b429); }
.qprog-dot.current { background: #c8911a; }

/* ── Sport pills ────────────────────────────────── */
.sport-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.sport-pill {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  color: var(--text-muted, #64748b);
  cursor: pointer;
  transition: all .15s;
}
.sport-pill.active {
  background: var(--gold, #f0b429);
  border-color: #c8911a;
  color: #1a0f00;
}

/* ── Athlete pill picker ────────────────────────── */
.athlete-pill {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  color: var(--text, #0f172a);
  cursor: pointer;
  transition: all .15s;
}
.athlete-pill:hover { background: var(--surface-3, #f1f5f9); }
.athlete-pill.selected {
  background: #fef9c3;
  border-color: #f0b429;
  color: #92400e;
}

/* ════════════════════════════════════════════════
   WHO AM I
   ════════════════════════════════════════════════ */
.wai-clue {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text, #0f172a);
}
.wai-clue.locked { color: var(--text-muted, #64748b); font-style: italic; }
.wai-icon { font-size: 16px; width: 22px; text-align: center; }
.wai-locked { font-size: 13px; }
.wai-meta { display: flex; align-items: center; gap: 12px; margin: 10px 0; font-size: 13px; color: var(--text-muted, #64748b); }
.wai-guess-row { display: flex; gap: 8px; margin-top: 12px; }
.wai-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-1, #fff);
  color: var(--text, #0f172a);
}
.wai-feedback { min-height: 26px; margin: 10px 0; }
.wai-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; align-items: center; }
.streak-bar { display: flex; gap: 4px; }
.streak-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border, #e2e8f0); display: inline-block; }
.streak-dot.win { background: var(--gold, #f0b429); }

/* ════════════════════════════════════════════════
   HEAD TO HEAD
   ════════════════════════════════════════════════ */
.h2h-card {
  display: flex;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.h2h-side {
  flex: 1;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background .2s;
  user-select: none;
}
.h2h-side:hover { background: var(--surface-2, #f8fafc); }
.h2h-side.voted { background: var(--surface-2, #f8fafc); }
.h2h-sep {
  width: 1px;
  background: var(--border, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted, #64748b);
  background: var(--surface-2, #f8fafc);
}
.h2h-emoji {
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface-3, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border, #e2e8f0);
}
.h2h-name { font-size: 14px; font-weight: 700; color: var(--text, #0f172a); text-align: center; }
.h2h-sport-tag { font-size: 11px; color: var(--text-muted, #64748b); text-align: center; }
.h2h-vote-bar { width: 100%; }
.vote-track { height: 6px; border-radius: 3px; background: var(--border, #e2e8f0); overflow: hidden; }
.vote-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gold, #f0b429);
  transition: width .5s ease;
}
.vote-pct { font-size: 13px; font-weight: 700; text-align: center; color: var(--text, #0f172a); margin-top: 4px; }
.h2h-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted, #64748b);
}
.peoples-vote {
  display: flex;
  align-items: center;
  gap: 6px;
}
.peoples-vote::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold, #f0b429);
  display: inline-block;
}
.h2h-nav { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 8px; }
.h2h-counter { font-size: 12px; color: var(--text-muted, #64748b); }

/* ════════════════════════════════════════════════
   MOUNT RUSHMORE
   ════════════════════════════════════════════════ */
.rushmore-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
@media(max-width:480px){ .rushmore-slots { grid-template-columns: repeat(2,1fr); } }
.rushmore-slot {
  border: 2px dashed var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 110px;
  position: relative;
  transition: border-color .2s;
}
.rushmore-slot.filled {
  border-style: solid;
  border-color: var(--gold, #f0b429);
  background: var(--surface-2, #f8fafc);
}
.slot-num { font-size: 10px; font-weight: 700; color: var(--text-muted, #64748b); }
.slot-emoji {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-3, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border, #e2e8f0);
}
.rushmore-slot.filled .slot-emoji { border-color: var(--gold, #f0b429); }
.slot-name { font-size: 11px; font-weight: 600; color: var(--text, #0f172a); text-align: center; line-height: 1.3; }
.slot-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface-3, #f1f5f9);
  border: 1px solid var(--border, #e2e8f0);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted, #64748b);
}
.rushmore-sport-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.rushmore-search {
  width: 100%;
  padding: 9px 14px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-1, #fff);
  color: var(--text, #0f172a);
  margin-bottom: 10px;
}
.rushmore-picker { display: flex; flex-wrap: wrap; gap: 6px; max-height: 140px; overflow-y: auto; padding-right: 2px; margin-bottom: 16px; }
.rushmore-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.rushmore-share-out { font-size: 12px; color: var(--text-muted, #64748b); margin-top: 8px; }

/* ════════════════════════════════════════════════
   CAREER TIMELINE
   ════════════════════════════════════════════════ */
.timeline-select-wrap { margin-bottom: 20px; }
.timeline-select {
  width: 100%;
  max-width: 340px;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-1, #fff);
  color: var(--text, #0f172a);
}
.tl-placeholder { font-size: 14px; color: var(--text-muted, #64748b); }
.fsp-timeline { position: relative; padding-left: 24px; }
.fsp-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border, #e2e8f0);
}
.tl-item { position: relative; margin-bottom: 20px; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold, #f0b429);
  border: 2px solid var(--surface-1, #fff);
}
.tl-item.major::before { width: 14px; height: 14px; left: -23px; top: 2px; background: #c8911a; }
.tl-year { font-size: 11px; font-weight: 700; color: var(--gold, #f0b429); margin-bottom: 2px; }
.tl-event { font-size: 13px; color: var(--text, #0f172a); line-height: 1.5; }
.tl-club { font-size: 11px; color: var(--text-muted, #64748b); margin-top: 2px; }

/* ════════════════════════════════════════════════
   STAT OF THE DAY
   ════════════════════════════════════════════════ */
.stat-day-card {
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold, #f0b429);
  line-height: 1;
}
.stat-desc { font-size: 14px; color: var(--text, #0f172a); margin-top: 10px; line-height: 1.6; }
.stat-athlete { font-size: 12px; color: var(--text-muted, #64748b); margin-top: 6px; }
.stat-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border, #e2e8f0);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .15s;
}
.stat-dot.active { background: var(--gold, #f0b429); }
.stat-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

/* ════════════════════════════════════════════════
   ON THIS DAY
   ════════════════════════════════════════════════ */
.otd-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.otd-item:last-child { border-bottom: none; }
.otd-year {
  min-width: 44px;
  padding: 3px 6px;
  border-radius: 6px;
  background: #fef9c3;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.otd-content { flex: 1; }
.otd-text { font-size: 13px; color: var(--text, #0f172a); line-height: 1.5; }
.otd-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; align-items: center; }
.otd-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--surface-2, #f8fafc);
  color: var(--text-muted, #64748b);
  border: 1px solid var(--border, #e2e8f0);
}
.otd-link { font-size: 11px; color: var(--brand-mid, #2e75b6); text-decoration: none; font-weight: 600; }
.otd-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════
   COMPARE
   ════════════════════════════════════════════════ */
.compare-header {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.cmp-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-1, #fff);
  color: var(--text, #0f172a);
}
.compare-vs { text-align: center; font-size: 14px; font-weight: 700; color: var(--text-muted, #64748b); }
.cmp-avatars {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}
.cmp-emoji { font-size: 32px; }
.cmp-aname { font-size: 13px; font-weight: 700; color: var(--text, #0f172a); margin-top: 4px; }
.cmp-sport { font-size: 11px; color: var(--text-muted, #64748b); }
.cmp-vs { font-size: 16px; font-weight: 700; color: var(--text-muted, #64748b); }
.cmp-row {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.cmp-cell-l { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.cmp-cell-r { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.cmp-bar-track { width: 100%; height: 6px; border-radius: 3px; background: var(--border, #e2e8f0); overflow: hidden; }
.cmp-bar-fill-l { height: 100%; border-radius: 3px 0 0 3px; background: #378add; transition: width .5s; }
.cmp-bar-fill-r { height: 100%; border-radius: 0 3px 3px 0; background: #d85a30; transition: width .5s; float: right; }
.cmp-val { font-size: 14px; font-weight: 700; color: var(--text, #0f172a); }
.cmp-val.win { color: var(--gold, #f0b429); }
.cmp-label { font-size: 11px; color: var(--text-muted, #64748b); text-align: center; }
.cmp-placeholder { font-size: 14px; color: var(--text-muted, #64748b); }
.compare-actions { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   TRIVIA QUIZ
   ════════════════════════════════════════════════ */
.quiz-q { font-size: 15px; font-weight: 600; color: var(--text, #0f172a); margin-bottom: 16px; line-height: 1.5; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-2, #f8fafc);
  color: var(--text, #0f172a);
  cursor: pointer;
  text-align: left;
  transition: background .15s, border-color .15s;
}
.quiz-opt:hover:not(:disabled) { background: var(--surface-3, #f1f5f9); }
.quiz-opt.correct { background: #dcfce7; border-color: #86efac; color: #166534; }
.quiz-opt.wrong { background: #fee2e2; border-color: #fca5a5; color: #991b1b; }
.quiz-next-wrap { margin-top: 12px; }
.quiz-result { text-align: center; padding: 20px 0; }
.quiz-score { font-size: 3rem; font-weight: 800; color: var(--gold, #f0b429); }
.quiz-verdict { font-size: 14px; color: var(--text-muted, #64748b); margin: 10px 0 20px; line-height: 1.5; }
.quiz-actions { display: flex; gap: 8px; justify-content: center; }
.quiz-restart { }

/* ════════════════════════════════════════════════
   SPORTING DNA
   ════════════════════════════════════════════════ */
.dna-q { font-size: 15px; font-weight: 600; color: var(--text, #0f172a); margin-bottom: 14px; line-height: 1.5; }
.dna-options { display: flex; flex-direction: column; gap: 8px; }
.dna-opt {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-2, #f8fafc);
  color: var(--text, #0f172a);
  cursor: pointer;
  text-align: left;
  transition: all .15s;
}
.dna-opt:hover:not(:disabled) { background: var(--surface-3, #f1f5f9); }
.dna-opt.picked { background: #fef9c3; border-color: #f0b429; color: #92400e; }
.dna-result {
  background: var(--surface-2, #f8fafc);
  border: 2px solid var(--gold, #f0b429);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.dna-icon { font-size: 3rem; margin-bottom: 10px; }
.dna-era-title { font-size: 1.3rem; font-weight: 800; color: var(--gold, #f0b429); margin-bottom: 10px; }
.dna-era-desc { font-size: 13px; color: var(--text, #0f172a); line-height: 1.6; margin-bottom: 20px; }
.dna-actions { display: flex; gap: 8px; justify-content: center; }

/* ════════════════════════════════════════════════
   MY LEGENDS
   ════════════════════════════════════════════════ */
.legends-empty { font-size: 13px; color: var(--text-muted, #64748b); }
.legends-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 8px; margin-bottom: 4px; }
.legend-card {
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  position: relative;
}
.legend-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface-3, #f1f5f9);
  border: 1px solid var(--border, #e2e8f0);
  font-size: 10px;
  color: var(--text-muted, #64748b);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.legend-emoji { font-size: 24px; margin-bottom: 6px; }
.legend-name { font-size: 12px; font-weight: 700; color: var(--text, #0f172a); margin-bottom: 2px; }
.legend-sport { font-size: 11px; color: var(--text-muted, #64748b); }
.legend-link { font-size: 11px; color: var(--brand-mid, #2e75b6); text-decoration: none; display: block; margin-top: 6px; }
.legend-link:hover { text-decoration: underline; }
.legends-add-section { border-top: 1px solid var(--border, #e2e8f0); padding-top: 16px; margin-top: 16px; }
.legends-search {
  width: 100%;
  padding: 9px 14px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-1, #fff);
  color: var(--text, #0f172a);
  margin-bottom: 10px;
}
.legends-add-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 6px; max-height: 220px; overflow-y: auto; }
.add-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  cursor: pointer;
  transition: background .15s;
  text-align: left;
  width: 100%;
}
.add-legend-item:hover { background: var(--surface-3, #f1f5f9); }
.al-emoji { font-size: 16px; }
.al-name { font-size: 12px; font-weight: 600; color: var(--text, #0f172a); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.al-sport { font-size: 10px; color: var(--text-muted, #64748b); display: block; }

/* ════════════════════════════════════════════════
   INLINE ATHLETE-PAGE WIDGETS
   ════════════════════════════════════════════════ */
.fsp-widget {
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 20px;
  margin: 2rem 0;
}
.fsp-widget-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text, #0f172a);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fsp-widget-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: var(--gold, #f0b429);
  border-radius: 2px;
  display: inline-block;
}

/* ── Timeline sport cards ───────────────────────── */
.tl-sport-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--rl);
  background: var(--surface-2, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  cursor: pointer;
  transition: all .15s;
  min-width: 80px;
}
.tl-sport-card:hover { background: var(--surface-3, #f1f5f9); border-color: var(--border, #e2e8f0); }
.tl-sport-card.active { background: #fef9c3; border-color: #f0b429; }
.tl-sport-icon { font-size: 1.4rem; }
.tl-sport-name { font-size: 11px; font-weight: 600; color: var(--text, #0f172a); }
.tl-sport-count { font-size: 10px; color: var(--text-muted, #64748b); }
.timeline-select {
  width: 100%;
  max-width: 340px;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: var(--surface-1, #fff);
  color: var(--text, #0f172a);
}

/* ── Section header left-align fix ─────────────── */
.fsp-interactive-hub .section-header {
  text-align: left;
  margin-bottom: 0;
}
.fsp-interactive-hub .section-header p {
  margin: 0;
}


/* ── WAI Multiple Choice Options ───────────────────────────── */
.wai-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 1.25rem 0;
}
.wai-opt {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 8px);
  background: var(--white, #fff);
  color: var(--charcoal, #1a1a2e);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  line-height: 1.3;
}
.wai-opt:not(:disabled):hover {
  border-color: var(--blue, #2952a3);
  background: var(--blue-bg, #eef2fb);
  transform: translateY(-1px);
}
.wai-opt-correct {
  border-color: #2e7d32 !important;
  background: #e8f5e9 !important;
  color: #1b5e20 !important;
}
.wai-opt-wrong {
  border-color: #c62828 !important;
  background: #ffebee !important;
  color: #b71c1c !important;
  opacity: 0.7;
}
.wai-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ── H2H Sport Picker Grid ──────────────────────────────────── */
.h2h-sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.h2h-sport-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  border: 2px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 8px);
  background: var(--white, #fff);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  text-align: center;
}
.h2h-sport-btn:hover {
  border-color: var(--blue, #2952a3);
  background: var(--blue-bg, #eef2fb);
  transform: translateY(-2px);
}
.h2h-sport-btn.active {
  border-color: var(--blue, #2952a3);
  background: var(--blue, #2952a3);
  color: #fff;
}
.h2h-sport-icon { font-size: 1.6rem; line-height: 1; }
.h2h-sport-name {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}
.h2h-sport-count {
  font-size: 0.65rem;
  opacity: 0.75;
}
.h2h-sport-btn.active .h2h-sport-count { opacity: 0.9; }

.h2h-sport-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue, #2952a3);
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: var(--blue-bg, #eef2fb);
  border-radius: 50px;
  display: inline-block;
}
.h2h-matchup-zone { animation: fadeIn 0.2s ease; }

/* ── Timeline honours block ─────────────────────────────────── */
.tl-honours-block {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--gold-bg, #fffbeb);
  border: 1.5px solid rgba(200,147,58,0.3);
  border-left: 4px solid #c8933a;
  border-radius: var(--radius, 8px);
}
.tl-honours-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--charcoal, #1a1a2e);
}
.tl-honours-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tl-honour-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  background: var(--white, #fff);
  border: 1px solid rgba(200,147,58,0.35);
  border-radius: 50px;
  color: var(--body, #374151);
}

@media(max-width:600px){
  .fsp-panel { padding: 16px; }
  .cmp-row { grid-template-columns: 1fr 80px 1fr; }
  .rushmore-slots { grid-template-columns: repeat(2,1fr); }
  .h2h-name { font-size: 12px; }
}
