/* GoldStream — mobile-first dark/gold theme */
:root {
  --bg: #0a0a0c;
  --bg-2: #121216;
  --bg-3: #1a1a20;
  --line: #26262e;
  --gold: #d4af37;
  --gold-2: #f0d060;
  --gold-dim: rgba(212, 175, 55, .14);
  --text: #eceae4;
  --muted: #9a97a3;
  --danger: #e05252;
  --radius: 14px;
  --font-head: 'Cinzel', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
h1, h2, h3 { font-family: var(--font-head); letter-spacing: .4px; line-height: 1.25; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container.narrow { max-width: 640px; }
.muted { color: var(--muted); }
.muted-link { color: var(--muted); font-size: .85rem; }
.small { font-size: .85rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 12, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; }
.logo {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: var(--text); display: inline-flex; align-items: center; gap: 8px;
}
.logo:hover { color: var(--gold-2); }
.logo-mark {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #8a6d1c);
  color: #111; font-size: .8rem;
}
.nav-toggle {
  background: none; border: 1px solid var(--line); border-radius: 8px;
  color: var(--gold); font-size: 1.2rem; padding: 6px 12px; cursor: pointer;
}
.main-nav {
  display: none; flex-direction: column; gap: 4px;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  padding: 12px 16px;
}
.main-nav.open { display: flex; }
.main-nav a {
  color: var(--text); padding: 10px 8px; border-radius: 8px; font-weight: 500;
}
.main-nav a:hover { background: var(--gold-dim); color: var(--gold-2); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: #000; }
.hero-slide {
  display: none; position: relative; min-height: 78vh;
}
.hero-slide.active { display: block; animation: fadeIn .6s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-media { position: absolute; inset: 0; }
.hero-image { background-size: cover; background-position: center; }
.hero-video iframe { width: 100%; height: 100%; position: absolute; inset: 0; pointer-events: none; }
.hero-overlay {
  position: relative; z-index: 2; min-height: 78vh;
  display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(10,10,12,.25) 0%, rgba(10,10,12,.55) 55%, rgba(10,10,12,.94) 100%);
  padding: 48px 0 72px;
}
.hero-content h1 {
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  text-shadow: 0 4px 30px rgba(0,0,0,.7);
  margin: 10px 0 12px;
}
.hero-content p { max-width: 560px; color: #d9d6ce; text-shadow: 0 2px 12px rgba(0,0,0,.8); }
.hero-kicker {
  display: inline-block; color: var(--gold-2);
  text-transform: uppercase; letter-spacing: 3px; font-size: .75rem; font-weight: 600;
  border: 1px solid rgba(212,175,55,.4); padding: 5px 12px; border-radius: 999px;
  background: rgba(10,10,12,.5);
}
.hero-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 999px; border: none; cursor: pointer;
  background: rgba(255,255,255,.25); transition: all .3s;
}
.hero-dot.active { background: var(--gold); width: 26px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 60%, #a8842a);
  color: #161207; box-shadow: 0 4px 18px rgba(212,175,55,.25);
}
.btn-gold:hover { color: #000; box-shadow: 0 6px 24px rgba(212,175,55,.4); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-danger { background: rgba(224,82,82,.12); color: #ff8484; border: 1px solid rgba(224,82,82,.35); }
.btn-danger:hover { background: rgba(224,82,82,.25); color: #fff; }
.btn-sm { padding: 7px 13px; font-size: .82rem; }

/* ---------- Sections ---------- */
.section { padding: 44px 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; gap: 12px;
}
.section-head h1, .section-head h2 { font-size: 1.6rem; }
.link-gold { font-weight: 600; white-space: nowrap; }

/* ---------- Video grid ---------- */
.video-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
.video-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.video-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.5); }
.video-thumb { position: relative; display: block; aspect-ratio: 16/9; background: #000; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-badge {
  position: absolute; inset: 0; margin: auto;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10,10,12,.65); color: var(--gold-2);
  border: 1px solid rgba(212,175,55,.6);
  font-size: 1.1rem; padding-left: 4px;
  opacity: 0; transition: opacity .2s;
}
.video-card:hover .play-badge { opacity: 1; }
.video-info { padding: 14px 16px; }
.video-info h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.video-info h3 a { color: var(--text); }
.video-info h3 a:hover { color: var(--gold-2); }
.video-info .muted { font-size: .83rem; margin-top: 4px; }

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.filter-bar input, .filter-bar select {
  padding: 12px 14px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
}

/* ---------- Watch page ---------- */
.watch-layout { display: grid; gap: 28px; grid-template-columns: 1fr; }
.player-frame {
  aspect-ratio: 16/9; background: #000; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 12px 44px rgba(0,0,0,.5);
}
.player-frame iframe { width: 100%; height: 100%; }
.watch-title { font-size: 1.5rem; margin-top: 18px; }
.watch-meta { margin: 6px 0 14px; font-size: .9rem; }
.watch-desc {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; font-size: .95rem;
}
.tag-row { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .8rem; padding: 4px 12px; border-radius: 999px;
  background: var(--gold-dim); border: 1px solid rgba(212,175,55,.3);
}
.side-title { margin-bottom: 12px; font-size: 1.1rem; }
.side-card {
  display: flex; gap: 10px; align-items: center; padding: 8px;
  border-radius: 10px; color: var(--text); font-size: .9rem; font-weight: 500;
}
.side-card:hover { background: var(--bg-2); color: var(--gold-2); }
.side-card img { width: 110px; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; flex-shrink: 0; }

/* ---------- Comments ---------- */
.comments { margin-top: 36px; }
.comments h2 { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; }
.comment-count {
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  background: var(--gold-dim); color: var(--gold-2);
  padding: 2px 10px; border-radius: 999px;
}
.comment-form { display: grid; gap: 10px; margin: 14px 0 24px; }
.comment-form input[type="text"], .comment-form textarea {
  padding: 12px 14px; border-radius: 10px; width: 100%;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
  font-family: inherit; resize: vertical;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--gold); }
.form-msg { font-size: .85rem; }
.form-msg.ok { color: #8fd48f; }
.form-msg.err { color: #ff8484; }
.comment-list { display: grid; gap: 12px; }
.comment {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
  animation: fadeIn .4s ease;
}
.comment.pending-note { border-style: dashed; border-color: rgba(212,175,55,.45); }
.comment-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 4px; font-size: .88rem; }
.comment-head strong { color: var(--gold-2); }
.comment p { font-size: .93rem; }
.pill {
  font-size: .72rem; padding: 2px 10px; border-radius: 999px; font-weight: 600;
}
.pill-ok { background: rgba(90,190,110,.15); color: #8fd48f; }
.pill-warn { background: var(--gold-dim); color: var(--gold-2); }
.pill-muted { background: var(--bg-3); color: var(--muted); }

/* ---------- Ads ---------- */
.ad-slot {
  position: relative; display: block; margin: 26px auto; max-width: 970px;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
}
.ad-slot img { width: 100%; }
.ad-tag {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  background: rgba(10,10,12,.75); color: var(--gold-2);
  font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 6px; border: 1px solid rgba(212,175,55,.4);
}
.ad-watch_sidebar { margin: 0 0 22px; }

/* ---------- Forms ---------- */
.form-card {
  display: grid; gap: 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.form-card label { display: grid; gap: 6px; font-size: .9rem; font-weight: 500; }
.form-card input, .form-card select, .form-card textarea {
  padding: 12px 14px; border-radius: 10px; width: 100%;
  background: var(--bg); border: 1px solid var(--line); color: var(--text);
  font-family: inherit;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--gold); }
.notice {
  padding: 13px 16px; border-radius: 10px; margin-bottom: 14px; font-size: .92rem;
}
.notice.ok { background: rgba(90,190,110,.12); border: 1px solid rgba(90,190,110,.4); color: #a8e4ae; }
.notice.err { background: rgba(224,82,82,.1); border: 1px solid rgba(224,82,82,.4); color: #ff9d9d; }

/* ---------- CTA / footer ---------- */
.cta-band {
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(212,175,55,.12), transparent),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-inner { padding: 20px 16px; }
.cta-inner .btn { margin-top: 16px; }
.site-footer { border-top: 1px solid var(--line); margin-top: 40px; background: var(--bg-2); }
.footer-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  padding-top: 36px; padding-bottom: 24px;
}
.footer-grid h4 { color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.footer-grid nav { display: grid; gap: 6px; }
.footer-grid nav a { color: var(--text); font-size: .92rem; }
.footer-grid nav a:hover { color: var(--gold-2); }
.footer-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding-top: 16px; padding-bottom: 20px;
  border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted);
  flex-wrap: wrap;
}

/* ---------- Larger screens ---------- */
@media (min-width: 560px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { flex-direction: row; }
  .filter-bar input { flex: 1; }
}
@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; flex-direction: row; position: static; background: none; border: none; padding: 0; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1080px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); }
  .watch-layout { grid-template-columns: 1fr 340px; }
  .hero-slide, .hero-overlay { min-height: 86vh; }
}

