/* ══════════════════════════════════════════
   GAMES — live, upcoming, must-watch, scoreboard
══════════════════════════════════════════ */

/* ── GAMES ROW ───────────────────────────────────────── */

.games-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: var(--gap-xl);
}

.game-card {
  background: var(--coal-card);
  border: 1px solid var(--coal-border);
  border-radius: var(--r-md);
  padding: 14px;
  cursor: pointer;
  line-height: 1.7;
  transition:
    border-color var(--t-base),
    background var(--t-base),
    transform var(--t-fast);
  animation: fadeUp 0.5s ease both;
}
.game-card:hover {
  border-color: var(--grey-lo);
  background: var(--coal-hover);
  transform: translateY(-2px);
}
.game-card:active {
  transform: scale(0.97);
}

.game-card--live {
  border-color: rgba(255, 59, 59, 0.35);
}
.game-card--live:hover {
  border-color: rgba(255, 59, 59, 0.65);
}

.game-league {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--red-live);
  font-size: var(--fs-pluto);
}

.game-teams {
  margin-bottom: 10px;
}

.game-team {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
}
.game-team-name {
  font-family: var(--font-body);
  font-size: var(--fs-earth);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.game-team-score {
  font-family: var(--font-display);
  font-size: var(--fs-jupiter);
  color: var(--white);
  line-height: 1;
}
.game-team--leading .game-team-score {
  color: var(--accent);
  transition: color var(--t-accent);
}

.game-status {
  font-family: var(--font-mono);
  font-size: var(--fs-moon);
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--coal-border);
  padding-top: 8px;
}
.game-time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-moon);
  color: var(--grey-hi);
  margin-top: 8px;
}
.game-broadcast {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-countdown {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
  min-height: 14px;
  transition: color var(--t-accent);
}
/* Only ⚡ Soon (hot) blinks; plain Soon is static. */
.game-countdown--soon {
  color: var(--grey-hi);
  animation: none;
}
.game-countdown--hot {
  color: var(--red-live);
  animation: pulse 1.5s ease-in-out infinite;
}

/* stagger entrance */
.game-card:nth-child(1) {
  animation-delay: 0.04s;
}
.game-card:nth-child(2) {
  animation-delay: 0.08s;
}
.game-card:nth-child(3) {
  animation-delay: 0.12s;
}
.game-card:nth-child(4) {
  animation-delay: 0.16s;
}
.game-card:nth-child(5) {
  animation-delay: 0.2s;
}
.game-card:nth-child(6) {
  animation-delay: 0.24s;
}

/* ── MUST WATCH (structured one-row plaque) ──────────── */

/* ── LIVE STRIP (true-center matchup, same logic as Must Watch) ──
 * Three cells: [LIVE + league] · [AWY 4 — 1 HOM] · [period]
 * No broadcasters (game page only).
 */
.live-strip {
  margin-bottom: var(--gap-xl, 28px);
}
.live-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.live-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  background: var(--coal-card);
  border: 1px solid rgba(255, 59, 59, 0.28);
  border-radius: var(--r-lg);
  padding: 12px 18px;
  color: inherit;
  text-decoration: none;
  transition:
    border-color var(--t-base),
    background var(--t-base),
    transform var(--t-fast);
  animation: fadeUp 0.4s ease both;
}
.live-bar:hover {
  border-color: rgba(255, 59, 59, 0.55);
  background: var(--coal-hover);
  transform: translateY(-1px);
}
.live-bar:active {
  transform: scale(0.995);
}
.live-bar-side {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.live-bar-side--left {
  justify-content: flex-start;
}
.live-bar-side--right {
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
.live-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-live);
  white-space: nowrap;
  flex-shrink: 0;
}
.live-bar-league {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.live-bar-matchup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  justify-self: center;
}
.live-bar-team {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.live-bar-team--home {
  flex-direction: row;
}
.live-bar-abbr {
  font-family: var(--font-body);
  font-size: var(--fs-earth);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-hi);
}
.live-bar-score {
  font-family: var(--font-display);
  font-size: var(--fs-jupiter);
  color: var(--white);
  line-height: 1;
  min-width: 1.15em;
  text-align: center;
  flex-shrink: 0;
}
.live-bar-team--lead .live-bar-abbr {
  color: var(--white);
}
.live-bar-team--lead .live-bar-score {
  color: var(--accent);
}
.live-bar-sep {
  color: var(--grey-mid);
  font-size: var(--fs-pluto);
  flex-shrink: 0;
  opacity: 0.7;
}
.live-bar-detail {
  font-family: var(--font-mono);
  font-size: var(--fs-moon);
  color: var(--red-live);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Mobile: 3 stacked rows — LIVE+league · matchup · period detail */
@media (max-width: 720px) {
  .live-bar {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 8px;
    column-gap: 0;
    padding: 12px 14px;
    justify-items: center;
  }
  .live-bar-side {
    width: 100%;
    justify-content: center;
  }
  .live-bar-side--left {
    gap: 8px;
  }
  .live-bar-side--right {
    justify-content: center;
    text-align: center;
  }
  .live-bar-badge,
  .live-bar-league {
    font-size: var(--fs-pluto);
  }
  .live-bar-matchup {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  /* Row 2 — teams + score a step up on the type scale */
  .live-bar-abbr {
    font-size: var(--fs-earth);
  }
  .live-bar-score {
    font-size: var(--fs-mars);
  }
  .live-bar-sep {
    font-size: var(--fs-moon);
  }
  .live-bar-detail {
    font-size: var(--fs-pluto);
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  /* Hide empty detail row chrome if no text (still ok if always filled) */
  .live-bar-side--right:empty {
    display: none;
  }
}

/* ── Must Watch red title + structured plaque ────────── */

.must-watch-heading {
  font-family: var(--font-display);
  font-size: var(--fs-saturn);
  letter-spacing: 0.1em;
  color: var(--red-live);
  margin: 0 0 10px;
}
.must-watch-block {
  margin-bottom: 24px;
}
.must-watch {
  display: block;
  background: var(--coal-card);
  border: 1px solid var(--coal-border);
  border-left: 3px solid var(--red-live);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  color: inherit;
  text-decoration: none;
  transition:
    border-color var(--t-base),
    background var(--t-base),
    transform var(--t-fast);
  animation: fadeUp 0.4s ease 0.1s both;
}
.must-watch:hover {
  border-color: var(--grey-lo);
  border-left-color: var(--red-live);
  background: var(--coal-hover);
  transform: translateY(-2px);
}
.must-watch:active {
  transform: scale(0.99);
}

/*
 * True-center matchup: equal side columns (1fr | auto | 1fr).
 * Left = league · Center = matchup · Right = time.
 * No broadcasters (game page only).
 */
.mw-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  width: 100%;
  min-width: 0;
}
.mw-side {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.mw-side--left {
  justify-content: flex-start;
}
.mw-side--right {
  justify-content: flex-end;
}
.mw-league {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--t-accent);
}
.mw-time {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.mw-time-label {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.mw-time-val {
  font-family: var(--font-display);
  font-size: var(--fs-earth);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.mw-matchup {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  justify-self: center;
}
.mw-team {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 14rem;
}
.mw-name {
  font-family: var(--font-display);
  font-size: var(--fs-earth);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}
.mw-name--abbr { display: none; }
.mw-name--full { display: inline; }
.mw-vs {
  flex-shrink: 0;
}
.mw-why {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--coal-border);
  font-family: var(--font-body);
  font-size: var(--fs-moon);
  font-weight: 300;
  color: var(--grey-hi);
  line-height: 1.45;
}

@media (max-width: 720px) {
  .must-watch {
    padding: 12px 14px;
  }
  .mw-row {
    column-gap: 10px;
  }
  .mw-name--full { display: none; }
  .mw-name--abbr { display: inline; }
  .mw-name {
    font-size: var(--fs-mercury);
  }
  .mw-time-val {
    font-size: var(--fs-moon);
  }
  .mw-time-label {
    display: none; /* keep right cell compact → matchup stays centered */
  }
  .mw-matchup {
    gap: 6px;
  }
  .mw-team {
    max-width: 4.5rem;
  }
  .mw-league {
    font-size: var(--fs-pluto);
    max-width: 100%;
  }
}

/* ── Upcoming game card (3 rows, no TV) ───────────────── */

.game-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  text-align: center;
}
.game-league {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-pluto);
}
.game-matchup-line {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--fs-mars);
  letter-spacing: 0.04em;
}
/* Canonical "vs" — lighter/smaller than team names (use site-wide) */
.game-vs {
  font-family: var(--font-body);
  font-size: var(--fs-moon);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  opacity: 0.7;
  color: var(--grey-mid);
}
/* Upcoming: plain Soon (≤2h) = red static · ⚡ Soon (≤1h) = red + blink */
.game-soon {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--red-live);
  text-transform: uppercase;
  animation: none;
}
.game-soon--hot {
  color: var(--red-live);
  animation: pulse 1.5s ease-in-out infinite;
}
/* Today / Jul 12 — muted date chip (same idea as sb-badge--date) */
.game-day {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-hi);
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
}

