/* ============================================================
   BARRACUDAS — Design System
   Aggressive athletic editorial. Dark green + electric yellow.
============================================================ */

:root {
  /* COLOR — DARK MODE (default) */
  --bg: oklch(0.18 0.03 155);          /* deep forest green-black */
  --bg-elev: oklch(0.22 0.04 155);     /* card surface */
  --bg-deep: oklch(0.13 0.025 155);    /* deepest */
  --ink: oklch(0.97 0.01 100);         /* warm off-white */
  --ink-mute: oklch(0.72 0.02 130);
  --ink-faint: oklch(0.45 0.03 140);
  --line: oklch(0.30 0.04 150);
  --accent: oklch(0.89 0.19 100);      /* electric yellow */
  --accent-deep: oklch(0.78 0.18 95);
  --green: oklch(0.42 0.10 150);
  --green-deep: oklch(0.32 0.08 152);
  --danger: oklch(0.65 0.22 25);
  --win: var(--accent);
  --loss: oklch(0.55 0.05 30);

  /* TYPE */
  --display: "Archivo Black", "Arial Black", "Helvetica Neue", sans-serif;
  --sans: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --mono: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --label: "Barlow Condensed", "Arial Narrow", sans-serif;

  /* SCALE */
  --r-sm: 4px; c 
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 999px;

  --pad: clamp(20px, 4vw, 56px);

  /* MOTION */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] {
  --bg: oklch(0.97 0.01 100);
  --bg-elev: oklch(1 0 0);
  --bg-deep: oklch(0.93 0.015 110);
  --ink: oklch(0.18 0.03 155);
  --ink-mute: oklch(0.38 0.04 150);
  --ink-faint: oklch(0.55 0.03 140);
  --line: oklch(0.86 0.02 130);
  --green: oklch(0.32 0.08 152);
  --green-deep: oklch(0.22 0.05 152);
  --accent: oklch(0.78 0.18 95);
}

/* ══════════════════════════════════════════════════════
   LIGHT MODE — HERO OVERRIDES
   The hero always has a dark photographic background.
   All text inside must be white regardless of theme.
══════════════════════════════════════════════════════ */

/* Dark overlay: replace the white-tinted default with a true dark gradient */
[data-theme="light"] .hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 65%);
}
[data-theme="light"] .hero-slide::after {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.32) 35%,
    rgba(0,0,0,0.82) 82%,
    rgba(0,0,0,0.96) 100%
  );
}

/* Force white text on all hero content */
[data-theme="light"] .hero-stamp       { color: rgba(255,255,255,0.65); }
[data-theme="light"] .hero-stamp strong { color: #fff; }
[data-theme="light"] .hero-headline h1  { color: #fff; }
[data-theme="light"] .hero-headline h1 .y   { color: var(--accent); }
[data-theme="light"] .hero-headline h1 .out {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.45);
}
[data-theme="light"] .hero-tagline            { border-top-color: rgba(255,255,255,0.12); }
[data-theme="light"] .hero-tagline p         { color: rgba(255,255,255,0.88); }
[data-theme="light"] .hero-btns-mobile .btn  { color: #fff; border-color: rgba(255,255,255,0.35); }

/* Live card and next-up pill inside hero */
[data-theme="light"] .hero-live-btn--next  {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
[data-theme="light"] .hero-live-btn--next .hero-live-label { color: var(--accent); }
[data-theme="light"] .hero-live-btn--next .hero-live-score { color: rgba(255,255,255,0.7); }

/* News CTA card inside hero */
[data-theme="light"] .hero-news-cta-inner {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.12);
}

/* ── Light mode: hero strip (Record / League / Home / Next) ── */
[data-theme="light"] .hero-strip > div { background: var(--bg-elev); }
[data-theme="light"] .hero-strip .k   { color: var(--ink-faint); }
[data-theme="light"] .hero-strip .v   { color: var(--ink); }

/* ── Light mode: Top Performers cards (outside hero) ── */
[data-theme="light"] .ps-card    { background: var(--bg-elev); border: 1px solid var(--line); }
[data-theme="light"] .ps-photo   { background: var(--bg-deep); border-color: var(--accent); }
[data-theme="light"] .ps-name    { color: var(--ink); }
[data-theme="light"] .ps-num     { color: var(--ink-faint); }
[data-theme="light"] .ps-stat    { color: var(--ink-mute); }

/* ── Top Performers inside hero — always dark/glass regardless of theme ── */
.hero .player-strip { margin-top: 1.5rem; }
.hero .ps-cards {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero .ps-card {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .ps-name { color: #f8f8f6; }
.hero .ps-num  { color: rgba(255,255,255,0.45); }
.hero .ps-stat { color: rgba(255,255,255,0.6); }
[data-theme="light"] .hero .ps-card { background: rgba(0,0,0,0.5); border: none; }
[data-theme="light"] .hero .ps-name { color: #f8f8f6; }
[data-theme="light"] .hero .ps-num  { color: rgba(255,255,255,0.45); }
[data-theme="light"] .hero .ps-stat { color: rgba(255,255,255,0.6); }

/* Keyframes defined globally so they work regardless of media-query parsing order */
@keyframes ps-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Mobile: swap cards for ticker inside hero ── */
@media (max-width: 768px) {
  .hero .ps-cards { display: none !important; }
  .hero .ps-ticker-wrap {
    display: flex !important;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.12);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }
  .ps-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    animation: ps-scroll 22s linear infinite;
    padding: 10px 0;
  }
  .ps-tick-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .ps-tick-item:active { opacity: 0.7; }
  .ps-tick-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid var(--accent);
    overflow: hidden;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-family: var(--display);
    font-size: 9px;
    color: var(--accent);
  }
  .ps-tick-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .ps-tick-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7dba90;
  }
  .ps-tick-name {
    font-family: var(--display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent);
    font-weight: 700;
  }
  .ps-tick-sep {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    margin: 0 2px;
  }
  .ps-tick-stat {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.04em;
  }
  .ps-tick-dot {
    font-size: 6px;
    color: var(--accent);
    margin: 0 14px;
    opacity: 0.6;
  }
}

/* ── Light mode: mini-standings inside hero (glass stays dark) ── */
[data-theme="light"] .hms-wrap {
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.14);
}
[data-theme="light"] .hms-head    { border-bottom-color: rgba(255,255,255,0.1); }
[data-theme="light"] .hms-row     { border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="light"] .hms-row:hover { background: rgba(255,255,255,0.05); }
[data-theme="light"] .hms-row.hms-us { background: rgba(240,180,41,0.15); }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* TYPE PRIMITIVES */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.85;
  text-transform: uppercase;
}
.mono { font-family: var(--mono); letter-spacing: 0; font-feature-settings: "tnum"; }
.eyebrow {
  font-family: var(--label);
  font-style: italic;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Editorial microcopy: compact, slanted and energetic across every section. */
.tag,
.stamp,
.label,
.share-label,
.news-card .meta,
.news-card-meta,
.standings-meta,
.cal-phase-divider,
.cal-suspended-tag,
.field-eyebrow,
.fp-pos-tag,
.rc-eyebrow,
.pp-tag,
.hms-title,
.hms-link,
.hms-next-kicker,
.hms-next-cta {
  font-family: var(--label);
  font-style: italic;
  font-weight: 600;
}

/* Main editorial headlines carry the freestyle forward lean; data stays upright. */
.hero-headline h1,
.section-title,
.cal-hero h1,
.news-hero h1,
.res-hero h1,
.article-hero h1,
.next-match .left h2 {
  font-style: italic;
  font-synthesis: style;
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-logo .mark {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--bg-deep);
  display: grid; place-items: center;
  font-weight: 900;
  font-family: var(--display);
  font-size: 22px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-tools { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.icon-btn:hover { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 8%, transparent); }
.menu-btn { display: none; }

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: color-mix(in oklab, var(--ink) 6%, transparent);
  border-radius: var(--r-pill);
  padding: 3px;
}
.lang-btn {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  color: var(--ink-mute);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  background: var(--accent);
  color: var(--bg-deep);
}
/* hide desktop elements on mobile — shown in mobile menu instead */
@media (max-width: 900px) {
  .nav-tools .lang-switcher { display: none; }
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: grid; }
}
.mobile-menu-foot .lang-switcher {
  background: color-mix(in oklab, var(--ink) 8%, transparent);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; visibility: visible; }