/* ---------- Teams ---------- */
.team-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.team-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 4px solid var(--team-color, var(--gold));
  border-radius: var(--radius); padding: 16px;
  color: var(--text); transition: transform .2s ease, border-color .2s ease;
}
.team-card:hover { transform: translateY(-3px); border-color: var(--team-color, var(--gold)); color: var(--text); }
.team-logo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.team-logo.big { width: 84px; height: 84px; }
.team-dot {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  display: inline-grid; place-items: center;
  background: var(--team-color, var(--gold)); color: #111;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
}
.team-dot.big { width: 84px; height: 84px; font-size: 2rem; }
.team-info { flex: 1; min-width: 0; }
.team-info h3 { font-family: var(--font-body); font-size: 1.05rem; }
.team-info .muted { font-size: .83rem; }
.team-count { font-size: .78rem; color: var(--gold-2); font-weight: 600; }
.team-arrow { color: var(--gold); font-size: 1.1rem; }
.team-header {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 5px solid var(--team-color, var(--gold));
  border-radius: var(--radius); padding: 22px;
}
.team-desc { margin-top: 8px; font-size: .92rem; color: var(--muted); max-width: 560px; }
.team-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px; font-weight: 600; font-size: .85rem;
  background: color-mix(in srgb, var(--team-color, #d4af37) 18%, transparent);
  border: 1px solid var(--team-color, var(--gold)); color: var(--text);
}
.team-chip:hover { color: var(--gold-2); }

/* ---------- Ad sections ---------- */
.ad-section {
  margin: 22px 0; padding: 14px;
  border: 1px dashed rgba(212,175,55,.35); border-radius: var(--radius);
  background: rgba(212,175,55,.04);
}
.ad-section .ad-slot { margin: 10px 0 4px; }
.ad-section-label {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2px;
}

/* ---------- Music ---------- */
.track-list { display: grid; gap: 10px; padding-bottom: 96px; }
.track {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 10px 14px;
  transition: border-color .2s ease;
}
.track:hover, .track.playing { border-color: rgba(212,175,55,.55); }
.track.playing .track-play { background: var(--gold); color: #161207; }
.track-play {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(212,175,55,.5); background: transparent;
  color: var(--gold-2); font-size: .9rem; cursor: pointer;
  display: grid; place-items: center; padding-left: 2px;
}
.track-cover {
  width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg-3); display: grid; place-items: center;
  color: var(--gold); font-size: 1.2rem; overflow: hidden;
}
.track-cover img { width: 100%; height: 100%; object-fit: cover; }
.track-meta { flex: 1; min-width: 0; display: grid; }
.track-meta strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-meta .muted { font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-dl { flex-shrink: 0; }
.player-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; gap: 12px;
  background: rgba(14,14,17,.96); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,175,55,.4);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.player-btn {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  border: none; cursor: pointer; font-size: 1rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #161207;
}
.player-info { flex: 1; min-width: 0; display: grid; gap: 2px; }
.player-info strong, .player-info .muted {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .88rem;
}
#playerSeek { width: 100%; accent-color: var(--gold); height: 4px; }
.player-time { font-size: .78rem; flex-shrink: 0; }

/* ---------- Podcasts ---------- */
.episode-list { display: grid; gap: 16px; }
.episode {
  display: flex; gap: 16px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
  flex-direction: column;
}
.episode-cover {
  width: 72px; height: 72px; border-radius: 12px; flex-shrink: 0;
  background: var(--bg-3); display: grid; place-items: center;
  font-size: 1.6rem; overflow: hidden;
}
.episode-cover img { width: 100%; height: 100%; object-fit: cover; }
.episode-body { flex: 1; min-width: 0; display: grid; gap: 10px; }
.episode h3 { font-family: var(--font-body); font-size: 1.05rem; }
.ep-num { color: var(--gold-2); font-weight: 700; }
.episode-desc { font-size: .9rem; color: var(--muted); }
.episode audio { width: 100%; height: 42px; border-radius: 8px; }

@media (min-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .episode { flex-direction: row; }
  .episode-cover { width: 110px; height: 110px; }
}
@media (min-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Custom GoldStream player ---------- */
.gs-player {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 12px;
}
.gs-player.active { border-color: rgba(212,175,55,.55); box-shadow: 0 0 0 1px rgba(212,175,55,.25); }
.gs-play {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: none; cursor: pointer; font-size: .95rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #161207;
  display: grid; place-items: center;
}
.gs-skip, .gs-speed {
  flex-shrink: 0; border: 1px solid var(--line); background: transparent;
  color: var(--muted); border-radius: 8px; font-size: .72rem; font-weight: 700;
  padding: 6px 8px; cursor: pointer; min-width: 38px;
}
.gs-skip:hover, .gs-speed:hover { color: var(--gold-2); border-color: var(--gold); }
.gs-mid { flex: 1; min-width: 0; display: grid; gap: 2px; }
.gs-progress { position: relative; height: 6px; border-radius: 999px; background: var(--bg-3); }
.gs-fill {
  position: absolute; inset: 0 auto 0 0; width: 0;
  border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2));
  pointer-events: none;
}
.gs-seek {
  position: absolute; inset: -7px 0; width: 100%; margin: 0;
  appearance: none; -webkit-appearance: none; background: transparent; cursor: pointer;
}
.gs-seek::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-2); margin-top: 3px; box-shadow: 0 0 8px rgba(212,175,55,.6);
}
.gs-seek::-moz-range-thumb {
  width: 14px; height: 14px; border: none; border-radius: 50%;
  background: var(--gold-2); box-shadow: 0 0 8px rgba(212,175,55,.6);
}
.gs-seek::-moz-range-track { background: transparent; }
.gs-times { display: flex; justify-content: space-between; font-size: .72rem; }