/* ── SCOREBOARD PAGE ─────────────────────────────────── */

.sb-header {
  margin-bottom: 28px;
}
.sb-title-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-top: 16px;
}
.sb-title {
  font-family: var(--font-display);
  font-size: var(--fs-sun);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.sb-date {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sb-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sb-filter-status,
.sb-filter-leagues {
  display: flex;
  gap: 4px;
}
/* Scoreboard league block: desktop = All + leagues in one row */
.sb-league-filter {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
}
.sb-league-filter .league-filter-all {
  display: flex;
  flex-shrink: 0;
}
.sb-league-filter .sb-filter-leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sb-league-filter .sb-league-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sb-filter-btn,
.sb-league-btn {
  font-family: var(--font-mono);
  font-size: var(--fs-moon);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--coal-border);
  background: transparent;
  color: var(--grey-mid);
  cursor: pointer;
  transition:
    background var(--t-base),
    border-color var(--t-base),
    color var(--t-base);
}
.sb-filter-btn:hover,
.sb-league-btn:hover {
  border-color: var(--grey-lo);
  color: var(--grey-hi);
}
.sb-filter-btn.is-active,
.sb-league-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
  transition:
    background var(--t-accent),
    border-color var(--t-accent);
}
.sb-filter-btn--live.is-active {
  background: var(--red-live);
  border-color: var(--red-live);
  color: #fff;
}