@media (min-width: 901px) { .mobile-menu { display: none; } }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.mobile-menu nav {
  display: flex; flex-direction: column;
  padding-top: 32px; gap: 4px; flex: 1;
}
.mobile-menu nav a {
  font-family: var(--display);
  font-size: clamp(48px, 12vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu nav a .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
}
.mobile-menu-foot {
  padding-top: 24px;
  display: flex; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-deep);
  padding: 80px var(--pad) 32px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 14px; color: var(--ink); transition: color 0.2s; }
.footer ul a:hover { color: var(--accent); }
.footer-big {
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 56px 0 24px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--ink) 60%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  max-width: 100%;
  overflow: hidden;
}
.footer-meta {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   COMMON UTILITIES
============================================================ */
.section {
  padding: clamp(64px, 10vw, 120px) var(--pad);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}
.section-title .out { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.section-title .y { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.btn-primary { background: var(--accent); color: var(--bg-deep); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: var(--label);
  font-style: italic;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--accent) 18%, transparent);
  color: var(--accent);
}
.tag.live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--danger);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* PLACEHOLDER (striped) */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      color-mix(in oklab, var(--ink) 8%, transparent) 0 1px,
      transparent 1px 14px
    ),
    var(--bg-elev);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-align: center;
  padding: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.ph span { background: var(--bg-elev); padding: 4px 10px; border-radius: var(--r-pill); border: 1px solid var(--line); }

/* ============================================================
   HERO (HOME)
============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 32px var(--pad) 32px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 50%, var(--bg) 100%),
    linear-gradient(90deg, color-mix(in oklab, var(--bg) 30%, transparent), transparent 60%);
}
.hero-bg .ph {
  width: 100%; height: 100%;
  border: 0;
  border-radius: 0;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.18) 0 2px, transparent 2px 22px),
    radial-gradient(ellipse at 30% 30%, oklch(0.32 0.08 152) 0%, oklch(0.13 0.025 155) 70%);
}
.hero-bg .ph span { position: absolute; bottom: 24px; right: 24px; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  gap: 24px;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: start;
  flex-wrap: wrap; gap: 16px;
}
.hero-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-stamp {
  font-family: var(--label);
  font-style: italic;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.6;
}
.hero-stamp strong { color: var(--ink); }

.hero-headline {
  align-self: end;
  margin-top: auto;
}
.hero-headline h1 {
  font-family: var(--display);
  font-size: clamp(80px, 17vw, 280px);
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}
/* Keep the hero hashtag visually locked together at oversized scale. */
.hero-hash-tight { display: inline-block; margin-left: -0.07em; }
.hero-headline h1 .y { color: var(--accent); }
.hero-headline h1 .out { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hero-tagline {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; flex-wrap: wrap;
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-tagline p {
  max-width: 460px;
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* HERO BOTTOM TICKER STRIP */
.stats-strip-section {
  background: var(--bg-deep);
}

/* ── PLAYER STATS STRIP ── */
.player-strip { display: block; }

/* ── Desktop: 3-column card grid ── */
.ps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

/* ── Mobile ticker (hidden on desktop) ── */
.ps-ticker-wrap { display: none; }

/* ── Individual player card — MVP circle style ── */
.ps-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-elev);
}

.ps-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--accent);
  flex-shrink: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 22px;
  color: var(--accent);
}

.ps-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ps-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 2px;
}

.ps-player-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ps-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.ps-name {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--ink);
}

.ps-stat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 2px;
}