/* ---------- Music sticky bar (custom) ---------- */
.player-cover {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-3); display: grid; place-items: center;
  color: var(--gold); font-size: 1.2rem; overflow: hidden;
}
.player-cover img { width: 100%; height: 100%; object-fit: cover; }
.player-ctrl {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--line); background: transparent;
  color: var(--gold-2); font-size: .85rem; cursor: pointer;
}
.player-ctrl:hover { border-color: var(--gold); }
.player-titles { display: grid; }
.player-progress { position: relative; height: 6px; border-radius: 999px; background: var(--bg-3); }
.player-fill {
  position: absolute; inset: 0 auto 0 0; width: 0;
  border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2));
  pointer-events: none;
}
#playerSeek {
  position: absolute; inset: -7px 0; width: 100%; margin: 0;
  appearance: none; -webkit-appearance: none; background: transparent; cursor: pointer;
  accent-color: var(--gold);
}
#playerSeek::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-2); margin-top: 3px; box-shadow: 0 0 8px rgba(212,175,55,.6);
}
#playerSeek::-moz-range-thumb {
  width: 14px; height: 14px; border: none; border-radius: 50%;
  background: var(--gold-2); box-shadow: 0 0 8px rgba(212,175,55,.6);
}
#playerSeek::-moz-range-track { background: transparent; }
.player-times { display: flex; justify-content: space-between; font-size: .72rem; }
.player-vol { display: none; align-items: center; gap: 6px; color: var(--muted); flex-shrink: 0; }
.player-vol input { width: 80px; accent-color: var(--gold); }
@media (min-width: 820px) { .player-vol { display: flex; } }