.sb-list {
  background: var(--coal-card);
  border: 1px solid var(--coal-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.sb-game {
  display: grid;
  grid-template-columns: 88px 180px 1fr minmax(140px, 180px);
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--coal-border);
  cursor: pointer;
  transition: background var(--t-base);
}
.sb-status-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.sb-day {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
/* Desktop: full team names; mobile swaps to abbr via media query */
.sb-name-abbr { display: none; }
.sb-name-full { display: inline; }
.sb-game:last-child {
  border-bottom: none;
}
.sb-game:hover {
  background: var(--coal-hover);
}

.sb-badge {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  white-space: nowrap;
  flex-wrap: nowrap;
  line-height: 1.2;
}
.sb-badge--live {
  color: var(--red-live);
  border-color: rgba(255, 59, 59, 0.4);
  background: rgba(255, 59, 59, 0.08);
}
/* Soon ≤2h (plain, red, static) · ⚡ Soon ≤1h (hot, red, blinks) */
.sb-badge--soon {
  color: var(--red-live);
  border-color: rgba(255, 59, 59, 0.35);
  background: rgba(255, 59, 59, 0.06);
  animation: none;
}
.sb-badge--soon-hot {
  color: var(--red-live);
  border-color: rgba(255, 59, 59, 0.4);
  background: rgba(255, 59, 59, 0.08);
  animation: pulse 1.5s ease-in-out infinite;
}
.sb-soon-ico {
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
}
.sb-badge--date {
  color: var(--grey-hi);
  border-color: var(--grey-lo);
  background: transparent;
}
.sb-badge--upcoming {
  color: var(--accent);
  border-color: var(--accent-dim);
  background: var(--accent-glow);
  transition:
    color var(--t-accent),
    border-color var(--t-accent),
    background var(--t-accent);
}
.sb-badge--final {
  color: var(--grey-mid);
  border-color: var(--grey-lo);
  background: transparent;
}

.sb-league {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
/* Compact league abbrev label in league theme accent (tokens from base.css). */
.sb-league-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 2px 6px;
  border-radius: var(--r-sm);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: var(--accent-glow);
}

.sb-matchup {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.sb-team {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.sb-team--right {
  flex-direction: row-reverse;
}
.sb-name {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-mercury);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-hi);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sb-name--lead {
  color: var(--white);
}
.sb-score {
  font-family: var(--font-display);
  font-size: var(--fs-jupiter);
  color: var(--grey-mid);
  line-height: 1;
  min-width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.sb-score--lead {
  color: var(--accent);
  transition: color var(--t-accent);
}
/* same weight/size as .game-vs */
.sb-sep {
  font-family: var(--font-body);
  font-size: var(--fs-moon);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  opacity: 0.7;
  color: var(--grey-mid);
  flex-shrink: 0;
}

.sb-detail {
  font-family: var(--font-mono);
  font-size: var(--fs-moon);
  color: var(--grey-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.sb-detail--live {
  color: var(--red-live);
}

/*
 * Mobile scoreboard: equal side rails so matchup sits in true center
 * [status····] [AWY vs HOM] [····7:05p]
 */
@media (max-width: 900px) {
  .sb-game {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: auto;
    column-gap: 8px;
    row-gap: 0;
    padding: 12px 14px;
    align-items: center;
  }
  .sb-status-col {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
  }
  .sb-league {
    display: none;
  }
  .sb-matchup {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    gap: 6px;
  }
  .sb-detail {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    white-space: nowrap;
    max-width: 100%;
    font-size: var(--fs-pluto);
    letter-spacing: 0.04em;
  }
  .sb-name-full { display: none; }
  .sb-name-abbr { display: inline; }
  .sb-name {
    font-size: var(--fs-moon);
    letter-spacing: 0.02em;
  }
  .sb-score {
    font-size: var(--fs-earth);
    min-width: 1.15em;
  }
  .sb-team {
    gap: 4px;
    flex: 0 1 auto;
  }
  .sb-sep {
    font-size: var(--fs-pluto);
    padding: 0 1px;
  }
  .sb-badge {
    padding: 2px 6px;
    font-size: 0.65rem;
  }
}
@media (max-width: 600px) {
  .sb-game {
    column-gap: 6px;
    padding: 10px 12px;
  }
}

/* Scoreboard mobile: status row, then All full-width, then leagues (no emoji) — same as odds/picks */
@media (max-width: 720px) {
  .sb-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .sb-filter-status {
    width: 100%;
    flex-wrap: wrap;
  }
  .sb-league-filter {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .sb-league-filter .league-filter-all {
    width: 100%;
  }
  .sb-league-filter .league-filter-all-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .sb-league-filter .sb-filter-leagues {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
  }
  .sb-league-filter .sb-league-btn {
    justify-content: center;
    padding: 7px 2px;
    font-size: var(--fs-moon);
    min-width: 0;
  }
  .sb-league-filter .sb-league-emoji {
    display: none;
  }
}

/* Listing league filter: All on its own row (mobile), leagues edge-to-edge */
.league-filter-bar {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.league-filter-all {
  display: flex;
}
.league-filter-all-btn {
  min-width: 4.5rem;
}
.league-filter-bar .sb-filter-leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.league-filter-bar .sb-league-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sb-league-emoji {
  line-height: 1;
}
@media (max-width: 720px) {
  .league-filter-all {
    width: 100%;
  }
  .league-filter-all-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .league-filter-bar .sb-filter-leagues {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
  }
  .league-filter-bar .sb-league-btn {
    justify-content: center;
    padding: 7px 2px;
    font-size: var(--fs-moon);
    min-width: 0;
  }
  .league-filter-bar .sb-league-emoji {
    display: none;
  }
}