@media (max-width: 800px) {
  .ps-cards { grid-template-columns: 1fr; }
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.hero-strip > div {
  background: var(--bg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-strip .k {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.hero-strip .v {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-strip .v .y { color: var(--accent); }
/* Botones mobile — ocultos en desktop, visibles solo en móvil */
.hero-btns-mobile { display: none; }

@media (max-width: 800px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 100svh; }
  .hero-stamp { display: none; }

  /* Overlay más fuerte en móvil para legibilidad */
  .hero-slide::after {
    background: linear-gradient(
      to bottom,
      rgba(13,46,26,0.60) 0%,
      rgba(13,46,26,0.45) 30%,
      rgba(13,46,26,0.90) 70%,
      rgba(13,46,26,0.98) 100%
    );
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 25%);
  }

  /* CTA card: fluye en el documento en móvil, ancho completo */
  .hero-news-cta {
    position: static;
    margin: 1.25rem 0 0;
    z-index: auto;
    width: 100%;
  }
  .hero-news-cta-inner {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  /* 1. Ocultar "BITE HARDER 2026" en móvil */
  .hero-headline h1 { display: none; }

  /* 2. Ocultar tarjeta oscura de descripción en móvil */
  .hero-tagline { display: none; }

  /* 3. Mostrar botones mobile debajo del CTA del Pink Game */
  .hero-btns-mobile {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
  }
  .hero-btns-mobile .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 12px 14px;
  }

  /* 4. Reordenar elementos en móvil via flexbox order */
  .hero-headline {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .hero-headline #heroMiniStandings { order: 1; margin-top: 0; }
  .hero-headline #heroLiveCard      { order: 0; margin-top: 0; }
  .hero-headline #playerStrip       { order: 2; margin-top: 1rem; }
  .hero-headline .hero-btns-mobile  { order: 3; }

  /* ROOT CAUSE FIX — flex/grid items default to min-width:auto (their
     content's intrinsic size), which lets the nowrap ticker marquee
     (~2500px of un-wrapped content) force every ancestor box wider than
     the viewport. min-width:0 lets each of these properly shrink/clip
     instead of inflating .hero-content/.hero-headline and everything
     stacked under them (mini-standings, buttons, etc). */
  .hero-content,
  #playerStrip,
  .player-strip,
  .ps-ticker-wrap {
    min-width: 0;
  }

  /* standings on mobile — stack Gruppe A above Gruppe B instead of
     squeezing them side by side. Only the container layout changes here;
     row/text/logo styles below are unchanged from desktop. */
  #heroMiniStandings {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .hms-cols {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }
  .hms-col {
    width: 100%;
    min-width: 0;
  }
  .hms-divider {
    display: none;
  }
  .hms-next { display: none; }
  .hms-head     { padding: 6px 10px 5px; }
  .hms-title    { font-size: 8px; letter-spacing: 0.12em; }
  .hms-link     { font-size: 8px; }
  .hms-col-head { font-size: 8px; padding: 4px 6px 3px; letter-spacing: 0.1em; }
  .hms-row      { grid-template-columns: 10px 14px 1fr auto auto auto; gap: 3px; padding: 4px 6px; }
  .hms-logo     { width: 14px; height: 14px; }
  .hms-rank     { font-size: 8px; }
  .hms-name     { font-size: 11px; }
  .hms-w        { font-size: 11px; min-width: 12px; }
  .hms-l        { font-size: 11px; min-width: 12px; }
  .hms-pct      { font-size: 9px; min-width: 26px; }
}

/* ── HERO LIVE CARD ── */
#heroLiveCard {
  margin-bottom: 14px;
}
.hero-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  cursor: pointer;
}
.hero-live-btn:hover { opacity: 0.82; }
.hero-live-btn--live {
  background: rgba(220,38,38,0.18);
  border: 1px solid rgba(220,38,38,0.4);
  color: #fff;
}
.hero-live-btn--next {
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  color: rgba(255,255,255,0.8);
}
.hero-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
  animation: hero-live-pulse 1.2s ease-in-out infinite;
}
@keyframes hero-live-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.45); opacity: 0.55; }
}
.hero-live-label {
  color: #ff6666;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.hero-live-btn--next .hero-live-label { color: var(--accent); }
.hero-live-score {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
}
.hero-live-btn--live .hero-live-score { color: #fff; font-weight: 600; }

/* ── HERO MINI-STANDINGS WIDGET ── */
#heroMiniStandings {
  margin-top: 20px;
  width: 100%;
}
.hms-wrap {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hms-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hms-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hms-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.hms-link:hover { opacity: 1; }

/* ── Two-column group layout ── */
.hms-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  width: 100%;
}
/* min-width:0 overrides the implicit auto minimum of 1fr,
   so columns actually shrink to 50% on small screens */
.hms-col {
  min-width: 0;
  overflow: hidden;
}
.hms-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.hms-next {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 28px 16px;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at 50% 40%, rgba(240,180,41,0.12), transparent 55%), rgba(255,255,255,0.015);
  transition: background 0.2s ease;
}
.hms-next:hover { background: radial-gradient(circle at 50% 40%, rgba(240,180,41,0.2), transparent 58%), rgba(255,255,255,0.035); }
.hms-next-kicker,
.hms-next-cta { font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em; color: var(--accent); }
.hms-next-matchup { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 2px 0 1px; }
.hms-next-team { display: flex; flex-direction: column; align-items: center; gap: 3px; font-family: var(--display); font-size: 14px; letter-spacing: 0.05em; }
.hms-next-logo { width: 54px; height: 54px; border-radius: 50%; background-repeat: no-repeat; background-position: center; background-size: contain; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.35)); }
.hms-next-vs { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.35); }
.hms-next-date { font-family: var(--display); font-size: 20px; letter-spacing: 0.04em; color: #fff; }
.hms-next-opponent { font-family: var(--sans); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.78); }
.hms-next-location { font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,0.4); }
.hms-next-cta { margin-top: 3px; }
@media (max-width: 768px) {
  .hms-next,
  .hms-divider { display: none; }
}
.hms-col-head {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7dba90;
  padding: 7px 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Row — layout: rank · logo · name · W · L · PCT ── */
.hms-row {
  display: grid;
  grid-template-columns: 14px 26px 1fr auto auto auto;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.hms-row:last-child { border-bottom: none; }
.hms-row:hover { background: rgba(255,255,255,0.04); }
.hms-row.hms-us {
  background: rgba(240,180,41,0.08);
  box-shadow: inset 3px 0 0 var(--accent);
}
.hms-row.hms-us:hover { background: rgba(240,180,41,0.13); }

.hms-logo {
  width: 26px; height: 26px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.hms-logo--ini {
  display: grid; place-items: center;
  font-family: var(--display); font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.hms-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hms-us .hms-name { color: var(--accent); }
.hms-rank {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  text-align: right;
}
.hms-w {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  min-width: 14px;
}
.hms-l {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-align: center;
  min-width: 14px;
}
.hms-us .hms-w,
.hms-us .hms-l { color: rgba(240,180,41,0.9); }
.hms-pct {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: right;
  min-width: 34px;
}
.hms-us .hms-pct { color: var(--accent); font-weight: 700; }

/* HOME HERO LATEST RESULTS STRIP */
.latest-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 700px) { .latest-strip { grid-template-columns: 1fr; } }
.latest-strip .game {
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(10px);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.latest-strip .game:hover { background: color-mix(in oklab, var(--accent) 10%, var(--bg)); }
.latest-strip .game .top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.latest-strip .game .top .res {
  padding: 2px 8px; border-radius: 4px;
  font-weight: 700;
}
.latest-strip .game .top .res.w { background: var(--accent); color: var(--bg-deep); }
.latest-strip .game .top .res.l { background: color-mix(in oklab, var(--loss) 30%, transparent); color: var(--ink-faint); }
.latest-strip .game .matchup {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 0.95;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.latest-strip .game .matchup .sc { color: var(--accent); }

/* ============================================================
   MARQUEE
============================================================ */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}
.marquee-track {
  display: flex;
  gap: 64px;
  padding: 18px 0;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  flex-shrink: 0;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-track .dot { color: var(--accent); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   RESULTS / SCORES
============================================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 1000px) { .results-grid { grid-template-columns: 1fr; } }

.score-card {
  background: var(--bg-elev);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.3s;
}
.score-card:hover { background: color-mix(in oklab, var(--accent) 6%, var(--bg-elev)); }
.score-card .row {
  display: flex; justify-content: space-between; align-items: center;
}
.score-card .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.score-card .team {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}
.score-card .team .crest {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
  color: var(--ink);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.score-card .team.us .crest {
  background: var(--accent);
  color: var(--bg-deep);
}
.score-card .score {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: 0;
}
.score-card .score.win { color: var(--accent); }
.score-card .score.loss { color: var(--ink-faint); }
.score-card .foot {
  display: flex; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.score-card .badge {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-sm);
}
.score-card .badge.w { background: color-mix(in oklab, var(--accent) 25%, transparent); color: var(--accent); }
.score-card .badge.l { background: color-mix(in oklab, var(--loss) 25%, transparent); color: var(--ink-faint); }

/* ============================================================
   ROSTER (FLIP CARDS)
============================================================ */
.roster {
  background: var(--bg-deep);
  padding: clamp(80px, 12vw, 160px) var(--pad);
  position: relative;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .roster-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .roster-grid { grid-template-columns: 1fr; } }

.player {
  position: relative;
  aspect-ratio: 3 / 4;
  perspective: 1200px;
  cursor: pointer;
}
.player-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease-out);
}
.player.flipped .player-inner { transform: rotateY(180deg); }
@media (hover: hover) {
  .player:hover .player-inner { transform: rotateY(180deg); }
}

.player-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.player-front {
  background-color: var(--bg-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}
.captain-badge {
  position: absolute;
  bottom: 80px;
  left: 12px;
  top: auto;
  right: auto;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--accent);
  padding: 6px 10px 5px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,210,42,0.35), 0 0 0 1px rgba(0,0,0,0.15) inset;
}
.player-face.player-front .captain-badge { display: inline-flex; }
.player-face.player-back .captain-badge { display: none !important; }
.player.is-captain .player-back {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,210,42,0.15), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(0,138,77,0.18), transparent 60%),
    var(--bg-elev);
}
.back-cap {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--accent);
  vertical-align: middle;
  font-weight: 700;
}
.player-front .num {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.02em;
  align-self: end;
}
.player-front .meta {
  display: flex; flex-direction: column; gap: 6px;
}
.player-front .meta .name {
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
  line-height: 0.95;
}
.player-front .meta .pos {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.player-front .ph-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  padding: 4px 8px; border-radius: 4px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
}