/* ---------- Team page hero ---------- */
.team-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 340px at 85% -10%, color-mix(in srgb, var(--team-color, #d4af37) 28%, transparent), transparent),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line);
}
.team-hero-watermark {
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  width: 340px; height: 340px; border-radius: 50%; object-fit: cover;
  opacity: .07; filter: blur(2px); pointer-events: none;
}
.team-hero-inner {
  position: relative; z-index: 2;
  display: grid; gap: 24px; padding: 44px 0;
  grid-template-columns: 1fr;
}
.team-hero-id { display: flex; gap: 18px; align-items: flex-start; }
.team-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin: 6px 0 6px; }
.team-hero .league-line { color: var(--gold-2); font-size: .8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.team-hero-stats { display: flex; gap: 22px; margin-top: 16px; flex-wrap: wrap; }
.team-hero-stats div { display: grid; }
.team-hero-stats b { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold-2); }
.team-hero-stats span { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.team-hero-video {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 14px 44px rgba(0,0,0,.5);
  aspect-ratio: 16/9; background: #000; align-self: center; width: 100%;
}
.team-hero-video iframe { width: 100%; height: 100%; }
@media (min-width: 900px) {
  .team-hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ---------- Homepage team strip ---------- */
.team-strip { display: grid; gap: 12px; grid-template-columns: 1fr; }
.team-strip .team-card { padding: 12px 14px; }
@media (min-width: 620px) { .team-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team-strip { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Homepage podcast cards ---------- */
.podcast-strip { display: grid; gap: 14px; grid-template-columns: 1fr; }
.podcast-mini {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; display: grid; gap: 12px;
}
.podcast-mini h3 { font-family: var(--font-body); font-size: 1rem; }
.podcast-mini .muted { font-size: .8rem; }
@media (min-width: 900px) { .podcast-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Site-wide player spacing ---------- */
body.has-player { padding-bottom: 92px; }
body.has-player .site-footer { margin-bottom: 0; }
body.has-player .track-list { padding-bottom: 0; }
.player-bar { box-shadow: 0 -8px 30px rgba(0,0,0,.5); }

/* ---------- SPA page-transition bar ---------- */
.spa-bar {
  position: fixed; top: 0; left: 0; z-index: 999;
  height: 3px; width: 0; opacity: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 10px rgba(212,175,55,.7);
  transition: width .35s ease, opacity .3s ease;
  pointer-events: none;
}