.player-back {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(0,138,77,0.18), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(255,210,42,0.10), transparent 60%),
    var(--bg-elev);
  transform: rotateY(180deg);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.player-back .back-head { padding-right: 36px; }
.player-back .back-flag { font-size: 20px; line-height: 1; margin-bottom: 8px; filter: saturate(1.1); }
.player-back h4 {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.player-back .pos {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.player-back .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.player-back .stats > div {
  background: var(--bg-elev);
  padding: 11px 12px;
}
.player-back .stats .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.player-back .stats .v {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.player-back .num-back {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--display);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.player-back .back-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.player-back .back-flip { color: var(--accent); }

/* Tap hints — touch devices only */
.player-tap-hint { display: none; }
@media (hover: none) {
  .player-tap-hint {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0; right: 0;
    text-align: center;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    z-index: 2;
  }
  .player-back .player-tap-hint { color: rgba(255,255,255,0.45); }
}

/* ============================================================
   CALENDAR PAGE
============================================================ */
.cal-hero {
  padding: 48px var(--pad) 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .cal-hero { grid-template-columns: minmax(0, 1fr); }
  .cal-hero h1 { font-size: clamp(50px, 13.5vw, 110px); }
}
.cal-hero h1 {
  font-family: var(--display);
  font-size: clamp(58px, 9.8vw, 150px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.cal-hero > * { min-width: 0; }
.cal-hero h1 .y { color: var(--accent); }
.cal-hero .next {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.cal-hero .next .head {
  display: flex; justify-content: space-between; align-items: center;
}
.cal-hero .next .countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cal-hero .next .countdown > div {
  background: var(--bg);
  padding: 14px 8px;
  text-align: center;
}
.cal-hero .next .countdown .v {
  font-family: var(--display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.cal-hero .next .countdown .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.cal-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.cal-filters .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 12px;
}
.chip {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: all 0.2s;
}
.chip:hover { color: var(--ink); border-color: var(--ink-mute); }
.chip.active { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }

.cal-list {
  padding: 0 var(--pad) 64px;
}
.cal-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
  cursor: pointer;
}
.cal-row:hover { padding-left: 12px; }
.cal-row:hover .cal-arrow { transform: translateX(8px); color: var(--accent); }
@media (max-width: 800px) {
  .cal-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}
.cal-date {
  display: flex; flex-direction: column;
}
.cal-date .day {
  font-family: var(--display);
  font-size: 48px;
  line-height: 0.85;
}
.cal-date .month {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.cal-match { display: flex; flex-direction: column; gap: 6px; }
.cal-match .vs {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1;
}
.cal-match .vs .y { color: var(--accent); }
.cal-match .info {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cal-time {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.cal-arrow {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--ink-mute);
  transition: all 0.3s var(--ease);
}
.cal-row.past { opacity: 0.5; }
.cal-row.past .cal-time { color: var(--accent); font-weight: 700; }

.cal-row.suspended { opacity: 0.65; }
.cal-row.suspended .cal-match .vs,
.cal-row.suspended .cal-time { text-decoration: line-through; text-decoration-color: rgba(217,83,79,0.6); }
.cal-suspended-tag {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9534f;
  background: rgba(217,83,79,0.12);
  border: 1px solid rgba(217,83,79,0.4);
  border-radius: 5px;
  padding: 3px 8px;
}

.cal-phase-divider {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 18px 0 10px;
  border-top: 1px solid rgba(245,200,66,0.25);
  margin-top: 8px;
}

/* ============================================================
   NEWS PAGE
============================================================ */
.news-hero {
  padding: 48px var(--pad) 32px;
  border-bottom: 1px solid var(--line);
}
.news-hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.news-hero h1 .y { color: var(--accent); }
.news-hero .lede {
  margin-top: 16px;
  max-width: 540px;
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.news-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .news-feature { grid-template-columns: 1fr; } }
.news-feature .img {
  background: var(--bg-deep);
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

/* Vertical editorial artwork inside articles: proportional on every viewport. */
.news-feature .img.art-poster-media {
  align-self: start;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  position: sticky;
  top: 88px;
}

@media (max-width: 900px) {
  .news-feature .img.art-poster-media {
    width: min(100%, 720px);
    height: auto;
    max-height: none;
    margin-inline: auto;
    aspect-ratio: 1122 / 1402;
    position: relative;
    top: auto;
  }
}

/* ── News feature carousel ── */
.news-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.news-carousel-slide.active { opacity: 1; }

.news-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.ncd {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ncd.active { background: #fff; transform: scale(1.4); }

@media (max-width: 768px) {
  .news-feature .img { max-height: 250px; aspect-ratio: unset; height: 250px; }
}
.news-feature .img .ph {
  position: absolute; inset: 0; border-radius: 0; border: 0;
}
.news-feature .body {
  background: var(--bg);
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.news-feature h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.news-feature p {
  color: var(--ink-mute);
  line-height: 1.6;
  font-size: 15px;
}
/* ── Article body with inline photos ── */
.art-body { color: var(--ink-mute); font-size: 16px; line-height: 1.7; }
.art-body p { margin-bottom: 1.2em; }
.art-body p:last-child { margin-bottom: 0; }
.art-figure {
  margin: 24px 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.art-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 440px;
}
.art-caption {
  padding: 9px 14px;
  background: var(--bg-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .art-figure img { max-height: 260px; }
}

.news-feature .byline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (max-width: 1000px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
  cursor: pointer;
}
.news-card:hover { background: var(--bg-elev); }
.news-card:hover .news-card-img .ph::after {
  opacity: 1;
}
.news-card-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
}
.news-card-img .ph { position: absolute; inset: 0; border-radius: var(--r-md); }
.news-card-img .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 30%, transparent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.news-card .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.news-card h3 {
  font-family: var(--display);
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.news-card .meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
}

/* SHARE BAR */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.share-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 2px;
}
.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
  text-decoration: none;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.share-btn:hover { transform: scale(1.12); }
.share-btn.whatsapp:hover  { background: #25D366; border-color: #25D366; color: #fff; }
.share-btn.facebook:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.share-btn.twitter:hover   { background: #000;    border-color: #000;    color: #fff; }
.share-btn.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #dc2743; color: #fff; }
.share-btn.copy:hover   { background: var(--accent); border-color: var(--accent); color: var(--bg-deep); }
.share-btn.copied       { background: var(--green);  border-color: var(--green);  color: #fff; transform: scale(1); }

/* GALLERY (lightbox trigger) */
.gallery {
  padding: clamp(64px, 10vw, 120px) var(--pad);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 8px;
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 100px; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.gallery-item:hover { transform: scale(0.98); }
.gallery-item .ph { position: absolute; inset: 0; border-radius: var(--r-md); border: 0; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   PINK GAME PHOTO ALBUM
============================================================ */
.pink-album {
  padding: 24px var(--pad) 32px;
  background: color-mix(in oklab, #FF69B4 4%, var(--bg));
  border-top: 1px solid rgba(255,105,180,0.2);
  border-bottom: 1px solid rgba(255,105,180,0.2);
}
.pink-album-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pink-album-title {
  font-family: var(--display);
  font-size: clamp(18px, 3vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.pink-album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.pink-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,105,180,0.18);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}
.pink-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pink-thumb:hover {
  transform: scale(0.97);
  box-shadow: 0 0 12px rgba(255,105,180,0.5);
  border-color: #FF69B4;
}
.pink-thumb.pa-hidden { display: none; }
.pink-album.expanded .pa-hidden { display: block; }

.pa-expand-btn {
  display: block;
  margin: 14px auto 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF69B4;
  background: none;
  border: 1px solid rgba(255,105,180,0.35);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pa-expand-btn:hover { background: rgba(255,105,180,0.08); border-color: #FF69B4; }

@media (max-width: 900px) {
  .pink-album-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .pink-album-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   VIDEO GALLERY
============================================================ */
.video-section {
  padding: clamp(64px, 10vw, 120px) var(--pad);
  background: var(--bg-deep);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-label .video-date {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.video-label .video-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: grid;
  place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  position: relative;
  width: min(85vw, 1100px);
  aspect-ratio: 16 / 10;
}
.lightbox-content .ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, oklch(0.42 0.10 150), oklch(0.22 0.05 152));
  border-radius: var(--r-lg);
  border: 0;
  color: rgba(255,255,255,0.6);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 700;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: grid; place-items: center;
  font-size: 22px;
}
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   STANDINGS-LITE / NEXT MATCH (HOME)
============================================================ */
.next-match {
  padding: clamp(64px, 10vw, 120px) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .next-match { grid-template-columns: 1fr; } }
.next-match .left h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.next-match .left h2 .out { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.next-match .left p {
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}
.match-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.match-card::before {
  content: ""; position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 30%, transparent), transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
  pointer-events: none;
}
.match-card .head {
  display: flex; justify-content: space-between; align-items: center;
}
.match-card .vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.match-card .vs .team {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.match-card .vs .crest {
  width: 72px; height: 72px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 28px;
  border: 1px solid var(--line);
}
.match-card .vs .team.us .crest { background: var(--accent); color: var(--bg-deep); }
.match-card .vs .team.them .crest {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: var(--ink);
}
.match-card .vs .team .name {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 0.95;
}
.match-card .vs .team .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.match-card .vs .center {
  font-family: var(--display);
  font-size: 56px;
  color: var(--accent);
  text-align: center;
}
.match-card .info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.match-card .info-row > div {
  background: var(--bg-elev);
  padding: 14px;
  text-align: center;
}
.match-card .info-row .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.match-card .info-row .v {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}

/* ============================================================
   JOIN CTA SECTION
============================================================ */
.join {
  padding: clamp(80px, 14vw, 200px) var(--pad);
  background: var(--accent);
  color: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.join::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.join h2 {
  font-family: var(--display);
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}
.join h2 .out { color: transparent; -webkit-text-stroke: 2px var(--bg-deep); }
.join .row {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  margin-top: 32px;
  position: relative;
}
.join .row p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--bg-deep) 80%, transparent);
}
.join .btn-primary {
  background: var(--bg-deep);
  color: var(--accent);
}

/* ── HERO DYNAMIC BACKGROUND SLIDES ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, color-mix(in oklab, var(--bg) 50%, transparent), transparent 60%);
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,46,26,0.45) 0%,
    rgba(13,46,26,0.3) 40%,
    rgba(13,46,26,0.85) 85%,
    rgba(13,46,26,0.97) 100%
  );
}

/* ── NEWS CTA BUTTON ── */
.hero-news-cta {
  position: absolute;
  top: 3rem;
  left: 0;        /* alineado con el borde izquierdo de .hero-content */
  z-index: 20;
  margin: 0;
}

.hero-news-cta-inner {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  background: rgba(13,46,26,0.75);
  border: 1px solid rgba(240,180,41,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 0.85rem 1.25rem;
  max-width: 420px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-news-cta-inner:hover {
  background: rgba(240,180,41,0.12);
  border-color: var(--accent);
}

.hero-news-cta-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-news-cta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero-news-cta-headline {
  font-family: var(--display);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f8f8f6;
  line-height: 1.2;
}

.hero-news-cta-read {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.1rem;
}

/* ── SLIDE INDICATORS ── */
.hero-slide-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}

.hero-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slide-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

@media (max-width: 600px) {
  .hero-news-cta-inner { max-width: 100%; }
  .hero-news-cta-headline { font-size: 0.88rem; }
}

/* ── SCHEDULE FILTERS ── */
.schedule-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  padding: 0 var(--pad);
}

.sched-filter-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sched-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sched-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.sched-filter-count {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  margin-left: 0.5rem;
}

.schedule-game.past {
  opacity: 0.45;
  filter: grayscale(0.4);
}

.schedule-game.past:hover {
  opacity: 0.7;
  filter: grayscale(0);
}

.schedule-game.next-game {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 1px var(--accent), 0 4px 24px rgba(240,180,41,0.15);
}

.next-game-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

.next-game-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.schedule-game.hidden {
  display: none;
}

/* ── RESULT CARDS (home page recent results) ── */
.result-card {
  background: var(--bg-elev);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.result-card--pink {
  border-color: rgba(255,62,165,0.3);
}

.result-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.result-card-date {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.result-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.result-badge--win  { background: rgba(0,200,100,0.15); color: #00c864; }
.result-badge--loss { background: rgba(255,60,60,0.12); color: #ff5555; }

.result-card-matchup {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.result-team {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.result-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.result-team-name {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  flex: 1;
}

.result-score {
  font-family: var(--display);
  font-size: 1.6rem;
  color: rgba(255,255,255,0.35);
}

.result-score--win  { color: var(--accent); }
.result-score--loss { color: #ff5555; }

.result-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.75rem;
}

.result-innings {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

.result-recap-link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
}

.result-recap-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   PLAYER PROFILE MODAL
══════════════════════════════════════════════════════ */
.player-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.player-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.pm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pm-box {
  position: relative;
  z-index: 1;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 500px;
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.pm-close:hover { background: rgba(255,255,255,0.15); }

/* ── Header ── */
.pm-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--line);
}

.pm-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-deep);
  flex-shrink: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 28px;
  color: var(--accent);
}
.pm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pm-identity { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.pm-badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.pm-name {
  font-family: var(--display);
  font-size: clamp(22px, 5vw, 30px);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--ink);
}

.pm-pos {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ── Stats grid ── */
/* ── Tabs ── */
.pm-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
  gap: 0;
}

.pm-tab-btn {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: none;
  background: none;
  color: var(--ink-faint);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.pm-tab-btn:hover { color: var(--ink); }
.pm-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.pm-pane { display: none; padding: 20px 24px; }
.pm-pane.active { display: block; }

/* ── Summary grid inside a pane ── */
.pm-summary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.pm-summary-cell {
  background: var(--bg-deep);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pm-summary-k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.pm-summary-v {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pm-summary-v.hl { color: var(--accent); }

/* ── Tables ── */
.pm-log-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 20px 0 8px;
}

.pm-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}

.pm-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
}

.pm-table thead th {
  background: var(--bg-deep);
  padding: 8px 10px;
  text-align: right;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
}
.pm-table thead th:first-child { text-align: left; min-width: 80px; }

.pm-table tbody td {
  padding: 7px 10px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--ink-mute);
}
.pm-table tbody td:first-child { text-align: left; color: var(--ink); }
.pm-table tbody tr:last-child td { border-bottom: none; }
.pm-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.pm-table td.hl { color: var(--accent); font-weight: 700; }

.pm-no-data {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  padding: 12px 0;
}

/* ── Extra info ── */
.pm-extra {
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
}

.pm-chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  color: var(--ink-mute);
}

/* ── Footer link ── */
.pm-links {
  padding: 0 24px 24px;
}
.pm-easyscore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  transition: background 0.2s;
}
.pm-easyscore-link:hover { background: rgba(240,180,41,0.08); }

/* ── View Profile button on flip card back ── */
.btn-view-profile {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(240,180,41,0.35);
  border-radius: 2px;
  padding: 4px 8px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-view-profile:hover { background: rgba(240,180,41,0.1); }

@media (max-width: 480px) {
  .pm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-box { max-height: 95vh; }
}

/* ══════════════════════════════════════════════════════
   STANDINGS TABLE
══════════════════════════════════════════════════════ */
.standings-section { background: var(--bg); }

.standings-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 13px;
}

.standings-table thead th {
  background: var(--bg-deep);
  padding: 12px 16px;
  text-align: right;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--line);
}
.standings-table thead th:nth-child(1) { text-align: left; padding-left: 20px; }
.standings-table thead th:nth-child(2) { text-align: left; }

.standings-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.standings-table tbody tr:last-child { border-bottom: none; }
.standings-table tbody tr:hover { background: rgba(255,255,255,0.03); }

/* Highlight BAR3 row */
.standings-table tbody tr.standings-us {
  background: rgba(240,180,41,0.06);
}
.standings-table tbody tr.standings-us:hover { background: rgba(240,180,41,0.1); }
.standings-table tbody tr.standings-us .standings-team-name { color: var(--accent); font-weight: 700; }

.standings-table tbody td {
  padding: 13px 16px;
  text-align: right;
  color: var(--ink-mute);
  font-size: 13px;
}
.standings-table tbody td:nth-child(1) {
  padding-left: 20px;
  text-align: left;
  color: var(--ink-faint);
  font-size: 11px;
  width: 32px;
}
.standings-table tbody td:nth-child(2) { text-align: left; }

.standings-team-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Team logo circle — same style as player roster circles */
.sl-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-deep);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.sl-circle--text {
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

.standings-team-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
}
.standings-abbr {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* Compact standings variant — logo + abbreviation only, no full team name */
.standings-table--compact .standings-abbr {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.standings-table--compact tbody tr.standings-us .standings-abbr { color: var(--accent); }

.standings-pct { color: var(--accent); font-weight: 700; }
.standings-w   { color: var(--ink); }
.standings-gb  { color: rgba(255,255,255,0.35); font-size: 11px; }
.standings-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  margin-top: 10px;
  text-align: right;
}

.standings-loading { padding: 40px; text-align: center; }
.standings-skeleton {
  height: 180px;
  background: linear-gradient(90deg, var(--bg-elev) 25%, var(--bg-deep) 50%, var(--bg-elev) 75%);
  background-size: 200% 100%;
  animation: standings-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--r-md);
}
@keyframes standings-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 600px) {
  .standings-table-wrap { border-radius: var(--r-md); }

  /* Compact padding throughout */
  .standings-table thead th,
  .standings-table tbody td { padding: 10px 6px; font-size: 11px; }
  .standings-table thead th:nth-child(1),
  .standings-table tbody td:nth-child(1) { padding-left: 10px; width: 24px; }

  /* Hide GP column — show #, Team, W, L, PCT */
  .standings-table thead th:nth-child(3),
  .standings-table tbody td:nth-child(3) { display: none; }

  /* Team cell — smaller logo, tighter gap */
  .standings-team-cell { gap: 7px; }
  .sl-circle { width: 28px; height: 28px; flex-shrink: 0; }

  /* Team name + abbreviation — both visible, smaller */
  .standings-team-name { font-size: 12px; line-height: 1.2; }
  .standings-abbr {
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    display: block;
  }

  /* Row borders more visible on mobile */
  .standings-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.09); }

  /* BAR3 row highlight — stronger opacity on mobile */
  .standings-table tbody tr.standings-us { background: rgba(240,180,41,0.10); }
  .standings-table tbody tr.standings-us:hover { background: rgba(240,180,41,0.15); }
}

/* ══════════════════════════════════════════════════════
   AWARDS SECTION
══════════════════════════════════════════════════════ */
.awards-section { background: var(--bg); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 1100px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .awards-grid { grid-template-columns: 1fr; } }

/* ── Award card ── */
.award-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.award-card:hover { border-color: rgba(240,180,41,0.4); }

.award-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}

.award-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.award-name {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}

.award-desc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* ── Calendar button ── */
.cal-add-wrap { position: relative; flex-shrink: 0; }
.cal-add-btn {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--ink-mute);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cal-add-btn:hover { border-color: var(--accent); color: var(--accent); }
.cal-dropdown {
  position: absolute;
  right: 0; top: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 50;
  min-width: 180px;
  overflow: hidden;
}
.cal-dd-item {
  display: block; width: 100%;
  padding: 10px 14px;
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cal-dd-item:hover { background: rgba(255,255,255,0.06); color: var(--accent); }
.cal-dd-item + .cal-dd-item { border-top: 1px solid var(--line); }

/* ── Notification bell ── */
.notif-bell { transition: border-color 0.2s, color 0.2s; }
.notif-bell--on { border-color: var(--accent) !important; color: var(--accent) !important; }

/* ══════════════════════════════════════════════════════
   LIVE SCORE CARD (EasyScore)
══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   MLB BROADCAST SCOREBOARD
══════════════════════════════════════════════════════ */
.sb-wrap {
  background: #0a1a0c;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--mono);
}

/* ── ROW 1 — Main bar ── */
.sb-row1 {
  display: flex;
  align-items: center;
  padding: 0 16px;
  min-height: 52px;
  gap: 0;
  flex-wrap: wrap;
}

/* Teams */
.sb-teams {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.sb-team { display: flex; align-items: center; gap: 6px; }
.sb-team--r { flex-direction: row-reverse; }

.sb-logo {
  width: 26px; height: 26px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.sb-logo--ini {
  display: grid; place-items: center;
  font-family: var(--display); font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.sb-abbr {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}
.sb-score {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.45);
  line-height: 1;
  min-width: 24px;
  text-align: center;
}
.sb-score--lead { color: #FFD700; }
.sb-vsep {
  font-family: var(--display);
  font-size: 16px;
  color: rgba(255,255,255,0.18);
  padding: 0 2px;
}

/* Center: inning + diamond + BSO */
.sb-center {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Inning indicator */
.sb-inn {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 1px;
}
.sb-inn-n {
  font-family: var(--display);
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
.sb-inn-l {
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Diamond */
.sb-diamond {
  position: relative;
  width: 30px; height: 30px;
  flex-shrink: 0;
}
.sb-base {
  position: absolute;
  width: 9px; height: 9px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  transform: rotate(45deg);
  transition: background 0.3s;
}
.sb-base--on { background: #FFD700; border-color: #FFD700; }
.sb-base--2nd { top: 0; left: 50%; transform: translateX(-50%) rotate(45deg); }
.sb-base--1st { right: 0; top: 50%; transform: translateY(-50%) rotate(45deg); }
.sb-base--3rd { left: 0;  top: 50%; transform: translateY(-50%) rotate(45deg); }
.sb-base--home {
  bottom: 0; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 7px; height: 7px;
  border-color: rgba(255,255,255,0.12);
}

/* BSO dots */
.sb-bso { display: flex; flex-direction: column; gap: 3px; }
.sb-bso--empty { opacity: 0.35; }
.sb-bso-g { display: flex; align-items: center; gap: 3px; }
.sb-bso-l { font-size: 7px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; width: 8px; }
.sb-bso-d { display: flex; gap: 2px; }
.sb-dot {
  width: 5px; height: 5px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
}
.sb-dot--on  { background: #FFD700; border-color: #FFD700; }
.sb-dot--out.sb-dot--on { background: #ff5555; border-color: #ff5555; }

/* Right: status + ticker */
.sb-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.sb-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.sb-pill--live {
  color: #ff5555;
  background: rgba(220,38,38,0.2);
  border: 1px solid rgba(220,38,38,0.4);
  animation: sb-blink 1.4s ease-in-out infinite;
}
.sb-pill--done {
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
@keyframes sb-blink { 0%,100% { opacity:1; } 50% { opacity:.45; } }

/* Ticker */
.sb-ticker-rail {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.sb-ticker {
  display: inline-block;
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: sb-scroll 22s linear infinite;
  padding-left: 16px;
}
@keyframes sb-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ROW 2 — Linescore bar ── */
.sb-row2 {
  background: #0a1505;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sb-ls-wrap { flex-shrink: 0; }

.sb-ls {
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 10px;
}
.sb-ls th {
  background: rgba(0,0,0,0.25);
  padding: 4px 6px;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 8px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 600;
}
.sb-ls th:first-child { text-align: left; padding-left: 12px; min-width: 38px; }
.sb-ls td {
  padding: 4px 6px;
  text-align: center;
  color: rgba(255,255,255,0.4);
}
.sb-ls tr:last-child td { border-bottom: none; }
.sb-lteam { text-align: left !important; padding-left: 12px !important; color: rgba(255,255,255,0.75) !important; font-weight: 700; font-size: 9px; letter-spacing: 0.06em; }
.sb-lsep  { border-left: 1px solid rgba(255,255,255,0.07); }
.sb-lr    { color: #FFD700 !important; font-weight: 700; }
.sb-lz    { color: rgba(255,255,255,0.15); }
.sb-lcur  { background: rgba(255,215,0,0.07); color: #FFD700 !important; }

/* CTA */
.sb-cta {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFD700;
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sb-cta:hover { background: rgba(255,215,0,0.06); }

/* Mobile */
@media (max-width: 600px) {
  .sb-row1 { padding: 0 10px; gap: 0; }
  .sb-teams { padding-right: 10px; }
  .sb-center { padding: 0 10px; gap: 8px; }
  .sb-right  { padding-left: 10px; }
  .sb-score  { font-size: 22px; }
  .sb-abbr   { font-size: 13px; }
}

/* ── Instagram feed (Behold.so widget) ── */
.ig-section { padding: clamp(64px, 10vw, 120px) var(--pad); background: var(--bg-deep); }
.ig-behold-wrap { margin-top: 32px; }
behold-widget { display: block; }

/* ── YouTube channel ── */
.youtube-section {
  padding: clamp(64px, 10vw, 120px) var(--pad);
  background: #070908;
  border-top: 1px solid var(--line);
}
.youtube-head { align-items: flex-end; }
.btn-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff0033;
  border: 1px solid #ff0033;
  color: #fff;
}
.btn-youtube:hover { background: #d9002b; border-color: #d9002b; }
.youtube-player {
  position: relative;
  width: min(100%, 1180px);
  aspect-ratio: 16 / 9;
  margin: 34px auto 0;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 70px rgba(0,0,0,0.4);
}
.youtube-player iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) {
  .youtube-head { align-items: flex-start; gap: 24px; }
  .youtube-player { margin-top: 24px; }
  .btn-youtube { width: 100%; }
}

/* ── Clickable player blocks ── */
.award-clickable {
  cursor: pointer;
  transition: background 0.2s;
}
.award-clickable:hover { background: rgba(240,180,41,0.05); }

/* ── Winner block ── */
.award-winner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.award-photo {
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-deep);
  flex-shrink: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-family: var(--display);
  color: var(--accent);
  position: relative;
}
.award-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.award-photo--lg { width: 60px; height: 60px; font-size: 20px; }
.award-photo--sm { width: 36px; height: 36px; font-size: 13px; }

.award-crown {
  position: absolute;
  top: -8px;
  right: -4px;
  font-size: 14px;
  color: var(--accent);
}

.award-details { flex: 1; min-width: 0; }

.award-player-name {
  font-family: var(--display);
  font-size: clamp(14px, 1.8vw, 18px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.award-player-pos {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  margin: 3px 0 10px;
}

.award-metrics { display: flex; flex-direction: column; gap: 6px; }

.award-metric {
  display: grid;
  grid-template-columns: 32px 1fr 38px;
  align-items: center;
  gap: 6px;
}

.award-metric-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.award-metric-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.award-metric-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.8s var(--ease-out);
}

.award-metric-val {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  text-align: right;
  letter-spacing: 0.04em;
}

/* ── Score badge ── */
.award-score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: var(--r-md);
  padding: 6px 10px;
  min-width: 52px;
  flex-shrink: 0;
}

.award-score-num {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.award-score-denom {
  font-family: var(--mono);
  font-size: 9px;
  opacity: 0.6;
  letter-spacing: 0.06em;
}

/* ── Runners-up ── */
.award-runners {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.award-runner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.award-runner-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 80px;
}

.award-runner .award-player-name {
  font-size: 12px;
}

.award-score-sm {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.award-mini-metrics {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.award-mini-bar {
  display: grid;
  grid-template-columns: 28px 1fr 32px;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* ── Hero Latest News (home page 3-column grid) ─────────────── */
.hn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  margin-top: 8px;
}
@media (max-width: 900px) { .hn-grid { grid-template-columns: 1fr; } }

.hn-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.2s;
  outline: none;
}
.hn-card:hover { background: var(--bg-elev); }

.hn-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hn-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.35s ease;
  display: block;
}
.hn-card:hover .hn-card-img img { transform: scale(1.04); }

.hn-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hn-card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.hn-card-headline {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Mobile letter-spacing — more generous on small screens ── */
@media (max-width: 768px) {
  .hero-headline h1  { letter-spacing: 0.03em; }
  .section-title     { letter-spacing: 0.04em; }
  .news-hero h1      { letter-spacing: 0.03em; }
  .news-feature h2   { letter-spacing: 0.03em; }
  .news-card h3      { letter-spacing: 0.04em; }
  .cal-hero h1       { letter-spacing: 0.04em; }
  .join h2           { letter-spacing: 0.03em; }
  .pink-album-title  { letter-spacing: 0.04em; }
}

/* ── Mobile: standalone CTA buttons go full-width instead of inline-sized ── */
@media (max-width: 768px) {
  .join .row .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   INTERACTIVE FIELD SECTION — scroll-driven animation
============================================================ */
.field-section {
  height: 250vh;
  position: relative;
}
.field-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #061208;
}

/* top+bottom vignette so it blends into surrounding dark sections */
.field-sticky::before,
.field-sticky::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 18%;
  z-index: 6;
  pointer-events: none;
}
.field-sticky::before { top: 0;    background: linear-gradient(to bottom, #061208 0%, transparent 100%); }
.field-sticky::after  { bottom: 0; background: linear-gradient(to top,    #061208 0%, transparent 100%); }

/* progress bar */
.field-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 30;
}
.field-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 80ms linear;
}

/* eyebrow label */
.field-eyebrow {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  pointer-events: none;
}

/* field image */
.field-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  /* smooth camera zoom toward a selected player's --fx/--fy origin */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.field-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  /* starts invisible — JS drives opacity + scale via scroll */
  opacity: 0;
  transform: scale(0.95);
  transform-origin: center center;
  will-change: opacity, transform;
}

/* ── player card (idle marker, replaces old bare circular pin) ── */
.fp-pin {
  position: absolute;
  left: var(--fx);
  top:  var(--fy);
  /* bottom of element anchors to the field coordinate */
  transform: translate(-50%, calc(-100% + 14px)) scale(0.55);
  opacity: 0;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.45s ease,
              transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fp-pin.fp-visible {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}
/* selected card pops forward and stays above the dimmed siblings */
.fp-pin.fp-visible.fp-selected {
  transform: translate(-50%, -100%) scale(1.22);
  z-index: 50;
}
/* siblings fade back while one card is selected/expanded */
.fp-pin.fp-visible.fp-dimmed {
  opacity: 0.3;
  filter: grayscale(0.5);
}

/* idle floating motion — alive but subtle; paused once selected/dimmed */
@keyframes fp-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.fp-pin.fp-visible:not(.fp-selected):not(.fp-dimmed) .fp-card {
  animation: fp-float 3.4s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .fp-pin .fp-card { animation: none !important; }
}

/* ── rectangular card panel — reuses the same glass language as
   .bp-card / .ps-card elsewhere on the site, instead of a bare circle ── */
.fp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 9px;
  background: rgba(6, 16, 9, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240,180,41,0.35);
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.5);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fp-pin:hover .fp-card,
.fp-pin:active .fp-card,
.fp-pin.fp-selected .fp-card {
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(240,180,41,0.5), 0 8px 26px rgba(0,0,0,0.55);
}

/* photo — no circular mask, just the cutout floating with a soft shadow */
.fp-photo {
  width: 58px;
  height: 70px;
  margin: 0 auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.55));
  transition: filter 0.2s;
}
.fp-pin:hover .fp-photo,
.fp-pin:active .fp-photo,
.fp-pin.fp-selected .fp-photo {
  filter: drop-shadow(0 0 10px rgba(240,180,41,0.65)) drop-shadow(0 4px 10px rgba(0,0,0,0.55));
}
.fp-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
}

/* position + name — stacked inside the card, no separate pill background */
.fp-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.fp-pos-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.fp-name {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* ── expanded player preview — first-level interaction layer ──
   Sits OUTSIDE .field-img-wrap (sibling in .field-sticky) so the zoom
   transform on the field never affects it. JS sets top/left inline to
   place it right beside the selected player's card. */
.fp-preview {
  position: absolute;
  /* top/left set inline by JS, anchored next to the selected card */
  top: 0;
  left: 0;
  width: min(280px, 78%);
  max-height: 46%;
  overflow-y: auto;
  background: rgba(6, 16, 9, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: 16px;
  padding: 18px 20px 20px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: scale(0.92) translateY(8px);
  transform-origin: top center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.25s ease,
              left 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.fp-preview.fp-preview-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.fp-preview-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}
.fp-preview-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

.fp-preview-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; margin-bottom: 12px; padding-right: 22px; }
.fp-preview-pos {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}
.fp-preview-name {
  font-family: var(--display);
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

/* ── two-up body: photo (no circle, just the cutout) | stats card ── */
.fp-preview-split {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}
.fp-preview-photo {
  width: 84px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}
.fp-preview-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.fp-preview-stats {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(240,180,41,0.28);
  border-radius: 10px;
  padding: 10px 12px;
}
.fp-preview-stats > div { display: flex; flex-direction: column; gap: 1px; }
.fp-preview-stats .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.fp-preview-stats .v {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent);
}
.fp-preview-cta {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.fp-preview-cta:hover { background: var(--accent); color: #0d1f0f; }

/* CTA */
.field-cta {
  position: absolute;
  bottom: 2.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  text-align: center;
}
.field-cta.fp-cta-visible {
  opacity: 1;
  pointer-events: auto;
}

/* mobile */
@media (max-width: 768px) {
  /* Center the image vertically inside the full-viewport sticky frame */
  .field-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* padding-bottom trick: universally supported aspect-ratio (16:10).
     height:0 + padding-bottom:62.5% = effective height equals 62.5% of width.
     position:relative makes this the containing block for .fp-pin elements. */
  .field-img-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    flex-shrink: 0;
  }
  /* Image fills the padded box via absolute inset */
  .field-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  /* Pin sizes */
  .fp-card       { padding: 6px 8px 7px; gap: 4px; border-radius: 10px; }
  .fp-photo      { width: 38px; height: 48px; }
  .fp-pos-tag    { font-size: 9px; }
  .fp-name       { font-size: 8px; }

  /* Layout */
  .field-eyebrow { font-size: 8px; letter-spacing: 0.14em; }
  .field-cta     { bottom: 1.5rem; }

  /* Expanded preview — narrower so it can sit beside the card without
     covering the whole field on small screens */
  .fp-preview {
    width: min(248px, 72%);
    max-height: 42%;
    padding: 14px 16px 16px;
    border-radius: 14px;
  }
  .fp-preview-photo  { width: 64px; }
  .fp-preview-name   { font-size: 13px; }
  .fp-preview-stats  { padding: 8px 10px; gap: 7px; }
  .fp-preview-stats .v { font-size: 15px; }
  .fp-preview-stats .k { font-size: 8px; }
  .fp-preview-cta    { padding: 9px; font-size: 10px; }
}

/* ── BENCH & PITCHERS SECTION ──────────────────────────────────────── */
.bench-section {
  background: #07100a;
  padding: 2.5rem 1rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bench-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}
.bench-col {
  padding: 0 1.25rem;
  min-width: 0;
}
.bench-col:first-child {
  padding-left: 0;
}
.bench-col:last-child {
  padding-right: 0;
}
.bench-divider {
  background: rgba(255,255,255,0.08);
  width: 1px;
}
.bench-heading {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent, #f5c842);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245,200,66,0.2);
}
.bench-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.bp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease;
}
.bp-card:hover {
  transform: translateY(-2px);
}
.bp-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,200,66,0.35);
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.bp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bp-num {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 9px;
  color: var(--accent, #f5c842);
  font-weight: 700;
  line-height: 1;
}
.bp-name {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 8px;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .bench-col { padding: 0 0.5rem; }
  .bench-col:first-child { padding-left: 0; }
  .bench-col:last-child  { padding-right: 0; }
  .bp-photo { width: 44px; height: 44px; }
  .bench-list { gap: 0.5rem; }
}

/* ── ROSTER CAROUSEL — GSAP seamless infinite loop ───────────────────── */
.roster-carousel-section {
  background: #07100a;
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.rc-eyebrow {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}
.rc-cards {
  position: relative;
  height: 280px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rc-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 240px;
  margin-top: -120px;
  margin-left: -85px;
  border-radius: 14px;
  overflow: hidden;
  cursor: grab;
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
}
.rc-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  background-color: rgba(255,255,255,0.05);
}
/* dark semi-transparent gradient so name/position stay legible on any photo */
.rc-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.rc-card-name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-card-pos {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 768px) {
  .rc-cards { height: 220px; }
  .rc-card  { width: 130px; height: 184px; margin-top: -92px; margin-left: -65px; border-radius: 12px; }
  .rc-card-overlay { padding: 8px 9px 9px; }
  .rc-card-name { font-size: 9px; }
  .rc-card-pos  { font-size: 8px; }
}

/* Final cascade lock for section-specific rules declared above. */
.tag,
.stamp,
.label,
.share-label,
.news-card .meta,
.news-card-meta,
.standings-meta,
.cal-phase-divider,
.cal-suspended-tag,
.field-eyebrow,
.fp-pos-tag,
.rc-eyebrow,
.pp-tag,
.hms-title,
.hms-link,
.hms-next-kicker,
.hms-next-cta {
  font-family: var(--label);
  font-style: italic;
  font-weight: 600;
}
