
:root {
  --nc-red: #e11d2e;
  --nc-red-dark: #9f1239;
  --nc-bg: #05070b;
  --nc-card: rgba(12, 16, 24, 0.92);
  --nc-card-2: rgba(20, 26, 38, 0.92);
  --nc-border: rgba(255, 255, 255, 0.12);
  --nc-text: #f8fafc;
  --nc-muted: #a8b3c7;
  --nc-gold: #f5c542;
}

.scoreboard-shell {
  background:
    radial-gradient(circle at top left, rgba(225, 29, 46, 0.24), transparent 30%),
    radial-gradient(circle at bottom right, rgba(245, 197, 66, 0.15), transparent 28%),
    linear-gradient(135deg, #05070b 0%, #111827 52%, #05070b 100%);
  color: var(--nc-text);
  border: 1px solid var(--nc-border);
  border-radius: 28px;
  padding: clamp(1.2rem, 3vw, 2.5rem);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.scoreboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.scoreboard-head,
.scoreboard-controls,
.scoreboard-grid,
.scoreboard-footer-note {
  position: relative;
  z-index: 1;
}

.scoreboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.scoreboard-eyebrow {
  color: var(--nc-gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.scoreboard-title {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 0 rgba(225, 29, 46, 0.55), 0 18px 45px rgba(0,0,0,0.55);
}

.scoreboard-subtitle {
  color: var(--nc-muted);
  max-width: 680px;
  margin-top: 0.8rem;
  line-height: 1.55;
}

.scoreboard-link-button,
.scoreboard-btn {
  border: 1px solid var(--nc-border);
  background: rgba(255,255,255,0.08);
  color: var(--nc-text);
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.scoreboard-link-button:hover,
.scoreboard-btn:hover,
.scoreboard-btn.active {
  background: linear-gradient(135deg, var(--nc-red), var(--nc-red-dark));
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.scoreboard-controls {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.scoreboard-control-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.scoreboard-control-label {
  color: var(--nc-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  min-width: 82px;
}

.scoreboard-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--nc-border);
  color: var(--nc-text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.scoreboard-select option {
  color: #111827;
}

.scoreboard-grid {
  display: grid;
  gap: 1rem;
}

.scoreboard-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.scoreboard-grid.full {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.game-card {
  background: linear-gradient(180deg, var(--nc-card), var(--nc-card-2));
  border: 1px solid var(--nc-border);
  border-radius: 22px;
  padding: 1.1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}

.game-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.14);
  right: -45px;
  top: -55px;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--nc-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.game-teams {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  font-weight: 950;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.game-vs {
  color: var(--nc-red);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  margin: 0.2rem 0;
}

.game-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.game-tag {
  border: 1px solid rgba(245, 197, 66, 0.35);
  color: #ffe7a3;
  background: rgba(245, 197, 66, 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.game-location,
.game-tv {
  position: relative;
  z-index: 1;
  color: var(--nc-muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.game-tv {
  margin-top: 0.45rem;
}

.empty-scoreboard {
  color: var(--nc-muted);
  background: rgba(255,255,255,0.06);
  border: 1px dashed var(--nc-border);
  padding: 1.25rem;
  border-radius: 18px;
  text-align: center;
  font-weight: 800;
}

.scoreboard-footer-note {
  color: var(--nc-muted);
  margin-top: 1rem;
  font-size: 0.85rem;
}

.scoreboard-page-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
}

.scoreboard-page-body {
  background: #05070b;
  color: var(--nc-text);
}

@media (max-width: 720px) {
  .scoreboard-head {
    display: block;
  }

  .scoreboard-head .scoreboard-link-button {
    margin-top: 1rem;
  }

  .scoreboard-btn,
  .scoreboard-link-button,
  .scoreboard-select {
    width: 100%;
  }

  .scoreboard-control-label {
    width: 100%;
  }
}



/* v3.6.2 No Chill full scoreboard page polish */
.no-chill-scoreboard-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(225, 29, 46, 0.28), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 130, 40, 0.18), transparent 30%),
    linear-gradient(135deg, #020409 0%, #0b101b 38%, #111827 58%, #05070b 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.no-chill-scoreboard-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 86%);
  pointer-events: none;
  z-index: 0;
}

.scoreboard-site-header,
.scoreboard-stage {
  position: relative;
  z-index: 1;
}

.scoreboard-site-header {
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}

.scoreboard-header-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: .95rem clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.scoreboard-brand-lockup {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  color: #fff;
  background:
    linear-gradient(135deg, #ef233c, #7f1022),
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.38), transparent 30%);
  box-shadow: 0 10px 30px rgba(225, 29, 46, .35), inset 0 1px 0 rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.18);
}

.scoreboard-brand-lockup strong {
  display: block;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.scoreboard-brand-lockup small {
  display: block;
  color: #a8b3c7;
  font-weight: 700;
  font-size: .76rem;
  margin-top: .1rem;
}

.scoreboard-page-nav {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.scoreboard-page-nav a {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: .62rem .86rem;
  transition: .2s ease;
}

.scoreboard-page-nav a:hover {
  background: linear-gradient(135deg, #ef233c, #9f1239);
  transform: translateY(-1px);
}

.scoreboard-stage {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.scoreboard-hero-panel {
  max-width: 1220px;
  margin: 0 auto 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    radial-gradient(circle at 82% 20%, rgba(245,197,66,.18), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(225,29,46,.28), transparent 35%);
  box-shadow: 0 28px 70px rgba(0,0,0,.36);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 1.25rem;
  align-items: end;
  overflow: hidden;
  position: relative;
}

.scoreboard-hero-panel::after {
  content: "NO CHILL";
  position: absolute;
  right: -1.2rem;
  top: -1.2rem;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 1000;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.035);
  pointer-events: none;
}

.scoreboard-hero-copy,
.scoreboard-hero-stats {
  position: relative;
  z-index: 1;
}

.scoreboard-hero-copy h1 {
  margin: .15rem 0 .75rem;
  font-size: clamp(2.8rem, 8vw, 6.9rem);
  line-height: .84;
  text-transform: uppercase;
  letter-spacing: -.08em;
  color: #fff;
  text-shadow:
    0 5px 0 rgba(225, 29, 46, .62),
    0 22px 55px rgba(0,0,0,.65);
}

.scoreboard-hero-copy p {
  max-width: 780px;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  margin: 0;
}

.scoreboard-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}

.scoreboard-hero-stats div {
  background: rgba(2, 6, 23, .72);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: .95rem .7rem;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.scoreboard-hero-stats strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1;
  color: #fff;
}

.scoreboard-hero-stats span {
  display: block;
  margin-top: .35rem;
  color: #f5c542;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.scoreboard-main-board {
  border-radius: 32px;
  margin-bottom: 2rem;
}

.scoreboard-main-board .scoreboard-title {
  font-size: clamp(2.2rem, 5.6vw, 5rem);
}

.scoreboard-count-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  color: #cbd5e1;
}

.scoreboard-count-strip span {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: .55rem .8rem;
  font-size: .82rem;
  font-weight: 850;
}

.board-source-note {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
}

.no-chill-scoreboard-page .game-card {
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 18px 40px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.no-chill-scoreboard-page .game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225,29,46,.38);
  transition: .2s ease;
}

@media (max-width: 820px) {
  .scoreboard-header-inner,
  .scoreboard-hero-panel {
    grid-template-columns: 1fr;
  }

  .scoreboard-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .scoreboard-page-nav {
    justify-content: flex-start;
  }

  .scoreboard-hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .scoreboard-brand-lockup small {
    display: none;
  }
}

@media (max-width: 560px) {
  .scoreboard-hero-stats {
    grid-template-columns: 1fr;
  }

  .scoreboard-page-nav a {
    flex: 1 1 auto;
    text-align: center;
  }
}



/* v3.6.2.1 Broadcast Scoreboard Refinement */
.scoreboard-v3621 {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.52), rgba(0,0,0,.22) 30%, rgba(0,0,0,.5)),
    url("assets/scoreboard/hbcu-scoreboard-bg-v3-6-2-1.png") center top / cover no-repeat fixed,
    #05070b;
  color: #f8fafc;
  font-family: "Arial Narrow", "Roboto Condensed", "Impact", system-ui, sans-serif;
}

.scoreboard-v3621::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 9% 78%, rgba(225, 29, 46, .28), transparent 26%),
    radial-gradient(circle at 91% 78%, rgba(34, 197, 94, .22), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,.72), transparent 23%, transparent 77%, rgba(0,0,0,.72));
  pointer-events: none;
  z-index: 0;
}

.scoreboard-v3621 .scoreboard-top-nav,
.scoreboard-v3621 .scoreboard-broadcast-stage {
  position: relative;
  z-index: 1;
}

.scoreboard-top-nav {
  height: 74px;
  display: grid;
  grid-template-columns: 250px 1fr 170px;
  align-items: center;
  padding: 0 clamp(1rem, 3vw, 2.4rem);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.56));
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.scoreboard-logo-text {
  color: #fff;
  text-decoration: none;
  display: inline-grid;
  line-height: .9;
  letter-spacing: -.04em;
  transform: skew(-8deg);
  text-transform: uppercase;
  width: max-content;
}

.scoreboard-logo-text span {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 1000;
  text-shadow: 0 3px 16px rgba(0,0,0,.7);
}

.scoreboard-logo-text strong {
  color: #e11d2e;
}

.scoreboard-logo-text small {
  color: #fff;
  letter-spacing: .32em;
  font-weight: 900;
  font-size: .72rem;
  margin-left: .2rem;
}

.scoreboard-main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(.8rem, 2.5vw, 2.1rem);
  text-transform: uppercase;
}

.scoreboard-main-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .05em;
  font-size: .92rem;
  padding: 1.8rem 0 1.4rem;
  border-bottom: 2px solid transparent;
}

.scoreboard-main-nav a.active,
.scoreboard-main-nav a:hover {
  color: #fff;
  border-bottom-color: #e11d2e;
  text-shadow: 0 0 16px rgba(225,29,46,.75);
}

.scoreboard-small-action {
  justify-self: end;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(135deg, rgba(225,29,46,.82), rgba(127,16,34,.92));
  border-radius: 999px;
  padding: .65rem 1rem;
  box-shadow: 0 10px 24px rgba(225,29,46,.25);
}

.scoreboard-broadcast-stage {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1rem, 3vw, 2rem) 2rem;
}

.scoreboard-broadcast-hero {
  text-align: center;
  position: relative;
  padding-top: 1.2rem;
}

.scoreboard-week-jump {
  position: absolute;
  right: 0;
  top: 1.4rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.week-arrow {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: rgba(0,0,0,.55);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.broadcast-week-select {
  min-width: 150px;
  border-radius: 8px !important;
  background: rgba(0,0,0,.68) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.6);
}

.scoreboard-broadcast-hero h1 {
  margin: 1.1rem 0 .45rem;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: .85;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: #d7d7d7;
  text-shadow:
    0 2px 0 #fff,
    0 5px 0 #575757,
    0 10px 0 #111,
    0 24px 45px rgba(0,0,0,.75);
}

.scoreboard-subhead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: .45em;
  font-weight: 950;
  margin-bottom: 1.15rem;
}

.scoreboard-subhead span {
  width: min(190px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
}

.scoreboard-subhead strong::before,
.scoreboard-subhead strong::after {
  content: "★";
  color: #e11d2e;
  letter-spacing: 0;
  margin: 0 .55rem;
}

.scoreboard-badge-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(.8rem, 2vw, 1.35rem);
  margin: 1rem auto 1.1rem;
}

.scoreboard-round-filter {
  appearance: none;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  gap: .35rem;
  color: #fff;
  cursor: pointer;
}

.round-filter-inner {
  width: clamp(82px, 10vw, 122px);
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.35);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(160deg, rgba(20,20,20,.95), rgba(0,0,0,.98));
  box-shadow:
    inset 0 0 0 6px rgba(255,255,255,.04),
    0 16px 30px rgba(0,0,0,.48);
  font-weight: 1000;
  letter-spacing: -.04em;
  font-size: clamp(1rem, 2vw, 1.55rem);
}

.scoreboard-round-filter.active .round-filter-inner,
.scoreboard-round-filter:hover .round-filter-inner {
  border-color: #e11d2e;
  box-shadow:
    inset 0 0 0 6px rgba(255,255,255,.04),
    0 0 0 3px rgba(225,29,46,.35),
    0 18px 34px rgba(225,29,46,.24);
}

.round-filter-inner.hbcu {
  color: #fff;
  text-shadow: 1px 1px 0 #e11d2e, 3px 0 0 rgba(34,197,94,.7);
}

.round-filter-inner.swac {
  color: #ff1f2f;
}

.round-filter-inner.meac {
  color: #facc15;
  text-shadow: 2px 2px 0 #1e40af;
}

.round-filter-inner.other {
  color: #f97316;
  text-shadow: 3px 0 0 rgba(34,197,94,.7);
}

.scoreboard-round-filter small {
  text-transform: uppercase;
  font-weight: 950;
  color: #cbd5e1;
  letter-spacing: .1em;
  display: none;
}

.scoreboard-type-row {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.scoreboard-pill {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(0,0,0,.55);
  color: #fff;
  border-radius: 9px;
  padding: .7rem 1rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.scoreboard-pill.active,
.scoreboard-pill:hover {
  background: linear-gradient(135deg, #e11d2e, #7f1022);
  border-color: rgba(255,255,255,.38);
}

.scoreboard-table-frame {
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: .9rem;
  background:
    linear-gradient(135deg, rgba(225,29,46,.24), transparent 16%, transparent 84%, rgba(34,197,94,.22)),
    rgba(0,0,0,.48);
  box-shadow:
    0 26px 65px rgba(0,0,0,.62),
    inset 0 0 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}

.scoreboard-table-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  font-size: .78rem;
  margin: 0 .55rem .75rem;
}

.scoreboard-table-head {
  display: grid;
  grid-template-columns: 140px minmax(360px, 1fr) 190px 190px;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .07em;
  padding: 0 .75rem .45rem;
}

.scoreboard-table-body {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.48);
}

.scoreboard-row {
  display: grid;
  grid-template-columns: 140px minmax(360px, 1fr) 190px 190px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(7,10,16,.72);
}

.scoreboard-row:nth-child(even) {
  background: rgba(14,18,26,.78);
}

.scoreboard-row:last-child {
  border-bottom: 0;
}

.scoreboard-row > div {
  padding: .72rem .9rem;
}

.scoreboard-date-cell {
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.05;
  color: #d1d5db;
  font-weight: 950;
}

.scoreboard-date-cell span {
  display: block;
  color: #fff;
  font-size: .82rem;
}

.scoreboard-date-cell strong {
  display: block;
  color: #e11d2e;
  font-size: 1rem;
}

.scoreboard-matchup-cell {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 52px minmax(120px, 1fr);
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  font-weight: 950;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: -.03em;
}

.scoreboard-matchup-cell small {
  grid-column: 1 / -1;
  color: #9ca3af;
  font-size: .73rem;
  letter-spacing: .08em;
  margin-top: .12rem;
}

.scoreboard-matchup-cell .versus,
.scoreboard-matchup-cell .at {
  text-align: center;
  color: #e11d2e;
  font-size: .85rem;
  letter-spacing: .05em;
}

.scoreboard-matchup-cell .at {
  color: #22c55e;
}

.scoreboard-time-cell,
.scoreboard-tv-cell {
  border-left: 1px solid rgba(255,255,255,.12);
  text-transform: uppercase;
  font-weight: 950;
  color: #e5e7eb;
  font-size: 1.02rem;
}

.scoreboard-broadcast-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #cbd5e1;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  font-size: .85rem;
  padding: 1rem .4rem 0;
}

.scoreboard-broadcast-footer span:first-child,
.scoreboard-broadcast-footer span:last-child {
  color: #22c55e;
}

.scoreboard-broadcast-footer strong {
  color: #fff;
}

.scoreboard-v3621 .empty-scoreboard {
  margin: .75rem;
}

@media (max-width: 980px) {
  .scoreboard-top-nav {
    grid-template-columns: 1fr;
    height: auto;
    gap: .75rem;
    padding-block: 1rem;
  }

  .scoreboard-main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: .35rem;
  }

  .scoreboard-small-action {
    justify-self: start;
  }

  .scoreboard-week-jump {
    position: static;
    justify-content: center;
    margin: .25rem 0 1rem;
  }

  .scoreboard-table-head {
    display: none;
  }

  .scoreboard-row {
    grid-template-columns: 92px 1fr;
  }

  .scoreboard-time-cell,
  .scoreboard-tv-cell {
    grid-column: 2;
    border-left: 0;
    padding-top: .2rem !important;
    color: #cbd5e1;
    font-size: .9rem;
  }

  .scoreboard-matchup-cell {
    grid-template-columns: 1fr;
    gap: .15rem;
  }

  .scoreboard-matchup-cell .versus,
  .scoreboard-matchup-cell .at {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .scoreboard-broadcast-stage {
    padding-inline: .75rem;
  }

  .scoreboard-broadcast-hero h1 {
    font-size: 2.65rem;
  }

  .scoreboard-subhead {
    letter-spacing: .24em;
    font-size: .8rem;
  }

  .round-filter-inner {
    width: 74px;
  }

  .scoreboard-row {
    grid-template-columns: 78px 1fr;
  }
}



/* v3.6.2.2 Clean Scoreboard Refinement */
.scoreboard-v3622-clean {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.45) 38%, rgba(0,0,0,.78)),
    url("assets/scoreboard/hbcu-scoreboard-bg-v3-6-2-1.png") center top / cover no-repeat fixed,
    #05070b;
  color: #f8fafc;
  font-family: "Arial Narrow", "Roboto Condensed", system-ui, sans-serif;
}

.scoreboard-v3622-clean::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), transparent 20%, transparent 80%, rgba(0,0,0,.72)),
    radial-gradient(circle at 14% 78%, rgba(225, 29, 46, .20), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(34, 197, 94, .18), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.clean-scoreboard-header,
.clean-scoreboard-stage {
  position: relative;
  z-index: 1;
}

.clean-scoreboard-header {
  min-height: 72px;
  padding: .85rem clamp(1rem, 3vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(0,0,0,.72);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
}

.clean-brand {
  color: #fff;
  text-decoration: none;
  display: grid;
  line-height: .92;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.clean-brand span {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 1000;
  letter-spacing: -.04em;
}

.clean-brand strong {
  color: #e11d2e;
}

.clean-brand small {
  font-size: .72rem;
  letter-spacing: .32em;
  font-weight: 900;
}

.clean-nav {
  display: flex;
  gap: clamp(.75rem, 2vw, 1.6rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.clean-nav a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .86rem;
  border-bottom: 2px solid transparent;
  padding: .35rem 0;
}

.clean-nav a.active,
.clean-nav a:hover {
  color: #fff;
  border-bottom-color: #e11d2e;
}

.clean-scoreboard-stage {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) 2rem;
}

.clean-scoreboard-title {
  text-align: center;
  margin-bottom: 1.6rem;
}

.clean-scoreboard-title p {
  margin: 0 0 .45rem;
  color: #f5c542;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 950;
  font-size: .78rem;
}

.clean-scoreboard-title h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.055em;
  color: #e5e7eb;
  text-shadow:
    0 2px 0 #fff,
    0 5px 0 #4b5563,
    0 18px 44px rgba(0,0,0,.72);
}

.clean-scoreboard-title span {
  display: block;
  margin-top: .6rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: .82rem;
}

.clean-scoreboard-panel {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(225,29,46,.18), transparent 18%, transparent 82%, rgba(34,197,94,.16)),
    rgba(0,0,0,.58);
  box-shadow: 0 30px 70px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  padding: clamp(.85rem, 2vw, 1.25rem);
}

.clean-toolbar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  align-items: center;
  margin-bottom: .85rem;
}

.clean-week-control {
  display: flex;
  gap: .4rem;
  align-items: center;
}

.clean-arrow {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.58);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.clean-week-select {
  min-width: 160px;
  border-radius: 8px !important;
  background: rgba(0,0,0,.68) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
}

.clean-filter-group {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .5rem;
}

.clean-type-group {
  grid-column: 1 / -1;
  justify-content: center;
  padding-top: .1rem;
}

.clean-filter {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 9px;
  padding: .65rem .95rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  min-width: 82px;
}

.clean-filter.active,
.clean-filter:hover {
  background: linear-gradient(135deg, #e11d2e, #7f1022);
  border-color: rgba(255,255,255,.35);
}

.clean-type-group .clean-filter {
  font-size: .78rem;
  padding: .55rem .75rem;
  min-width: auto;
}

.clean-count-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #cbd5e1;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  padding: .4rem .2rem .8rem;
}

.clean-table-head {
  display: grid;
  grid-template-columns: 116px minmax(320px, 1fr) 160px 170px;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  font-size: .78rem;
  padding: .55rem .75rem;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

.clean-table-body {
  display: grid;
  border: 1px solid rgba(255,255,255,.12);
  border-top: 0;
}

.scoreboard-v3622-clean .scoreboard-row {
  display: grid;
  grid-template-columns: 116px minmax(320px, 1fr) 160px 170px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,16,.78);
}

.scoreboard-v3622-clean .scoreboard-row:nth-child(even) {
  background: rgba(15,20,29,.76);
}

.scoreboard-v3622-clean .scoreboard-row:last-child {
  border-bottom: 0;
}

.scoreboard-v3622-clean .scoreboard-row > div {
  padding: .68rem .8rem;
}

.scoreboard-v3622-clean .scoreboard-date-cell {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
  text-transform: uppercase;
  line-height: 1.05;
  font-weight: 950;
}

.scoreboard-v3622-clean .scoreboard-date-cell span {
  display: block;
  color: #e5e7eb;
  font-size: .76rem;
}

.scoreboard-v3622-clean .scoreboard-date-cell strong {
  display: block;
  color: #e11d2e;
  font-size: .92rem;
}

.scoreboard-v3622-clean .scoreboard-matchup-cell {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) 42px minmax(110px, 1fr);
  gap: .45rem;
  align-items: center;
  text-transform: uppercase;
  font-weight: 950;
  font-size: clamp(.98rem, 1.75vw, 1.28rem);
  letter-spacing: -.02em;
}

.scoreboard-v3622-clean .scoreboard-matchup-cell small {
  grid-column: 1 / -1;
  color: #9ca3af;
  font-size: .68rem;
  letter-spacing: .08em;
  margin-top: .1rem;
}

.scoreboard-v3622-clean .scoreboard-matchup-cell .versus {
  color: #e11d2e;
  text-align: center;
  font-size: .78rem;
}

.scoreboard-v3622-clean .scoreboard-matchup-cell .at {
  color: #22c55e;
  text-align: center;
  font-size: .78rem;
}

.scoreboard-v3622-clean .scoreboard-time-cell,
.scoreboard-v3622-clean .scoreboard-tv-cell {
  border-left: 1px solid rgba(255,255,255,.10);
  text-transform: uppercase;
  font-weight: 950;
  color: #e5e7eb;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .clean-scoreboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-nav {
    justify-content: flex-start;
  }

  .clean-toolbar {
    grid-template-columns: 1fr;
  }

  .clean-filter-group {
    justify-content: flex-start;
  }

  .clean-table-head {
    display: none;
  }

  .scoreboard-v3622-clean .scoreboard-row {
    grid-template-columns: 86px 1fr;
    min-height: 78px;
  }

  .scoreboard-v3622-clean .scoreboard-time-cell,
  .scoreboard-v3622-clean .scoreboard-tv-cell {
    grid-column: 2;
    border-left: 0;
    padding-top: .1rem;
    font-size: .84rem;
    color: #cbd5e1;
  }

  .scoreboard-v3622-clean .scoreboard-matchup-cell {
    grid-template-columns: 1fr;
    gap: .08rem;
  }

  .scoreboard-v3622-clean .scoreboard-matchup-cell .versus,
  .scoreboard-v3622-clean .scoreboard-matchup-cell .at {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .clean-scoreboard-title h1 {
    font-size: 2.65rem;
  }

  .clean-filter {
    flex: 1 1 auto;
  }

  .clean-count-line {
    flex-direction: column;
    gap: .35rem;
  }
}


/* v3.6.2.3 custom background + logos */
.scoreboard-v3623-custom {
  background:
    linear-gradient(180deg, rgba(1,4,9,.54), rgba(2,5,10,.68)),
    url("assets/scoreboard/scoreboard-bg-v3-6-2-3.png") center top / cover no-repeat fixed,
    #03060b;
}

.scoreboard-v3623-custom::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.56), rgba(0,0,0,.12) 18%, rgba(0,0,0,.12) 82%, rgba(0,0,0,.56)),
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.35));
  z-index: 0;
}

.scoreboard-v3623-custom .clean-scoreboard-header,
.scoreboard-v3623-custom .clean-scoreboard-stage {
  position: relative;
  z-index: 1;
}

.scoreboard-v3623-custom .custom-scoreboard-header {
  background: rgba(3, 6, 11, .66);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.scoreboard-v3623-custom .custom-brand-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  transform: none;
}

.scoreboard-v3623-custom .custom-brand-copy {
  display: grid;
  line-height: .92;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.scoreboard-v3623-custom .custom-brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.5));
}

.scoreboard-v3623-custom .custom-scoreboard-title {
  display: grid;
  grid-template-columns: 136px 1fr;
  align-items: center;
  gap: 1.4rem;
  text-align: left;
  margin-bottom: 1.8rem;
}

.scoreboard-v3623-custom .custom-scoreboard-seal {
  width: 136px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 36px rgba(0,0,0,.58));
}

.scoreboard-v3623-custom .custom-title-copy p {
  margin-bottom: .45rem;
}

.scoreboard-v3623-custom .custom-title-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 5.7rem);
  line-height: .88;
}

.scoreboard-v3623-custom .custom-title-copy span[data-current-week-label] {
  display: inline-block;
  margin-top: .65rem;
  padding: .45rem .8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

.scoreboard-v3623-custom .custom-scoreboard-panel {
  background:
    linear-gradient(180deg, rgba(7,11,18,.90), rgba(3,7,12,.88));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 26px 70px rgba(0,0,0,.58);
}

.scoreboard-v3623-custom .clean-filter.active,
.scoreboard-v3623-custom .clean-filter:hover {
  background: linear-gradient(135deg, #b91c1c, #7f1022);
}

@media (max-width: 760px) {
  .scoreboard-v3623-custom .custom-scoreboard-title {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1rem;
  }

  .scoreboard-v3623-custom .custom-scoreboard-seal {
    width: 112px;
  }
}


/* v3.6.2.4 top-left logo cleanup */
.scoreboard-v3623-custom .custom-brand-wrap.logo-only {
  transform: none;
  display: inline-flex;
  align-items: center;
  width: auto;
}

.scoreboard-v3623-custom .custom-brand-wrap.logo-only .custom-brand-logo {
  width: 72px;
  height: 72px;
}

@media (max-width: 760px) {
  .scoreboard-v3623-custom .custom-brand-wrap.logo-only .custom-brand-logo {
    width: 58px;
    height: 58px;
  }
}



/* v3.7.1 Division I / Division II toggle */
.scoreboard-v371-division-toggle .division-toggle-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: .65rem;
  margin-bottom: 1rem;
}

.scoreboard-v371-division-toggle .division-toggle {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 14px;
  padding: .85rem 1rem;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.scoreboard-v371-division-toggle .division-toggle strong {
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .06em;
}

.scoreboard-v371-division-toggle .division-toggle span {
  display: block;
  margin-top: .2rem;
  color: #cbd5e1;
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .08em;
}

.scoreboard-v371-division-toggle .division-toggle.active,
.scoreboard-v371-division-toggle .division-toggle:hover {
  background: linear-gradient(135deg, rgba(185, 28, 28, .95), rgba(127, 16, 34, .95));
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 14px 28px rgba(185, 28, 28, .18), inset 0 1px 0 rgba(255,255,255,.12);
}

.scoreboard-v371-division-toggle .division-toggle.active span,
.scoreboard-v371-division-toggle .division-toggle:hover span {
  color: #fff;
}

@media (max-width: 620px) {
  .scoreboard-v371-division-toggle .division-toggle-wrap {
    grid-template-columns: 1fr;
  }
}


/* v3.7.1.1 Homepage scoreboard background aesthetic match */
.scoreboard-home-section {
  position: relative;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.scoreboard-home-section .scoreboard-shell {
  background:
    radial-gradient(circle at top left, rgba(225, 29, 46, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(227, 101, 47, 0.10), transparent 30%),
    linear-gradient(rgba(7, 7, 8, 0.84), rgba(10, 10, 12, 0.90));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.38);
  backdrop-filter: blur(3px);
}

.scoreboard-home-section .scoreboard-shell::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.65;
}

.scoreboard-home-section .scoreboard-head,
.scoreboard-home-section .scoreboard-controls,
.scoreboard-home-section .scoreboard-grid,
.scoreboard-home-section .scoreboard-footer-note {
  position: relative;
  z-index: 1;
}


/* v3.7.1.2 Homepage scoreboard translucent photo background */
.scoreboard-home-section .scoreboard-shell {
  background-image:
    linear-gradient(rgba(4, 6, 10, 0.76), rgba(4, 6, 10, 0.82)),
    url('assets/homepage-scoreboard-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  backdrop-filter: blur(2px);
}

.scoreboard-home-section .scoreboard-shell::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
}


/* v3.7.1.3 Homepage scoreboard title + paragraph polish */
.scoreboard-home-section .scoreboard-title {
  font-family: Impact, "Arial Black", "Roboto Condensed", system-ui, sans-serif;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
  color: #f8fafc;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255,255,255,0.18),
    0 5px 0 rgba(127, 16, 34, 0.88),
    0 18px 42px rgba(0,0,0,0.65);
}

.scoreboard-home-section .scoreboard-subtitle {
  max-width: none;
  width: 100%;
  line-height: 1.62;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.scoreboard-home-section .scoreboard-head > div {
  flex: 1 1 auto;
  max-width: none;
}

@media (max-width: 768px) {
  .scoreboard-home-section .scoreboard-title {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }
}


/* v3.7.1.4 Homepage scoreboard title font correction */
.scoreboard-home-section .scoreboard-title {
  font-family: "Arial Narrow", "Roboto Condensed", "Oswald", system-ui, sans-serif;
  font-stretch: condensed;
  font-weight: 1000;
  font-size: clamp(2.45rem, 5.2vw, 4.75rem);
  letter-spacing: 0.015em;
  line-height: 0.92;
  color: #e5e7eb;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.45),
    0 3px 0 rgba(70, 76, 86, 0.85),
    0 8px 18px rgba(0,0,0,0.72);
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
}

.scoreboard-home-section .scoreboard-title::after {
  content: "";
  display: block;
  width: min(320px, 70%);
  height: 3px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, var(--nc-red), rgba(255,255,255,0.65), transparent);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(225,29,46,0.28);
}

@media (max-width: 768px) {
  .scoreboard-home-section .scoreboard-title {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
    letter-spacing: 0.01em;
  }
}


/* v3.7.7 Homepage Division I / Division II toggle */
.homepage-division-toggle {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.65rem;
  margin: 0 0 1rem;
  max-width: 520px;
}

.homepage-division-btn {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.075);
  color: var(--nc-text);
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.homepage-division-btn strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.9rem;
  font-weight: 1000;
}

.homepage-division-btn span {
  display: block;
  margin-top: 0.18rem;
  color: var(--nc-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.homepage-division-btn.active,
.homepage-division-btn:hover {
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.95), rgba(127, 16, 34, 0.95));
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-1px);
}

.homepage-division-btn.active span,
.homepage-division-btn:hover span {
  color: #fff;
}

@media (max-width: 560px) {
  .homepage-division-toggle {
    grid-template-columns: 1fr;
    max-width: none;
  }
}


/* v3.7.7.1 Homepage scoreboard HBCU Hour branding */
.scoreboard-home-section .scoreboard-head-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.scoreboard-home-section .homepage-scoreboard-logo {
  width: clamp(82px, 10vw, 118px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.4));
}

.scoreboard-home-section .scoreboard-head-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.scoreboard-home-section .scoreboard-eyebrow {
  margin-bottom: 0.45rem;
}

@media (max-width: 768px) {
  .scoreboard-home-section .scoreboard-head-brand {
    align-items: flex-start;
  }

  .scoreboard-home-section .homepage-scoreboard-logo {
    width: 78px;
  }
}

@media (max-width: 560px) {
  .scoreboard-home-section .scoreboard-head-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* v3.7.7.4 image button scoreboard filters */
.toolbar-section-label {
  color: #f5c542;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 950;
  margin: .15rem 0 .7rem;
}

.toolbar-section-label-home {
  margin-top: .2rem;
}

.filter-stack {
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
}

.image-toggle-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.image-toggle-btn,
.image-filter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-width: 132px;
  min-height: 138px;
  padding: .8rem .9rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.image-toggle-btn:hover,
.image-toggle-btn.active,
.image-filter:hover,
.image-filter.active {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 18px 30px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(177, 24, 35, .26), rgba(255,255,255,.06));
}

.toggle-button-art,
.filter-art {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.38));
}

.image-toggle-btn .button-count {
  display: block;
  color: #cbd5e1;
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}

.image-toggle-btn.active .button-count,
.image-toggle-btn:hover .button-count {
  color: #fff;
}

.icon-filter-group {
  justify-content: flex-start;
  gap: .8rem;
}

.conference-filter {
  min-width: 118px;
  min-height: 118px;
}

.clean-type-group.icon-filter-group .image-filter {
  min-width: 118px;
  min-height: 118px;
  padding: .7rem;
}

.clean-type-group.icon-filter-group {
  justify-content: flex-start;
  padding-top: 0;
}

.homepage-division-toggle {
  max-width: none;
}

.homepage-division-btn {
  text-align: center;
}

.homepage-division-btn .toggle-button-art {
  width: 82px;
  height: 82px;
}

.homepage-division-btn .button-count {
  margin-top: 0;
}

.scoreboard-v371-division-toggle .division-toggle-wrap {
  grid-template-columns: none;
  margin-bottom: 1.2rem;
}

.scoreboard-v371-division-toggle .division-toggle {
  text-align: center;
}

.clean-toolbar {
  align-items: start;
}

.clean-filter.image-filter {
  min-width: 118px;
}

@media (max-width: 760px) {
  .image-toggle-btn,
  .image-filter,
  .conference-filter,
  .clean-type-group.icon-filter-group .image-filter {
    min-width: 96px;
    min-height: 96px;
    padding: .55rem;
  }

  .toggle-button-art,
  .filter-art,
  .homepage-division-btn .toggle-button-art {
    width: 64px;
    height: 64px;
  }

  .button-count {
    font-size: .68rem;
  }
}

@media (max-width: 560px) {
  .filter-stack {
    gap: .85rem;
  }

  .image-toggle-wrap,
  .icon-filter-group {
    gap: .6rem;
  }
}


/* v3.7.7.5 Conference image button visibility fix */
.conference-fallback-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0 0 .75rem;
  opacity: .95;
}

.conference-fallback-row img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.38));
}

.image-filter .filter-label {
  display: block;
  color: #e5e7eb;
  font-size: .68rem;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  margin-top: .2rem;
}

.image-filter.active .filter-label,
.image-filter:hover .filter-label {
  color: #ffffff;
}

.conference-filter {
  position: relative;
}

.conference-filter.active::after,
.image-filter.active::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(245, 197, 66, .72);
  border-radius: 16px;
  pointer-events: none;
  box-shadow: 0 0 16px rgba(245, 197, 66, .18);
}


/* v3.7.7.6 Remove division game-count labels */
.image-toggle-btn .button-count,
[data-division-summary] {
  display: none !important;
}

.image-toggle-btn {
  gap: 0;
}

.homepage-division-btn .toggle-button-art,
.division-toggle .toggle-button-art {
  margin: 0 auto;
}


/* v3.7.7.7 remove redundant conference fallback row */
.conference-fallback-row {
  display: none !important;
}


/* v3.7.7.8 Cross-conference filtering display */
.conference-tags {
  margin-top: .75rem;
  margin-bottom: .75rem;
}

.scoreboard-matchup-cell small {
  color: #f5c542 !important;
}


/* v3.7.7.9 restore games and keep cross-conference display */
.conference-tags {
  margin-top: .75rem;
  margin-bottom: .75rem;
}

.scoreboard-matchup-cell small {
  color: #f5c542 !important;
}

.image-filter .filter-label {
  display: block;
  color: #e5e7eb;
  font-size: .68rem;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  margin-top: .2rem;
}

.image-filter.active .filter-label,
.image-filter:hover .filter-label {
  color: #ffffff;
}


/* v3.7.7.11 team logos + refined scoreboard panel */
.scoreboard-v3623-custom .custom-scoreboard-panel,
.scoreboard-home-section .scoreboard-shell {
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.70), rgba(2, 6, 12, 0.78)) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow:
    0 20px 46px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
  backdrop-filter: blur(6px);
}

.scoreboard-v3623-custom .custom-scoreboard-panel::before,
.scoreboard-home-section .scoreboard-shell::before {
  opacity: .22 !important;
}

.scoreboard-v3622-clean .scoreboard-matchup-cell {
  align-items: center;
}

.team {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}

.team-home {
  justify-content: flex-start;
}

.team-away {
  justify-content: flex-end;
}

.team-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.team-logo,
.team-logo-fallback {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 16px rgba(0,0,0,.30);
}

.team-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.game-teams .team {
  justify-content: center;
  text-align: center;
}

.game-teams .team-logo,
.game-teams .team-logo-fallback {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

@media (max-width: 900px) {
  .scoreboard-v3622-clean .scoreboard-matchup-cell {
    grid-template-columns: 1fr;
  }

  .team-away,
  .team-home {
    justify-content: flex-start;
  }
}


/* v3.7.7.12 conference normalizer + generic event label cleanup */


/* v3.7.7.13 proper DI/DII logos from logo packages */
.team {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}

.team-home {
  justify-content: flex-start;
}

.team-away {
  justify-content: flex-end;
}

.team-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.team-logo,
.team-logo-fallback {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 8px 16px rgba(0,0,0,.28);
}

.team-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8fafc;
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.game-teams .team {
  justify-content: center;
  text-align: center;
}

.game-teams .team-logo,
.game-teams .team-logo-fallback {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

@media (max-width: 900px) {
  .team-away,
  .team-home {
    justify-content: flex-start;
  }
}

/* v3.7.8 Game Center foundation */
.clickable-game-row {
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.clickable-game-row:hover,
.clickable-game-row:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 197, 66, .48) !important;
  box-shadow: 0 16px 32px rgba(0,0,0,.36), 0 0 0 1px rgba(245,197,66,.16) !important;
  outline: none;
}

.clickable-game-row::before {
  content: "Game Center";
  position: absolute;
  right: .75rem;
  top: .65rem;
  color: #f5c542;
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: .18s ease;
  pointer-events: none;
}

.clickable-game-row:hover::before,
.clickable-game-row:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.game-center-open {
  overflow: hidden;
}

.game-center-overlay[hidden] {
  display: none !important;
}

.game-center-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}

.game-center-panel {
  position: relative;
  width: min(760px, 100%);
  height: 100%;
  overflow-y: auto;
  color: #f8fafc;
  background:
    radial-gradient(circle at 15% 0%, rgba(225,29,46,.26), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(245,197,66,.14), transparent 30%),
    linear-gradient(180deg, rgba(10,14,22,.98), rgba(2,6,12,.98));
  border-left: 1px solid rgba(255,255,255,.16);
  box-shadow: -28px 0 80px rgba(0,0,0,.55);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.game-center-panel::before {
  content: "";
  position: fixed;
  inset: 0 0 0 auto;
  width: min(760px, 100%);
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: .42;
}

.game-center-close {
  position: sticky;
  top: .5rem;
  margin-left: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}

.game-center-close:hover,
.game-center-close:focus-visible {
  background: linear-gradient(135deg, #e11d2e, #9f1239);
  outline: none;
}

.game-center-kicker,
.game-center-section-label,
.game-center-source {
  color: #f5c542;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 950;
}

.game-center-header,
.game-center-meta-grid,
.game-center-live-box,
.game-center-stats-grid,
.game-center-footnote {
  position: relative;
  z-index: 1;
}

.game-center-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.game-center-team .team {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: .55rem;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.05;
}

.game-center-team .team-logo,
.game-center-team .team-logo-fallback {
  width: 68px;
  height: 68px;
  flex-basis: 68px;
}

.game-center-score-block {
  min-width: 108px;
  text-align: center;
}

.game-center-status {
  color: #f8fafc;
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.game-center-vs {
  margin-top: .35rem;
  color: #e11d2e;
  font-size: 1.4rem;
  font-weight: 1000;
  letter-spacing: .04em;
  text-shadow: 0 8px 18px rgba(0,0,0,.45);
}

.game-center-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-bottom: 1rem;
}

.game-center-meta-grid > div,
.game-center-live-box,
.game-center-stat-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.game-center-meta-grid > div {
  padding: .85rem;
}

.game-center-meta-grid span,
.game-center-stat-list span {
  display: block;
  color: #a8b3c7;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 850;
}

.game-center-meta-grid strong,
.game-center-stat-list strong {
  display: block;
  margin-top: .25rem;
  color: #fff;
  font-weight: 950;
}

.game-center-live-box {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.game-center-live-box h2 {
  margin: .25rem 0 0;
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.game-center-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.game-center-link,
.game-center-unavailable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .75rem 1rem;
  font-weight: 950;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.16);
}

.game-center-link {
  color: #f8fafc;
  background: rgba(255,255,255,.08);
}

.game-center-link.primary,
.game-center-link:hover,
.game-center-link:focus-visible {
  background: linear-gradient(135deg, #e11d2e, #9f1239);
  color: #fff;
  outline: none;
}

.game-center-unavailable {
  color: #a8b3c7;
  background: rgba(255,255,255,.045);
}

.game-center-source {
  display: block;
  color: #a8b3c7;
  letter-spacing: .08em;
}

.game-center-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.game-center-stat-card {
  padding: 1rem;
}

.game-center-stat-card h3 {
  margin: 0 0 .75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.game-center-stat-list {
  display: grid;
  gap: .55rem;
}

.game-center-stat-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.game-center-stat-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.game-center-stat-list strong {
  color: #f5c542;
  margin-top: 0;
  white-space: nowrap;
}

.game-center-footnote {
  color: #a8b3c7;
  line-height: 1.55;
  margin: 1rem 0 0;
}

@media (max-width: 700px) {
  .game-center-overlay {
    justify-content: center;
  }

  .game-center-panel {
    border-left: 0;
    width: 100%;
  }

  .game-center-header,
  .game-center-meta-grid,
  .game-center-stats-grid {
    grid-template-columns: 1fr;
  }

  .game-center-score-block {
    order: -1;
  }

  .game-center-live-box h2 {
    font-size: 1.65rem;
  }
}

.scoreboard-row.clickable-game-row {
  position: relative;
}

/* v3.7.8.2 Game Center Styling Pass */
:root {
  --ncs-steel-0: #03050a;
  --ncs-steel-1: #080c12;
  --ncs-steel-2: #111723;
  --ncs-red: #e11d2e;
  --ncs-red-dark: #7f1020;
  --ncs-orange: #f97316;
  --ncs-gold: #f5c542;
  --ncs-ice: #f8fafc;
  --ncs-muted: #a8b3c7;
}

.clickable-game-row {
  isolation: isolate;
}

.clickable-game-row:hover,
.clickable-game-row:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, .58) !important;
  box-shadow:
    0 18px 42px rgba(0,0,0,.44),
    0 0 0 1px rgba(245,197,66,.18),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.clickable-game-row::before {
  content: "Open Game Center";
  right: .7rem;
  top: .55rem;
  padding: .28rem .52rem;
  border: 1px solid rgba(245,197,66,.28);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(225,29,46,.85), rgba(249,115,22,.75));
  box-shadow: 0 10px 24px rgba(225,29,46,.28);
  font-size: .56rem;
}

.game-center-overlay {
  background:
    radial-gradient(circle at 74% 8%, rgba(249, 115, 22, .2), transparent 24%),
    radial-gradient(circle at 88% 36%, rgba(225, 29, 46, .14), transparent 30%),
    rgba(0,0,0,.78);
  backdrop-filter: blur(10px) saturate(1.15);
}

.game-center-panel {
  width: min(820px, 100%);
  background:
    radial-gradient(circle at 18% 2%, rgba(249,115,22,.22), transparent 29%),
    radial-gradient(circle at 92% 7%, rgba(225,29,46,.26), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 18%),
    linear-gradient(180deg, rgba(16,22,33,.98), rgba(3,5,10,.99) 52%, rgba(1,3,8,.99));
  border-left: 1px solid rgba(249,115,22,.38);
  box-shadow:
    -34px 0 90px rgba(0,0,0,.68),
    -1px 0 0 rgba(245,197,66,.14),
    inset 1px 0 0 rgba(255,255,255,.06);
  padding: clamp(1rem, 3vw, 2.2rem);
}

.game-center-panel::before {
  width: min(820px, 100%);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 0%, rgba(249,115,22,.18), transparent 38%);
  background-size: 42px 42px, 42px 42px, auto;
  opacity: .5;
}

.game-center-panel::after {
  content: "";
  position: fixed;
  right: 0;
  top: 0;
  width: min(820px, 100%);
  height: 5px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--ncs-red), var(--ncs-orange), var(--ncs-gold));
  box-shadow: 0 0 30px rgba(249,115,22,.65);
  z-index: 1;
}

.game-center-close {
  background: rgba(3,5,10,.76);
  border-color: rgba(249,115,22,.36);
  box-shadow:
    0 16px 32px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.game-center-close:hover,
.game-center-close:focus-visible {
  background: linear-gradient(135deg, var(--ncs-red), var(--ncs-orange));
  box-shadow: 0 0 30px rgba(225,29,46,.35);
}

.game-center-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .2rem;
  padding: .42rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(245,197,66,.26);
  background: rgba(0,0,0,.26);
  color: var(--ncs-gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.game-center-kicker::before {
  content: "";
  width: .58rem;
  height: .58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ncs-red), var(--ncs-orange));
  box-shadow: 0 0 18px rgba(249,115,22,.8);
}

.game-center-header {
  margin: 1rem 0 1.1rem;
  padding: clamp(.95rem, 2vw, 1.25rem);
  border: 1px solid rgba(249,115,22,.26);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(225,29,46,.12), transparent 21%, transparent 79%, rgba(249,115,22,.13)),
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow:
    0 20px 44px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
}

.game-center-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245,197,66,.18), transparent 22%, transparent 78%, rgba(225,29,46,.18)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.12), transparent 38%);
  opacity: .72;
}

.game-center-team .team {
  position: relative;
  z-index: 1;
  letter-spacing: -.03em;
}

.game-center-team .team-logo,
.game-center-team .team-logo-fallback {
  width: clamp(74px, 11vw, 94px);
  height: clamp(74px, 11vw, 94px);
  flex-basis: clamp(74px, 11vw, 94px);
  padding: .42rem;
  border: 1px solid rgba(255,255,255,.2);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.16), rgba(255,255,255,.04) 58%, rgba(0,0,0,.2)),
    rgba(255,255,255,.06);
  box-shadow:
    0 18px 34px rgba(0,0,0,.34),
    0 0 0 4px rgba(255,255,255,.035),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.game-center-score-block {
  position: relative;
  z-index: 1;
  min-width: 132px;
  padding: .8rem .85rem;
  border-radius: 20px;
  border: 1px solid rgba(245,197,66,.24);
  background:
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.18)),
    radial-gradient(circle at 50% 0%, rgba(249,115,22,.24), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.game-center-status {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,.56);
}

.game-center-vs {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  text-shadow:
    0 6px 20px rgba(0,0,0,.7),
    0 0 18px rgba(249,115,22,.55);
}

.game-center-meta-grid > div,
.game-center-live-box,
.game-center-stat-card {
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
    rgba(5,8,14,.72);
  box-shadow:
    0 14px 30px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.game-center-meta-grid > div {
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.game-center-meta-grid > div::before,
.game-center-stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ncs-red), var(--ncs-orange), transparent);
  opacity: .9;
}

.game-center-meta-grid span,
.game-center-stat-list span {
  color: #b6c0d2;
}

.game-center-meta-grid strong,
.game-center-stat-list strong {
  color: #fff;
}

.game-center-live-box {
  border-color: rgba(249,115,22,.24);
  border-radius: 24px;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(225,29,46,.16), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(245,197,66,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.game-center-live-box h2 {
  max-width: 680px;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.game-center-section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0;
  color: var(--ncs-gold);
}

.game-center-section-label::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ncs-red), var(--ncs-orange), transparent);
}

.game-center-links {
  gap: .7rem;
}

.game-center-link,
.game-center-unavailable {
  min-height: 44px;
  padding: .78rem 1.05rem;
  letter-spacing: .035em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.game-center-link {
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.14);
}

.game-center-link.primary {
  background: linear-gradient(135deg, var(--ncs-red), var(--ncs-orange));
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 14px 28px rgba(225,29,46,.28),
    0 0 24px rgba(249,115,22,.16),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.game-center-link:hover,
.game-center-link:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--ncs-red), var(--ncs-orange));
  box-shadow:
    0 16px 30px rgba(225,29,46,.32),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.game-center-source {
  color: #9eabba;
  line-height: 1.45;
}

.game-center-stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.game-center-stat-card h3 {
  position: relative;
  padding-left: .15rem;
  color: #fff;
}

.game-center-stat-list > div {
  border-bottom-color: rgba(255,255,255,.08);
}

.game-center-stat-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: .2rem .48rem;
  border-radius: 999px;
  color: var(--ncs-gold);
  background: rgba(245,197,66,.08);
  border: 1px solid rgba(245,197,66,.14);
}

.game-center-footnote {
  padding: .85rem 1rem;
  border-left: 3px solid rgba(249,115,22,.78);
  border-radius: 14px;
  background: rgba(0,0,0,.22);
}

@media (max-width: 700px) {
  .clickable-game-row::before {
    display: none;
  }

  .game-center-panel {
    padding: 1rem;
  }

  .game-center-header {
    border-radius: 22px;
  }

  .game-center-team .team-logo,
  .game-center-team .team-logo-fallback {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .game-center-score-block {
    width: 100%;
    min-width: 0;
  }

  .game-center-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .game-center-link,
  .game-center-unavailable {
    width: 100%;
  }
}

/* v3.7.8.2.2 — HBCU Hour Game Center Color Scheme */
:root {
  --hbcu-hour-red: #c7352e;
  --hbcu-hour-green: #2f8a4b;
  --hbcu-hour-green-deep: #21663a;
  --hbcu-hour-white: #f5f7fb;
  --hbcu-hour-steel: #c5ccd6;
}

.clickable-game-row::before {
  border-color: rgba(47,138,75,.34);
  color: var(--hbcu-hour-white);
  background: linear-gradient(135deg, rgba(199,53,46,.92), rgba(47,138,75,.82));
  box-shadow: 0 10px 24px rgba(47,138,75,.25);
}

.game-center-overlay {
  background:
    radial-gradient(circle at 74% 8%, rgba(47, 138, 75, .18), transparent 24%),
    radial-gradient(circle at 88% 36%, rgba(199, 53, 46, .16), transparent 30%),
    rgba(0,0,0,.8);
}

.game-center-panel {
  background:
    radial-gradient(circle at 18% 2%, rgba(47,138,75,.18), transparent 29%),
    radial-gradient(circle at 92% 7%, rgba(199,53,46,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 18%),
    linear-gradient(180deg, rgba(18,22,28,.98), rgba(5,8,12,.99) 52%, rgba(1,3,8,.99));
  border-left: 1px solid rgba(47,138,75,.42);
  box-shadow:
    -34px 0 90px rgba(0,0,0,.68),
    -1px 0 0 rgba(197,204,214,.18),
    inset 1px 0 0 rgba(255,255,255,.06);
}

.game-center-panel::before {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 0%, rgba(47,138,75,.15), transparent 38%);
}

.game-center-panel::after {
  background: linear-gradient(90deg, transparent, var(--hbcu-hour-red), var(--hbcu-hour-green), var(--hbcu-hour-white));
  box-shadow: 0 0 30px rgba(47,138,75,.45);
}

.game-center-close {
  border-color: rgba(47,138,75,.3);
}

.game-center-close:hover,
.game-center-close:focus-visible {
  background: linear-gradient(135deg, var(--hbcu-hour-red), var(--hbcu-hour-green));
  box-shadow: 0 0 30px rgba(47,138,75,.28);
}

.game-center-kicker {
  border: 1px solid rgba(47,138,75,.36);
  color: var(--hbcu-hour-white);
  background:
    linear-gradient(90deg, rgba(199,53,46,.18), rgba(47,138,75,.15)),
    rgba(0,0,0,.26);
}

.game-center-kicker::before {
  background: linear-gradient(135deg, var(--hbcu-hour-red), var(--hbcu-hour-green));
  box-shadow: 0 0 18px rgba(47,138,75,.6);
}

.game-center-header {
  border: 1px solid rgba(47,138,75,.28);
  background:
    linear-gradient(90deg, rgba(199,53,46,.13), transparent 21%, transparent 79%, rgba(47,138,75,.15)),
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
}

.game-center-header::before {
  background:
    linear-gradient(90deg, rgba(199,53,46,.16), transparent 22%, transparent 78%, rgba(47,138,75,.18)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.11), transparent 38%);
}

.game-center-team .team-logo,
.game-center-team .team-logo-fallback {
  border: 1px solid rgba(197,204,214,.24);
  box-shadow:
    0 18px 34px rgba(0,0,0,.34),
    0 0 0 4px rgba(255,255,255,.035),
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 0 1px rgba(47,138,75,.18);
}

.game-center-score-block {
  border: 1px solid rgba(47,138,75,.28);
  background:
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.18)),
    radial-gradient(circle at 50% 0%, rgba(47,138,75,.22), transparent 60%);
}

.game-center-vs {
  text-shadow:
    0 6px 20px rgba(0,0,0,.7),
    0 0 18px rgba(47,138,75,.38);
}

.game-center-meta-grid > div::before,
.game-center-stat-card::before {
  background: linear-gradient(180deg, var(--hbcu-hour-red), var(--hbcu-hour-green), transparent);
}

.game-center-live-box {
  border-color: rgba(47,138,75,.26);
  background:
    radial-gradient(circle at 0% 0%, rgba(199,53,46,.14), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(47,138,75,.14), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.game-center-section-label {
  color: var(--hbcu-hour-white);
}

.game-center-section-label::after {
  background: linear-gradient(90deg, var(--hbcu-hour-red), var(--hbcu-hour-green), transparent);
}

.game-center-link.primary {
  background: linear-gradient(135deg, var(--hbcu-hour-red), var(--hbcu-hour-green));
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 14px 28px rgba(47,138,75,.22),
    0 0 24px rgba(199,53,46,.12),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.game-center-link:hover,
.game-center-link:focus-visible {
  background: linear-gradient(135deg, var(--hbcu-hour-red), var(--hbcu-hour-green));
  box-shadow:
    0 16px 30px rgba(47,138,75,.28),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.game-center-stat-list strong {
  color: var(--hbcu-hour-white);
  background: rgba(47,138,75,.12);
  border: 1px solid rgba(47,138,75,.22);
}

.game-center-footnote {
  border-left: 3px solid rgba(47,138,75,.82);
  background:
    linear-gradient(90deg, rgba(47,138,75,.12), rgba(199,53,46,.08)),
    rgba(0,0,0,.22);
}

/* v3.7.8.2.4 — HBCU Hour scorecard color match */
.clean-table-head {
  color: #d5dbe5;
  border-top: 1px solid rgba(47,138,75,.22);
  border-bottom: 1px solid rgba(197,204,214,.20);
  background:
    linear-gradient(90deg, rgba(199,53,46,.08), rgba(47,138,75,.08)),
    rgba(255,255,255,.04);
}

.clean-table-body {
  border: 1px solid rgba(197,204,214,.16);
  border-top: 0;
  box-shadow:
    0 18px 36px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.scoreboard-v3622-clean .scoreboard-row {
  border-bottom: 1px solid rgba(197,204,214,.10);
  background:
    linear-gradient(90deg, rgba(199,53,46,.07), transparent 28%, transparent 72%, rgba(47,138,75,.07)),
    rgba(8,11,16,.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.scoreboard-v3622-clean .scoreboard-row:nth-child(even) {
  background:
    linear-gradient(90deg, rgba(199,53,46,.05), transparent 28%, transparent 72%, rgba(47,138,75,.06)),
    rgba(14,18,25,.82);
}

.scoreboard-v3622-clean .scoreboard-row.clickable-game-row {
  position: relative;
}

.scoreboard-v3622-clean .scoreboard-row.clickable-game-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--hbcu-hour-red), var(--hbcu-hour-green));
  opacity: .88;
}

.scoreboard-v3622-clean .scoreboard-row.clickable-game-row:hover,
.scoreboard-v3622-clean .scoreboard-row.clickable-game-row:focus-visible {
  background:
    linear-gradient(90deg, rgba(199,53,46,.12), transparent 26%, transparent 74%, rgba(47,138,75,.12)),
    rgba(16,21,30,.94);
  box-shadow:
    inset 0 0 0 1px rgba(197,204,214,.12),
    0 12px 28px rgba(0,0,0,.18);
}

.scoreboard-v3622-clean .scoreboard-date-cell {
  border-right: 1px solid rgba(197,204,214,.10);
}

.scoreboard-v3622-clean .scoreboard-date-cell span {
  color: var(--hbcu-hour-white);
}

.scoreboard-v3622-clean .scoreboard-date-cell strong {
  color: var(--hbcu-hour-red);
  text-shadow: 0 0 14px rgba(199,53,46,.18);
}

.scoreboard-v3622-clean .scoreboard-matchup-cell {
  color: var(--hbcu-hour-white);
}

.scoreboard-v3622-clean .scoreboard-matchup-cell small {
  color: #b7c1cf;
}

.scoreboard-v3622-clean .scoreboard-matchup-cell .versus {
  color: var(--hbcu-hour-red);
  text-shadow: 0 0 12px rgba(199,53,46,.18);
}

.scoreboard-v3622-clean .scoreboard-matchup-cell .at {
  color: var(--hbcu-hour-green);
  text-shadow: 0 0 12px rgba(47,138,75,.18);
}

.scoreboard-v3622-clean .scoreboard-time-cell,
.scoreboard-v3622-clean .scoreboard-tv-cell {
  border-left: 1px solid rgba(197,204,214,.10);
  color: var(--hbcu-hour-white);
}

.scoreboard-v3622-clean .scoreboard-time-cell {
  background: linear-gradient(180deg, rgba(199,53,46,.05), transparent 80%);
}

.scoreboard-v3622-clean .scoreboard-tv-cell {
  background: linear-gradient(180deg, rgba(47,138,75,.05), transparent 80%);
}

@media (max-width: 900px) {
  .scoreboard-v3622-clean .scoreboard-time-cell,
  .scoreboard-v3622-clean .scoreboard-tv-cell {
    background: transparent;
  }
}

/* v3.7.8.2.6 — Homepage scorecards black textured HBCU Hour look */
.scoreboard-home-section .scoreboard-shell {
  background-image:
    radial-gradient(circle at 18% 10%, rgba(47,138,75,0.14), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(199,53,46,0.16), transparent 22%),
    linear-gradient(rgba(4, 6, 10, 0.84), rgba(4, 6, 10, 0.90)),
    url('assets/homepage-scoreboard-bg.png');
}

.game-card {
  background:
    radial-gradient(circle at 92% 6%, rgba(199,53,46,.16), transparent 21%),
    radial-gradient(circle at 10% 100%, rgba(47,138,75,.12), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 20%),
    linear-gradient(180deg, rgba(5,7,11,.98), rgba(2,4,8,.99));
  border: 1px solid rgba(197,204,214,.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(47,138,75,.08);
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 16%, transparent 84%, rgba(0,0,0,.12)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 34%);
  mix-blend-mode: screen;
  opacity: .45;
}

.game-card::after {
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(199,53,46,.22) 0%, rgba(199,53,46,.18) 42%, transparent 43%);
  right: -44px;
  top: -54px;
}

.game-card:hover,
.game-card:focus-within {
  border-color: rgba(47,138,75,.28);
  box-shadow:
    0 22px 46px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(199,53,46,.12);
}

.game-meta {
  color: #d0d7e2;
}

.game-teams {
  color: #f5f7fb;
  text-shadow: 0 6px 18px rgba(0,0,0,.38);
}

.game-vs {
  color: var(--hbcu-hour-red);
  text-shadow: 0 0 10px rgba(199,53,46,.25);
}

.game-tags {
  gap: .45rem;
}

.game-tag {
  border: 1px solid rgba(47,138,75,0.38);
  color: #f5f7fb;
  background:
    linear-gradient(180deg, rgba(47,138,75,.14), rgba(47,138,75,.08)),
    rgba(0,0,0,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.game-tag:nth-child(odd) {
  border-color: rgba(199,53,46,0.36);
  background:
    linear-gradient(180deg, rgba(199,53,46,.14), rgba(199,53,46,.08)),
    rgba(0,0,0,.18);
}

.game-location,
.game-tv {
  color: #c8d0db;
}

.game-tv strong,
.game-location strong {
  color: #f5f7fb;
}

/* v3.7.8.2.7 — User texture image as homepage scorecard background */
.game-card {
  background:
    radial-gradient(circle at 92% 6%, rgba(199,53,46,.14), transparent 21%),
    radial-gradient(circle at 10% 100%, rgba(47,138,75,.11), transparent 25%),
    linear-gradient(rgba(4,6,10,.64), rgba(4,6,10,.74)),
    url('assets/scorecard-texture-bg.png');
  background-size: auto, auto, auto, cover;
  background-position: top right, bottom left, center center, center center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  border: 1px solid rgba(197,204,214,.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(47,138,75,.08);
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 16%, transparent 84%, rgba(0,0,0,.16)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 34%);
  mix-blend-mode: screen;
  opacity: .45;
}

.game-card::after {
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(199,53,46,.20) 0%, rgba(199,53,46,.16) 42%, transparent 43%);
  right: -44px;
  top: -54px;
}

.game-card:hover,
.game-card:focus-within {
  border-color: rgba(47,138,75,.30);
  box-shadow:
    0 22px 46px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(199,53,46,.12);
}


/* v3.7.8.3.4 — Uploaded LIVE STATS graphic button */
.game-center-live-stats-graphic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
}

.game-center-live-stats-image {
  display: block;
  width: min(360px, 100%);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.42));
  transition: transform .18s ease, filter .18s ease;
}

.game-center-live-stats-graphic:hover .game-center-live-stats-image,
.game-center-live-stats-graphic:focus-visible .game-center-live-stats-image {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.48));
}

.game-center-live-stats-graphic:focus-visible {
  outline: 2px solid rgba(245,247,251,.72);
  outline-offset: 4px;
  border-radius: 20px;
}

@media (max-width: 700px) {
  .game-center-live-stats-graphic {
    width: 100%;
  }

  .game-center-live-stats-image {
    width: min(320px, 100%);
    margin-inline: auto;
  }
}


/* v3.7.8.3.5 — Slightly smaller Live Stats button and area */
.game-center-live-box {
  border-radius: 22px;
  padding: clamp(.9rem, 2vw, 1.1rem);
}

.game-center-live-box h2 {
  max-width: 620px;
  font-size: clamp(1.9rem, 4.1vw, 3.15rem);
  line-height: .96;
  margin-bottom: .7rem;
}

.game-center-section-label {
  font-size: .92rem;
  margin-bottom: .35rem;
}

.game-center-links {
  gap: .55rem;
}

.game-center-live-stats-image {
  width: min(300px, 92%);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.38));
}

.game-center-live-stats-graphic:hover .game-center-live-stats-image,
.game-center-live-stats-graphic:focus-visible .game-center-live-stats-image {
  transform: translateY(-1px) scale(1.005);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.42));
}

@media (max-width: 700px) {
  .game-center-live-box {
    padding: .9rem;
  }

  .game-center-live-box h2 {
    font-size: clamp(1.55rem, 7vw, 2.4rem);
    margin-bottom: .6rem;
  }

  .game-center-live-stats-image {
    width: min(260px, 88%);
  }
}


/* v3.7.8.3.6 — Shrink LIVE STATS button further */
.game-center-live-stats-image {
  width: min(240px, 82%);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.34));
}

.game-center-live-stats-graphic:hover .game-center-live-stats-image,
.game-center-live-stats-graphic:focus-visible .game-center-live-stats-image {
  transform: translateY(-1px) scale(1.003);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.38));
}

@media (max-width: 700px) {
  .game-center-live-stats-image {
    width: min(210px, 80%);
  }
}

/* v3.7.8.4 — Game Center route clarity and fallback polish */
.game-center-route-badges { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .7rem; }
.game-center-route-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: .35rem .62rem; border-radius: 999px; font-size: .68rem; font-weight: 950; line-height: 1; letter-spacing: .07em; text-transform: uppercase; border: 1px solid rgba(197,204,214,.16); background: rgba(0,0,0,.22); color: #f5f7fb; }
.game-center-route-badge.live { border-color: rgba(47,138,75,.34); background: rgba(47,138,75,.14); }
.game-center-route-badge.fallback { border-color: rgba(197,204,214,.24); background: rgba(197,204,214,.10); }
.game-center-route-badge.missing { border-color: rgba(199,53,46,.30); background: rgba(199,53,46,.12); }
.game-center-route-badge.unavailable { border-color: rgba(199,53,46,.36); background: rgba(0,0,0,.24); }
.game-center-unavailable { display: inline-flex; flex-direction: column; align-items: flex-start; gap: .28rem; }
.game-center-unavailable strong { color: #f5f7fb; }
.game-center-unavailable span { color: #c5ccd6; font-size: .78rem; letter-spacing: .02em; text-transform: none; }
.game-center-source { display: block; margin-top: .65rem; }


/* v3.7.10.1 — Safe Game Center Extra Info Slot */
.game-center-extra-info-slot {
  margin-top: 1rem;
  padding: .85rem;
  border-radius: 18px;
  border: 1px solid rgba(197,204,214,.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    rgba(0,0,0,.16);
}

.game-center-extra-info-slot[hidden] {
  display: none !important;
}


/* v3.7.10.2 — Static Extra Info Slot Test */
.game-center-extra-info-kicker {
  margin: 0;
  color: rgba(245,247,251,.78);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* v3.7.10.3 — Static Team Identity Slot Test */
.game-center-static-identity-test {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .55rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(197,204,214,.16);
  background: rgba(0,0,0,.18);
}

.game-center-static-identity-test span {
  color: rgba(245,247,251,.7);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.game-center-static-identity-test strong {
  color: #f5f7fb;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .game-center-static-identity-test {
    width: 100%;
    justify-content: space-between;
  }
}


/* v3.7.10.4 — Static HBCU / Non-HBCU Label Layout Test */
.game-center-static-label-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin-top: .65rem;
}

.game-center-static-label-card {
  min-width: 0;
  padding: .65rem .7rem;
  border-radius: 16px;
  border: 1px solid rgba(197,204,214,.14);
  background: rgba(0,0,0,.20);
}

.game-center-static-label-card span {
  display: block;
  margin-bottom: .38rem;
  color: rgba(245,247,251,.68);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.game-center-static-label-card strong {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: .34rem .56rem;
  border-radius: 999px;
  color: #f5f7fb;
  font-size: .66rem;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: .055em;
  text-transform: uppercase;
  border: 1px solid rgba(197,204,214,.18);
  background: rgba(197,204,214,.08);
}

.game-center-static-label-card strong.hbcu {
  border-color: rgba(47,138,75,.36);
  background: rgba(47,138,75,.15);
}

.game-center-static-label-card strong.opponent {
  border-color: rgba(197,204,214,.22);
  background: rgba(197,204,214,.09);
}

@media (max-width: 700px) {
  .game-center-static-label-layout {
    grid-template-columns: 1fr;
  }
}


/* v3.7.10.5 — Game Center Details Replaces Conference Box
   The separate Conference box was removed from the Game Center meta grid.
   Future conference/team identity info should live inside the Game Center Details slot. */


/* v3.7.10.6 — Game Center Details Above Date & Time
   Layout-only pass: Game Center Details now appears before the date/time/location grid. */


/* v3.7.10.7 — Dynamic Team Names in Game Center Details
   Layout-safe pass: the team names now come from the selected game object.
   The HBCU / Non-HBCU identity labels are still static for testing. */


/* v3.7.10.8 — Dynamic HBCU / Non-HBCU Labels Release Candidate
   HBCU teams display HBCU • Conference • Division.
   Non-HBCU teams display only Non-HBCU Opponent. */


/* v3.7.11.1 — Game Center Details Style Polish
   Style-only pass. No game-type logic, no conference-game guessing, no new data loading. */
.game-center-extra-info-slot {
  position: relative;
  overflow: hidden;
  margin: .95rem 0 1rem;
  padding: .9rem;
  border-radius: 20px;
  border: 1px solid rgba(197,204,214,.18);
  background:
    radial-gradient(circle at 15% 0%, rgba(199,53,46,.18), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(47,138,75,.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    rgba(0,0,0,.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 16px 34px rgba(0,0,0,.25);
}

.game-center-extra-info-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(197,204,214,.08), transparent 32%, rgba(197,204,214,.05));
  opacity: .75;
}

.game-center-extra-info-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  margin: 0 0 .7rem;
  color: rgba(245,247,251,.86);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.game-center-extra-info-kicker::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c7352e, #2f8a4b);
  box-shadow: 0 0 16px rgba(199,53,46,.35);
}

.game-center-details-teams {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.game-center-details-team-card {
  min-width: 0;
  padding: .78rem .82rem;
  border-radius: 18px;
  border: 1px solid rgba(197,204,214,.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(0,0,0,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}

.game-center-details-team-card em {
  display: inline-flex;
  margin-bottom: .42rem;
  color: rgba(197,204,214,.74);
  font-size: .62rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.game-center-details-team-card span {
  display: block;
  margin-bottom: .48rem;
  color: #f5f7fb;
  font-size: clamp(.98rem, 1.4vw, 1.15rem);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: .01em;
  text-transform: none;
}

.game-center-details-team-card strong {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: .38rem .62rem;
  border-radius: 999px;
  color: #f5f7fb;
  font-size: .66rem;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1px solid rgba(197,204,214,.18);
  background: rgba(197,204,214,.08);
  white-space: normal;
}

.game-center-details-team-card strong.hbcu {
  border-color: rgba(47,138,75,.44);
  background:
    linear-gradient(180deg, rgba(47,138,75,.25), rgba(47,138,75,.13));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.game-center-details-team-card strong.opponent {
  color: rgba(245,247,251,.88);
  border-color: rgba(197,204,214,.25);
  background:
    linear-gradient(180deg, rgba(197,204,214,.13), rgba(197,204,214,.07));
}

@media (max-width: 700px) {
  .game-center-extra-info-slot {
    padding: .8rem;
  }

  .game-center-details-teams {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .game-center-details-team-card {
    padding: .72rem;
  }
}


/* v3.7.12.1 — Homepage / Scoreboard Visual Polish
   Light polish only. No Game Center logic, no YouTube changes, no autoplay. */
:root {
  --ncs-polish-card-border: rgba(197,204,214,.16);
  --ncs-polish-card-glow: rgba(199,53,46,.10);
}

section,
.content-section,
.show-section,
.scoreboard-section,
.latest-videos-section {
  scroll-margin-top: 96px;
}

.section-heading,
.section-title,
.scoreboard-title,
.show-title {
  text-wrap: balance;
}

.card,
.show-card,
.scoreboard-card,
.game-card,
.video-card,
.feature-card {
  border-color: var(--ncs-polish-card-border);
}

.show-card,
.scoreboard-card,
.video-card,
.feature-card {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 18px 44px rgba(0,0,0,.24);
}

.scoreboard-shell,
.scoreboard-panel,
.home-scoreboard,
.latest-videos,
.shows-grid {
  gap: clamp(1rem, 2vw, 1.35rem);
}

.clean-filter,
.image-filter,
.cta-button,
.button,
.btn {
  transition:
    transform .18s ease,
    filter .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.clean-filter:hover,
.image-filter:hover,
.cta-button:hover,
.button:hover,
.btn:hover {
  transform: translateY(-1px);
}

.clean-filter:focus-visible,
.image-filter:focus-visible,
.cta-button:focus-visible,
.button:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(245,247,251,.82);
  outline-offset: 3px;
}

.game-card {
  background-size: cover;
  background-position: center;
}

.game-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 20px 46px rgba(0,0,0,.32),
    0 0 0 1px rgba(197,204,214,.12);
}

.game-card .team-name,
.game-card strong,
.scoreboard-team,
.team-name {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .shows-grid,
  .latest-videos,
  .scoreboard-grid,
  .cards-grid {
    gap: 1rem;
  }

  .section-heading,
  .section-title,
  .scoreboard-title {
    line-height: 1.05;
  }
}

@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  section,
  .content-section,
  .show-section,
  .scoreboard-section {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .clean-filter,
  .image-filter,
  .cta-button,
  .button,
  .btn {
    min-height: 44px;
  }

  .game-card {
    border-radius: 18px;
  }

  .scoreboard-shell,
  .scoreboard-panel {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clean-filter,
  .image-filter,
  .cta-button,
  .button,
  .btn {
    transition: none;
  }

  .clean-filter:hover,
  .image-filter:hover,
  .cta-button:hover,
  .button:hover,
  .btn:hover {
    transform: none;
  }
}


/* v3.7.12.2 — Homepage CTA / Section Flow Polish
   Visual/content-flow polish only. No Game Center logic, no YouTube changes. */
.hero,
.site-hero,
.home-hero {
  isolation: isolate;
}

.hero .cta-row,
.site-hero .cta-row,
.home-hero .cta-row,
.cta-row,
.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.hero .cta-row > *,
.site-hero .cta-row > *,
.home-hero .cta-row > *,
.hero-actions > *,
.action-row > * {
  flex: 0 1 auto;
}

.cta-button,
.button,
.btn {
  border-radius: 999px;
  letter-spacing: .035em;
  font-weight: 900;
}

.cta-button.primary,
.button.primary,
.btn.primary,
.primary-cta {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 14px 34px rgba(199,53,46,.20);
}

.cta-button.secondary,
.button.secondary,
.btn.secondary,
.secondary-cta {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(0,0,0,.25);
  border-color: rgba(197,204,214,.22);
}

.home-section,
.content-section,
.show-section,
.scoreboard-section,
.latest-videos-section {
  position: relative;
}

.home-section + .home-section,
.content-section + .content-section,
.show-section + .show-section,
.scoreboard-section + .latest-videos-section,
.latest-videos-section + .content-section {
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
}

.shows-grid,
.show-grid,
.brand-grid,
.cards-grid {
  align-items: stretch;
}

.show-card,
.brand-card,
.feature-card {
  min-height: 100%;
}

.show-card p,
.brand-card p,
.feature-card p,
.section-copy,
.lead-copy {
  text-wrap: pretty;
}

.show-card .cta-button,
.show-card .button,
.brand-card .cta-button,
.brand-card .button,
.feature-card .cta-button,
.feature-card .button {
  margin-top: auto;
}

.section-eyebrow,
.eyebrow,
.kicker {
  letter-spacing: .14em;
}

.scoreboard-section .section-copy,
.scoreboard-section .lead-copy,
.latest-videos-section .section-copy,
.latest-videos-section .lead-copy {
  max-width: 72ch;
}

@media (max-width: 900px) {
  .hero .cta-row,
  .site-hero .cta-row,
  .home-hero .cta-row,
  .cta-row,
  .hero-actions,
  .action-row {
    gap: .65rem;
  }
}

@media (max-width: 700px) {
  .hero .cta-row > *,
  .site-hero .cta-row > *,
  .home-hero .cta-row > *,
  .cta-row > *,
  .hero-actions > *,
  .action-row > * {
    flex: 1 1 100%;
  }

  .cta-button,
  .button,
  .btn {
    justify-content: center;
    text-align: center;
  }

  .home-section + .home-section,
  .content-section + .content-section,
  .show-section + .show-section {
    margin-top: 1.25rem;
  }

  .show-card,
  .brand-card,
  .feature-card {
    padding-block: clamp(1rem, 4vw, 1.25rem);
  }
}


/* v3.7.12.3 — Footer / Contact / Platform Link Polish
   Visual polish only. No Game Center, Live Stats, or YouTube behavior changes. */
footer,
.site-footer,
.footer {
  position: relative;
  border-top: 1px solid rgba(197,204,214,.14);
  background:
    radial-gradient(circle at 15% 0%, rgba(199,53,46,.12), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(47,138,75,.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.18));
}

footer a,
.site-footer a,
.footer a {
  text-underline-offset: .22em;
}

.footer-grid,
.site-footer-grid,
.footer-content,
.footer-links,
.social-links,
.platform-links,
.contact-links {
  gap: clamp(.75rem, 2vw, 1.15rem);
}

.footer-links,
.social-links,
.platform-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a,
.social-links a,
.platform-links a,
.contact-links a,
footer .button,
.site-footer .button,
.footer .button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.footer-links a,
.social-links a,
.platform-links a,
.contact-links a {
  padding: .42rem .7rem;
  border: 1px solid rgba(197,204,214,.12);
  background: rgba(0,0,0,.16);
  color: inherit;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.footer-links a:hover,
.social-links a:hover,
.platform-links a:hover,
.contact-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(197,204,214,.25);
  background: rgba(255,255,255,.055);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.footer-brand,
.site-footer-brand,
.footer-logo {
  min-width: 0;
}

.footer-brand p,
.site-footer-brand p,
.footer-copy,
.footer-description {
  max-width: 64ch;
  text-wrap: pretty;
}

.footer-bottom,
.site-footer-bottom,
.copyright {
  border-top: 1px solid rgba(197,204,214,.10);
  margin-top: clamp(1rem, 3vw, 1.65rem);
  padding-top: clamp(.85rem, 2vw, 1.15rem);
  color: rgba(245,247,251,.72);
}

@media (max-width: 700px) {
  footer,
  .site-footer,
  .footer {
    text-align: center;
  }

  .footer-links,
  .social-links,
  .platform-links,
  .contact-links {
    justify-content: center;
  }

  .footer-links a,
  .social-links a,
  .platform-links a,
  .contact-links a {
    flex: 1 1 calc(50% - .75rem);
    max-width: 220px;
  }

  .footer-brand p,
  .site-footer-brand p,
  .footer-copy,
  .footer-description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .footer-links a,
  .social-links a,
  .platform-links a,
  .contact-links a {
    flex-basis: 100%;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a,
  .social-links a,
  .platform-links a,
  .contact-links a {
    transition: none;
  }

  .footer-links a:hover,
  .social-links a:hover,
  .platform-links a:hover,
  .contact-links a:hover {
    transform: none;
  }
}



/* v3.8.6.0 Game Center polish pass */
.game-center-panel {
  width: min(700px, 100%);
  background:
    radial-gradient(circle at 12% 0%, rgba(199,53,46,.28), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(47,138,75,.20), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(212,175,55,.12), transparent 34%),
    linear-gradient(180deg, rgba(4,5,5,.98), rgba(12,12,12,.98));
  border-left: 1px solid rgba(212,175,55,.30);
  padding: clamp(.9rem, 2.25vw, 1.35rem);
}

.game-center-panel::before {
  width: min(700px, 100%);
  opacity: .28;
}

.game-center-header {
  margin: .55rem 0 .85rem;
  padding: .78rem;
  border-color: rgba(212,175,55,.30);
  background: rgba(0,0,0,.38);
}

.game-center-team .team {
  gap: .38rem;
  font-size: clamp(.92rem, 2.1vw, 1.16rem);
}

.game-center-team .team-logo,
.game-center-team .team-logo-fallback {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
}

.game-center-score-block {
  min-width: 88px;
}

.game-center-vs {
  color: #d4af37;
  font-size: 1.12rem;
}

.game-center-extra-info-slot {
  padding: .72rem !important;
  margin: 0 0 .75rem !important;
  border-color: rgba(212,175,55,.28) !important;
  background: rgba(0,0,0,.32) !important;
}

.game-center-details-teams {
  gap: .55rem !important;
}

.game-center-details-team-card {
  padding: .62rem !important;
}

.game-center-meta-grid {
  gap: .58rem;
  margin-bottom: .75rem;
}

.game-center-meta-grid > div {
  padding: .62rem .68rem;
  background: rgba(0,0,0,.36);
  border-color: rgba(212,175,55,.24);
}

.game-center-live-box {
  gap: .72rem;
  padding: .78rem;
  margin-bottom: .75rem;
  background: rgba(0,0,0,.38);
  border-color: rgba(212,175,55,.28);
}

.game-center-live-box h2 {
  font-size: clamp(1.18rem, 3.1vw, 1.75rem);
  letter-spacing: -.03em;
}

.game-center-links,
.game-center-schedule-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.game-center-schedule-buttons {
  margin-top: .1rem;
}

.game-center-link,
.game-center-unavailable,
.game-center-schedule-button {
  min-height: 38px;
  padding: .56rem .84rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212,175,55,.62);
}

.game-center-schedule-button.away-schedule {
  color: #f8f8f2;
  background: #c7352e;
}

.game-center-schedule-button.home-schedule {
  color: #f8f8f2;
  background: #2f8a4b;
}

.game-center-schedule-button.disabled {
  opacity: .45;
  cursor: not-allowed;
}

.game-center-link.primary,
.game-center-link:hover,
.game-center-link:focus-visible {
  background: #c7352e;
  border-color: rgba(212,175,55,.82);
}

.game-center-stats-grid.game-center-polished-grid {
  gap: .62rem;
}

.game-center-stat-card {
  padding: .78rem;
  background: rgba(0,0,0,.38);
  border-color: rgba(212,175,55,.24);
  border-radius: 16px;
}

.game-center-stat-card h3 {
  margin: 0 0 .58rem;
  color: #f8f8f2;
  font-size: .9rem;
}

.game-center-comparison-head,
.game-center-comparison-list > div {
  display: grid;
  grid-template-columns: 1fr .9fr 1fr;
  align-items: center;
  gap: .5rem;
  text-align: center;
}

.game-center-comparison-head {
  padding: .45rem .4rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  margin-bottom: .45rem;
}

.game-center-comparison-head span,
.game-center-comparison-head strong {
  color: #d4af37;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
}

.game-center-comparison-list {
  display: grid;
  gap: .4rem;
}

.game-center-comparison-list > div {
  padding: .4rem .2rem .45rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.game-center-comparison-list > div:last-child {
  border-bottom: 0;
}

.game-center-comparison-list span {
  color: rgba(248,248,242,.72);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 850;
}

.game-center-comparison-list strong {
  color: #f8f8f2;
  font-size: .74rem;
  font-weight: 950;
}

.game-center-notes-card .game-center-stat-list > div {
  justify-content: flex-start;
}

.game-center-notes-card .game-center-stat-list span {
  text-transform: none;
  letter-spacing: .02em;
  color: rgba(248,248,242,.82);
  font-size: .78rem;
}

.game-center-footnote {
  margin: .75rem 0 0;
  font-size: .82rem;
  color: rgba(248,248,242,.66);
}

@media (max-width: 700px) {
  .game-center-stats-grid.game-center-polished-grid {
    grid-template-columns: 1fr;
  }

  .game-center-comparison-head,
  .game-center-comparison-list > div {
    grid-template-columns: 1fr .8fr 1fr;
  }
}



/* v3.8.6.1 Game Center score labels cleanup */
.game-center-stat-card h3 {
  text-align: center;
}

.game-center-comparison-list strong {
  color: #f8f8f2;
}

.game-center-comparison-head strong,
.game-center-comparison-head span {
  text-align: center;
}



/* v3.8.6.2 Game Center final visual polish */
.game-center-panel {
  width: min(680px, 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.55) rgba(0,0,0,.25);
}

.game-center-close {
  width: 42px;
  height: 42px;
  border-color: rgba(212,175,55,.42);
  background: rgba(0,0,0,.64);
  box-shadow: 0 12px 28px rgba(0,0,0,.38);
}

.game-center-close:hover,
.game-center-close:focus-visible {
  background: #c7352e;
  border-color: rgba(212,175,55,.82);
}

.game-center-kicker {
  text-align: center;
  display: block;
  margin-top: -.35rem;
  margin-bottom: .45rem;
  color: #d4af37;
}

.game-center-header {
  border-radius: 22px;
}

.game-center-score-block {
  padding: .35rem .45rem;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(0,0,0,.28);
}

.game-center-status {
  font-size: .7rem;
  line-height: 1.15;
}

.game-center-extra-info-kicker,
.game-center-section-label {
  text-align: center;
}

.game-center-meta-grid > div,
.game-center-live-box,
.game-center-stat-card {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 12px 30px rgba(0,0,0,.18);
}

.game-center-meta-grid span,
.game-center-meta-grid strong,
.game-center-live-box,
.game-center-source,
.game-center-footnote {
  text-align: center;
}

.game-center-live-box h2 {
  max-width: 100%;
  margin-inline: auto;
}

.game-center-links,
.game-center-schedule-buttons,
.game-center-route-badges {
  justify-content: center;
}

.game-center-source {
  line-height: 1.35;
}

.game-center-stat-card h3 {
  text-align: center;
  letter-spacing: .08em;
}

.game-center-comparison-head {
  min-height: 50px;
}

.game-center-comparison-head span,
.game-center-comparison-head strong {
  line-height: 1.28;
}

.game-center-comparison-list > div {
  min-height: 42px;
}

.game-center-comparison-list strong {
  letter-spacing: .01em;
}

.game-center-comparison-list span {
  line-height: 1.22;
}

.game-center-notes-card .game-center-stat-list > div {
  justify-content: center;
  text-align: center;
}

.game-center-footnote {
  max-width: 560px;
  margin-inline: auto;
}

@media (max-width: 700px) {
  .game-center-overlay {
    align-items: stretch;
  }

  .game-center-panel {
    width: 100%;
    padding: .78rem;
  }

  .game-center-panel::before {
    width: 100%;
  }

  .game-center-close {
    top: .35rem;
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .game-center-kicker {
    margin-top: -.25rem;
    padding-right: 2.75rem;
    padding-left: 2.75rem;
  }

  .game-center-header {
    grid-template-columns: 1fr 74px 1fr;
    gap: .48rem;
    padding: .58rem;
    border-radius: 18px;
  }

  .game-center-team .team {
    font-size: .78rem;
    line-height: 1.05;
    gap: .28rem;
  }

  .game-center-team .team-logo,
  .game-center-team .team-logo-fallback {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .game-center-score-block {
    min-width: 0;
    padding: .35rem .28rem;
  }

  .game-center-status {
    font-size: .58rem;
    letter-spacing: .04em;
  }

  .game-center-vs {
    font-size: .9rem;
    margin-top: .25rem;
  }

  .game-center-details-teams {
    grid-template-columns: 1fr 1fr !important;
  }

  .game-center-details-team-card span {
    font-size: .78rem !important;
    line-height: 1.12 !important;
  }

  .game-center-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
  }

  .game-center-meta-grid > div {
    padding: .52rem .4rem;
  }

  .game-center-meta-grid span {
    font-size: .62rem;
    letter-spacing: .08em;
  }

  .game-center-meta-grid strong {
    font-size: .78rem;
  }

  .game-center-live-box {
    padding: .65rem;
  }

  .game-center-live-box h2 {
    font-size: 1.16rem;
    line-height: 1.02;
  }

  .game-center-link,
  .game-center-unavailable,
  .game-center-schedule-button {
    width: calc(50% - .35rem);
    min-width: 0;
    padding: .52rem .35rem;
    font-size: .66rem;
    line-height: 1.05;
  }

  .game-center-live-stats-graphic {
    width: auto;
    min-width: 130px;
  }

  .game-center-stats-grid.game-center-polished-grid {
    gap: .55rem;
  }

  .game-center-stat-card {
    padding: .66rem;
    border-radius: 14px;
  }

  .game-center-stat-card h3 {
    font-size: .84rem;
    margin-bottom: .48rem;
  }

  .game-center-comparison-head,
  .game-center-comparison-list > div {
    grid-template-columns: 1.1fr .72fr 1.1fr;
    gap: .28rem;
  }

  .game-center-comparison-head {
    min-height: 46px;
    padding: .38rem .26rem;
  }

  .game-center-comparison-head span,
  .game-center-comparison-head strong {
    font-size: .58rem;
    letter-spacing: .07em;
  }

  .game-center-comparison-list > div {
    min-height: 38px;
    padding: .36rem .08rem .4rem;
  }

  .game-center-comparison-list strong {
    font-size: .7rem;
  }

  .game-center-comparison-list span {
    font-size: .62rem;
    letter-spacing: .07em;
  }

  .game-center-footnote {
    font-size: .72rem;
    line-height: 1.4;
  }
}

@media (max-width: 390px) {
  .game-center-header {
    grid-template-columns: 1fr 66px 1fr;
  }

  .game-center-team .team-logo,
  .game-center-team .team-logo-fallback {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .game-center-team .team {
    font-size: .72rem;
  }

  .game-center-comparison-head span,
  .game-center-comparison-head strong {
    font-size: .54rem;
  }

  .game-center-comparison-list strong {
    font-size: .66rem;
  }

  .game-center-comparison-list span {
    font-size: .58rem;
  }
}



/* v3.8.6.3 — Live Game Center slight shrink */
.game-center-live-box {
  padding: .62rem .7rem;
  gap: .48rem;
  margin-bottom: .62rem;
}

.game-center-live-box h2 {
  font-size: clamp(1.05rem, 2.65vw, 1.52rem);
  line-height: 1;
}

.game-center-section-label {
  font-size: .64rem;
  margin-bottom: .12rem;
}

.game-center-links,
.game-center-schedule-buttons {
  gap: .42rem;
}

.game-center-link,
.game-center-unavailable,
.game-center-schedule-button {
  min-height: 34px;
  padding: .46rem .72rem;
  font-size: .72rem;
}

.game-center-source {
  font-size: .64rem;
}

@media (max-width: 700px) {
  .game-center-live-box {
    padding: .55rem;
    gap: .42rem;
  }

  .game-center-live-box h2 {
    font-size: 1.02rem;
  }

  .game-center-section-label {
    font-size: .58rem;
  }

  .game-center-link,
  .game-center-unavailable,
  .game-center-schedule-button {
    min-height: 32px;
    padding: .44rem .3rem;
    font-size: .62rem;
  }

  .game-center-source {
    font-size: .58rem;
  }
}



/* v3.8.6.5 — Live Game Center compact finish */
.game-center-live-box {
  padding: .52rem .62rem !important;
  gap: .32rem !important;
  margin-bottom: .58rem !important;
  align-content: start;
}

.game-center-live-box h2 {
  font-size: clamp(.96rem, 2.35vw, 1.32rem) !important;
  line-height: .98 !important;
  margin-top: .1rem !important;
  margin-bottom: .12rem !important;
}

.game-center-section-label {
  font-size: .58rem !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.game-center-links {
  gap: .32rem !important;
  margin-top: .15rem !important;
  margin-bottom: 0 !important;
}

.game-center-live-stats-graphic {
  padding: .22rem .38rem !important;
  min-height: 0 !important;
  line-height: 0 !important;
}

.game-center-live-stats-image {
  max-height: 44px !important;
  width: auto !important;
  display: block !important;
}

.game-center-route-badges {
  margin-top: .18rem !important;
  margin-bottom: 0 !important;
  gap: .3rem !important;
}

.game-center-route-badge {
  padding: .32rem .58rem !important;
  font-size: .6rem !important;
  line-height: 1 !important;
}

.game-center-source {
  margin-top: .12rem !important;
  font-size: .58rem !important;
  line-height: 1.18 !important;
}

.game-center-schedule-buttons {
  margin-top: .12rem !important;
  gap: .35rem !important;
}

.game-center-footnote {
  margin-top: .48rem !important;
}

@media (max-width: 700px) {
  .game-center-live-box {
    padding: .48rem !important;
    gap: .28rem !important;
  }

  .game-center-live-box h2 {
    font-size: .92rem !important;
    line-height: 1 !important;
  }

  .game-center-live-stats-image {
    max-height: 40px !important;
  }

  .game-center-route-badge {
    padding: .30rem .52rem !important;
    font-size: .56rem !important;
  }

  .game-center-source {
    font-size: .54rem !important;
  }
}

@media (max-width: 390px) {
  .game-center-live-stats-image {
    max-height: 36px !important;
  }

  .game-center-live-box h2 {
    font-size: .86rem !important;
  }
}



/* v3.8.6.6 — Miles / DII logo fit fix */
.game-center-team .team-logo {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 6px !important;
  box-sizing: border-box !important;
  background: rgba(255,255,255,.035);
}

.game-center-details-team-card .team-logo,
.scoreboard-row .team-logo {
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 700px) {
  .game-center-team .team-logo {
    padding: 5px !important;
  }
}



/* v3.8.6.7 — Enlarge Live Stats button for better mobile visibility */
.game-center-live-stats-image {
  width: min(300px, 88%);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.38));
}

.game-center-live-stats-graphic:hover .game-center-live-stats-image,
.game-center-live-stats-graphic:focus-visible .game-center-live-stats-image {
  transform: translateY(-1px) scale(1.006);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.42));
}

@media (max-width: 700px) {
  .game-center-live-stats-image {
    width: min(280px, 90%);
  }
}



/* v3.8.6.8 — Miles logo and standard Live Stats button fix */
.game-center-team .team-logo,
.scoreboard-row .team-logo {
  object-fit: contain !important;
  object-position: center center !important;
}

.game-center-live-stats-graphic {
  min-width: 176px !important;
  min-height: 42px !important;
  padding: .68rem 1.05rem !important;
  border: 1px solid rgba(212,175,55,.75) !important;
  border-radius: 999px !important;
  background: #c7352e !important;
  color: #f8f8f2 !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.16) !important;
  line-height: 1 !important;
}

.game-center-live-stats-graphic::before {
  content: "LIVE STATS";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8f8f2;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
}

.game-center-live-stats-graphic .game-center-live-stats-image {
  display: none !important;
}

.game-center-live-stats-graphic:hover,
.game-center-live-stats-graphic:focus-visible {
  background: #2f8a4b !important;
  border-color: rgba(212,175,55,.95) !important;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 700px) {
  .game-center-live-stats-graphic {
    min-width: 154px !important;
    min-height: 40px !important;
    padding: .62rem .92rem !important;
    width: auto !important;
  }

  .game-center-live-stats-graphic::before {
    font-size: .76rem;
  }
}



/* v3.20.3.8 — Phase 3I public HBCU Hour Game Center UI integration */
.game-live-summary {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: .15rem 0 .8rem;
  padding: .38rem .68rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #f8fafc;
  font-size: .72rem;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.game-live-summary[hidden] {
  display: none !important;
}

.game-live-summary.live {
  color: #effff5;
  border-color: rgba(74,222,128,.48);
  background: linear-gradient(135deg, rgba(22,163,74,.34), rgba(21,128,61,.22));
  box-shadow: 0 0 18px rgba(34,197,94,.16), inset 0 1px 0 rgba(255,255,255,.10);
}

.game-live-summary.stale,
.game-live-summary.provisional {
  color: #fff3c4;
  border-color: rgba(250,204,21,.52);
  background: linear-gradient(135deg, rgba(202,138,4,.32), rgba(161,98,7,.20));
}

.game-live-summary.final {
  color: #f8fafc;
  border-color: rgba(148,163,184,.38);
  background: rgba(51,65,85,.46);
}

.game-live-summary.corrected {
  color: #fff7db;
  border-color: rgba(212,175,55,.65);
  background: linear-gradient(135deg, rgba(180,83,9,.38), rgba(120,53,15,.24));
}

.clickable-game-row[data-live-state="live"] {
  border-color: rgba(74,222,128,.42) !important;
}

.clickable-game-row[data-live-state="stale"],
.clickable-game-row[data-live-state="provisional"] {
  border-color: rgba(250,204,21,.42) !important;
}

.clickable-game-row[data-live-state="corrected"] {
  border-color: rgba(212,175,55,.58) !important;
}

.scoreboard-time-cell {
  display: grid;
  gap: .35rem;
  align-content: center;
}

.scoreboard-time-cell .game-live-summary.compact {
  margin: 0;
  padding: .3rem .48rem;
  font-size: .6rem;
  white-space: normal;
  text-align: center;
}

.hbcu-live-adapter-source {
  margin: .42rem 0 0;
  color: var(--color-secondary, #d8b57a);
  font-size: .72rem;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: .035em;
}

.hbcu-live-snapshot-card {
  grid-column: 1 / -1;
  border-color: rgba(212,175,55,.38) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(199,53,46,.16), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(47,138,75,.14), transparent 36%),
    rgba(0,0,0,.43) !important;
}

.hbcu-player-stats-card {
  grid-column: 1 / -1;
}

.hbcu-player-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}

.hbcu-player-team-panel {
  min-width: 0;
  padding: .64rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.032);
}

.hbcu-player-team-panel h4 {
  margin: 0 0 .55rem;
  color: #d4af37;
  font-size: .72rem;
  line-height: 1.2;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
}

.hbcu-player-stat-list {
  display: grid;
  gap: .46rem;
}

.hbcu-player-stat-row {
  padding: .55rem .6rem;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.26);
}

.hbcu-player-stat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .55rem;
}

.hbcu-player-stat-head strong {
  color: #f8f8f2;
  font-size: .76rem;
  line-height: 1.2;
}

.hbcu-player-stat-head span {
  color: rgba(248,248,242,.55);
  font-size: .58rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .055em;
  text-align: right;
  text-transform: uppercase;
}

.hbcu-player-stat-row p {
  margin: .28rem 0 0;
  color: rgba(248,248,242,.76);
  font-size: .66rem;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .game-live-summary {
    margin-bottom: .65rem;
    font-size: .64rem;
  }

  .scoreboard-time-cell .game-live-summary.compact {
    font-size: .54rem;
  }

  .hbcu-player-stats-grid {
    grid-template-columns: 1fr;
  }

  .hbcu-live-scoreline {
    gap: .45rem;
  }

  .hbcu-live-adapter-source {
    font-size: .66rem;
  }
}

@media (max-width: 420px) {
  .hbcu-player-stat-head {
    display: grid;
    gap: .18rem;
  }

  .hbcu-player-stat-head span {
    text-align: left;
  }
}


/* v3.20.3.8.1 — HBCU Hour unified Game Center aesthetic
   Centered modal language inspired by the polished Rant and Bayou Recap Game Centers,
   while retaining HBCU Hour red, green, gold, and black branding. */
:root {
  --hbcu-gc-red: #c7352e;
  --hbcu-gc-red-deep: #7f1d1d;
  --hbcu-gc-green: #2f8a4b;
  --hbcu-gc-green-deep: #14532d;
  --hbcu-gc-gold: #d4af37;
  --hbcu-gc-gold-soft: #f4d77a;
  --hbcu-gc-ink: #050706;
  --hbcu-gc-panel: #0d110f;
  --hbcu-gc-card: rgba(15, 20, 17, .92);
  --hbcu-gc-line: rgba(212, 175, 55, .24);
  --hbcu-gc-text: #fbf8ef;
  --hbcu-gc-muted: rgba(251, 248, 239, .68);
}

.game-center-overlay {
  justify-content: center !important;
  align-items: center !important;
  padding: clamp(.55rem, 2vw, 1.5rem) !important;
  background:
    radial-gradient(circle at 16% 12%, rgba(199, 53, 46, .18), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(47, 138, 75, .16), transparent 28%),
    rgba(0, 0, 0, .84) !important;
  backdrop-filter: blur(14px) saturate(118%) !important;
}

.game-center-panel.hbcu-game-center-modal {
  position: relative;
  width: min(1120px, 100%) !important;
  max-height: min(92vh, 920px);
  padding: 0 !important;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(212, 175, 55, .46) !important;
  border-radius: 30px !important;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(199,53,46,.24), transparent 31%),
    radial-gradient(circle at 92% 0%, rgba(47,138,75,.22), transparent 31%),
    linear-gradient(180deg, #111713 0%, #090c0a 44%, #050706 100%) !important;
  background-size: 38px 38px, 38px 38px, auto, auto, auto !important;
  box-shadow:
    0 34px 100px rgba(0,0,0,.72),
    0 0 0 1px rgba(255,255,255,.035),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
  scrollbar-color: rgba(212,175,55,.62) rgba(0,0,0,.26);
}

.game-center-panel.hbcu-game-center-modal::before {
  content: "";
  position: fixed;
  width: min(1120px, calc(100vw - 3rem));
  height: 5px;
  margin: 0;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, var(--hbcu-gc-red) 0 36%, var(--hbcu-gc-gold) 36% 64%, var(--hbcu-gc-green) 64% 100%);
}

.game-center-panel.hbcu-game-center-modal::after {
  content: "HBCU HOUR";
  position: absolute;
  right: 2rem;
  top: 5rem;
  color: rgba(255,255,255,.025);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .8;
  font-weight: 1000;
  letter-spacing: -.08em;
  pointer-events: none;
}

.game-center-panel.hbcu-game-center-modal > [data-game-center-content] {
  position: relative;
  z-index: 1;
  padding: 0 clamp(.8rem, 2.4vw, 1.7rem) clamp(1rem, 2.4vw, 1.7rem);
}

.game-center-close {
  position: sticky !important;
  float: right;
  top: .85rem !important;
  right: .85rem !important;
  z-index: 20;
  width: 44px !important;
  height: 44px !important;
  margin: .85rem .85rem -3.65rem 0;
  border: 1px solid rgba(212,175,55,.48) !important;
  background: rgba(4,7,5,.88) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.game-center-close:hover,
.game-center-close:focus-visible {
  transform: rotate(3deg) scale(1.04);
  background: linear-gradient(135deg, var(--hbcu-gc-red), var(--hbcu-gc-red-deep)) !important;
}

.game-center-kicker {
  display: flex !important;
  align-items: baseline;
  gap: .55rem;
  min-height: 72px;
  margin: 0 calc(clamp(.8rem, 2.4vw, 1.7rem) * -1) !important;
  padding: 1.15rem 5.2rem .9rem clamp(1rem, 3vw, 2rem) !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(212,175,55,.18);
  background: rgba(2,5,3,.70);
  backdrop-filter: blur(12px);
}

.game-center-kicker span {
  color: var(--hbcu-gc-gold-soft);
  font-size: .75rem;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.game-center-kicker strong {
  color: var(--hbcu-gc-text);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 1000;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.game-center-header {
  position: relative;
  isolation: isolate;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .62fr) minmax(0, 1fr) !important;
  gap: clamp(.85rem, 2vw, 1.5rem) !important;
  align-items: center;
  min-height: 245px;
  margin: 0 0 1rem !important;
  padding: clamp(1.15rem, 3vw, 2rem) !important;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.28) !important;
  border-top: 0 !important;
  border-radius: 0 0 28px 28px !important;
  background:
    radial-gradient(circle at 15% 42%, rgba(199,53,46,.30), transparent 34%),
    radial-gradient(circle at 85% 42%, rgba(47,138,75,.28), transparent 34%),
    linear-gradient(120deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    rgba(4,7,5,.80) !important;
  box-shadow: 0 20px 54px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.game-center-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(199,53,46,.12), transparent 38%, transparent 62%, rgba(47,138,75,.12));
}

.game-center-team .team {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: .8rem !important;
  width: 100%;
  color: var(--hbcu-gc-text);
  font-size: clamp(1rem, 2.1vw, 1.38rem) !important;
  line-height: 1.04;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -.025em;
}

.game-center-team .team-logo,
.game-center-team .team-logo-fallback {
  width: clamp(88px, 10vw, 116px) !important;
  height: clamp(88px, 10vw, 116px) !important;
  flex-basis: clamp(88px, 10vw, 116px) !important;
  padding: .35rem;
  border-radius: 24px !important;
  object-fit: contain;
  background: rgba(0,0,0,.34) !important;
  box-shadow: 0 20px 42px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.game-center-team.away-side .team-logo,
.game-center-team.away-side .team-logo-fallback {
  border: 1px solid rgba(199,53,46,.58) !important;
  filter: drop-shadow(0 0 16px rgba(199,53,46,.18));
}

.game-center-team.home-side .team-logo,
.game-center-team.home-side .team-logo-fallback {
  border: 1px solid rgba(47,138,75,.58) !important;
  filter: drop-shadow(0 0 16px rgba(47,138,75,.18));
}

.game-center-score-block {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: .5rem;
  min-width: 0 !important;
  padding: 1rem .75rem !important;
  border: 1px solid rgba(212,175,55,.34) !important;
  border-radius: 24px !important;
  background: rgba(0,0,0,.44) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.hbcu-gc-scoreline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: var(--hbcu-gc-text);
  font-variant-numeric: tabular-nums;
}

.hbcu-gc-scoreline[hidden] { display: none !important; }

.hbcu-gc-scoreline strong {
  min-width: 1.4ch;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: .82;
  font-weight: 1000;
  letter-spacing: -.08em;
  text-align: center;
}

.hbcu-gc-scoreline span {
  color: var(--hbcu-gc-gold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
}

.game-center-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: .38rem .68rem;
  border: 1px solid rgba(212,175,55,.26);
  border-radius: 999px;
  color: var(--hbcu-gc-text);
  background: rgba(255,255,255,.06);
  font-size: .68rem !important;
  line-height: 1.15;
  font-weight: 1000;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

[data-game-center-state="live"] .game-center-status,
[data-game-center-state="halftime"] .game-center-status {
  border-color: rgba(74,222,128,.44);
  background: rgba(22,163,74,.20);
}

[data-game-center-state="stale"] .game-center-status,
[data-game-center-state="reconnecting"] .game-center-status,
[data-game-center-state="final_provisional"] .game-center-status {
  border-color: rgba(250,204,21,.46);
  background: rgba(202,138,4,.20);
}

.game-center-vs {
  margin: 0 !important;
  color: var(--hbcu-gc-gold-soft) !important;
  font-size: .7rem !important;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.game-center-extra-info-slot {
  margin: .9rem 0 !important;
  padding: .75rem !important;
  border-color: rgba(212,175,55,.22) !important;
  border-radius: 20px !important;
  background: rgba(9,13,10,.78) !important;
}

.game-center-extra-info-kicker { display: none !important; }

.game-center-details-teams {
  grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  gap: .65rem !important;
}

.game-center-details-team-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: .65rem;
  padding: .65rem .8rem !important;
  border-radius: 15px !important;
  background: rgba(255,255,255,.035) !important;
}

.game-center-details-team-card em,
.game-center-details-team-card span,
.game-center-details-team-card strong { margin: 0 !important; }

.game-center-details-team-card span {
  color: var(--hbcu-gc-text) !important;
  font-size: .82rem !important;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-center-meta-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0,1fr)) !important;
  gap: .65rem !important;
  margin: .9rem 0 !important;
}

.game-center-meta-grid > div {
  min-height: 84px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .28rem;
  padding: .75rem .6rem !important;
  border: 1px solid rgba(212,175,55,.18) !important;
  border-radius: 16px !important;
  background: var(--hbcu-gc-card) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.055) !important;
}

.game-center-meta-grid span {
  color: var(--hbcu-gc-gold-soft) !important;
  font-size: .62rem !important;
  font-weight: 1000;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.game-center-meta-grid strong {
  color: var(--hbcu-gc-text) !important;
  font-size: .78rem !important;
  line-height: 1.25;
  text-align: center;
}

.game-center-live-box {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 1rem !important;
  margin: .9rem 0 !important;
  padding: 1rem 1.1rem !important;
  border: 1px solid rgba(212,175,55,.28) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(90deg, rgba(199,53,46,.11), transparent 42%, rgba(47,138,75,.10)),
    rgba(8,12,9,.88) !important;
}

.game-center-section-label {
  color: var(--hbcu-gc-gold-soft) !important;
  text-align: left !important;
}

.game-center-live-box h2 {
  margin: .12rem 0 0 !important;
  color: var(--hbcu-gc-text);
  font-size: clamp(1.1rem, 2.5vw, 1.65rem) !important;
  line-height: 1.08;
  text-align: left !important;
}

.game-center-links,
.game-center-schedule-buttons {
  justify-content: flex-end !important;
}

.game-center-link,
.game-center-unavailable,
.game-center-schedule-button {
  border-radius: 12px !important;
}

.game-center-link.primary {
  background: linear-gradient(135deg, var(--hbcu-gc-red), var(--hbcu-gc-red-deep)) !important;
}

.game-center-schedule-button.home-schedule {
  background: linear-gradient(135deg, var(--hbcu-gc-green), var(--hbcu-gc-green-deep)) !important;
}

.hbcu-live-adapter-shell {
  margin: .9rem 0 1rem !important;
  padding: .9rem 1rem !important;
  border: 1px solid rgba(212,175,55,.28) !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(255,255,255,.025)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 30px rgba(0,0,0,.20);
}

.hbcu-live-adapter-kicker,
.hbcu-live-adapter-source { color: var(--hbcu-gc-gold-soft) !important; }

.game-center-stats-grid.game-center-polished-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0,1fr)) !important;
  gap: .8rem !important;
}

.game-center-stats-grid.game-center-polished-grid > .game-center-stat-card {
  grid-column: span 6;
}

.game-center-stats-grid.game-center-polished-grid > .hbcu-live-snapshot-card,
.game-center-stats-grid.game-center-polished-grid > .hbcu-player-stats-card,
.game-center-stats-grid.game-center-polished-grid > .hbcu-timeline-card {
  grid-column: 1 / -1;
}

.game-center-stat-card {
  padding: 1rem !important;
  border: 1px solid rgba(212,175,55,.20) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 52%),
    var(--hbcu-gc-card) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.055) !important;
}

.game-center-stat-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 .75rem !important;
  color: var(--hbcu-gc-text) !important;
  font-size: .82rem !important;
  font-weight: 1000;
  letter-spacing: .10em !important;
  text-transform: uppercase;
}

.game-center-stat-card h3::after {
  content: "";
  width: 34px;
  height: 2px;
  margin-left: .55rem;
  background: linear-gradient(90deg, var(--hbcu-gc-gold), transparent);
}

.hbcu-live-snapshot-card {
  background:
    radial-gradient(circle at 10% 30%, rgba(199,53,46,.18), transparent 32%),
    radial-gradient(circle at 90% 30%, rgba(47,138,75,.17), transparent 32%),
    var(--hbcu-gc-card) !important;
}

.hbcu-live-score-team strong { color: var(--hbcu-gc-text); font-size: clamp(2.2rem, 4vw, 3.25rem) !important; }
.hbcu-live-score-team span { color: var(--hbcu-gc-muted) !important; font-weight: 900; }
.hbcu-live-score-divider { color: var(--hbcu-gc-gold) !important; }
.hbcu-live-snapshot-meta { justify-content: center; }

.game-center-comparison-head {
  border-color: rgba(212,175,55,.18) !important;
  background: rgba(212,175,55,.06) !important;
}

.game-center-comparison-head span,
.game-center-comparison-head strong,
.hbcu-player-team-panel h4 { color: var(--hbcu-gc-gold-soft) !important; }

.hbcu-player-team-panel,
.hbcu-player-stat-row,
.hbcu-live-leader-row,
.hbcu-live-timeline-row {
  border-color: rgba(212,175,55,.14) !important;
  background: rgba(0,0,0,.26) !important;
}

.game-center-footnote {
  max-width: none !important;
  margin: 1rem 0 0 !important;
  padding: .85rem 1rem !important;
  border: 1px solid rgba(212,175,55,.16);
  border-left: 4px solid var(--hbcu-gc-gold) !important;
  border-radius: 14px;
  color: var(--hbcu-gc-muted) !important;
  background: rgba(0,0,0,.26) !important;
  text-align: left !important;
}

@media (max-width: 900px) {
  .game-center-header {
    grid-template-columns: minmax(0,1fr) minmax(145px,.55fr) minmax(0,1fr) !important;
    min-height: 220px;
  }

  .game-center-meta-grid { grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
  .game-center-live-box { grid-template-columns: 1fr !important; }
  .game-center-section-label,
  .game-center-live-box h2 { text-align: center !important; }
  .game-center-links,
  .game-center-schedule-buttons { justify-content: center !important; }
}

@media (max-width: 700px) {
  .game-center-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .game-center-panel.hbcu-game-center-modal {
    width: 100% !important;
    max-height: 96dvh;
    border-radius: 26px 26px 0 0 !important;
    border-bottom: 0 !important;
  }

  .game-center-panel.hbcu-game-center-modal::before {
    width: 100%;
    border-radius: 26px 26px 0 0;
  }

  .game-center-panel.hbcu-game-center-modal::after { display: none; }

  .game-center-kicker {
    min-height: 64px;
    padding-left: 1rem !important;
  }

  .game-center-header {
    grid-template-columns: minmax(0,1fr) 112px minmax(0,1fr) !important;
    gap: .45rem !important;
    min-height: 185px;
    padding: .85rem .55rem !important;
    border-radius: 0 0 22px 22px !important;
  }

  .game-center-team .team {
    gap: .45rem !important;
    font-size: .72rem !important;
    line-height: 1.08;
  }

  .game-center-team .team-logo,
  .game-center-team .team-logo-fallback {
    width: 62px !important;
    height: 62px !important;
    flex-basis: 62px !important;
    border-radius: 17px !important;
  }

  .game-center-score-block {
    padding: .7rem .3rem !important;
    border-radius: 18px !important;
  }

  .hbcu-gc-scoreline strong { font-size: 2.35rem; }
  .hbcu-gc-scoreline { gap: .25rem; }
  .game-center-status { min-height: 26px; padding: .3rem .45rem; font-size: .54rem !important; }

  .game-center-details-teams { grid-template-columns: 1fr !important; }
  .game-center-details-team-card { grid-template-columns: auto minmax(0,1fr); }
  .game-center-details-team-card strong { grid-column: 2; justify-self: start; }

  .game-center-meta-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .game-center-meta-grid > div:last-child { grid-column: 1 / -1; }

  .game-center-links,
  .game-center-schedule-buttons {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr));
    width: 100%;
  }

  .game-center-link,
  .game-center-unavailable,
  .game-center-schedule-button {
    width: 100% !important;
  }

  .game-center-stats-grid.game-center-polished-grid {
    grid-template-columns: 1fr !important;
  }

  .game-center-stats-grid.game-center-polished-grid > .game-center-stat-card {
    grid-column: 1 !important;
  }

  .hbcu-player-stats-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 410px) {
  .game-center-kicker { gap: .35rem; }
  .game-center-kicker span { font-size: .62rem; }
  .game-center-kicker strong { font-size: 1.05rem; }
  .game-center-header { grid-template-columns: minmax(0,1fr) 92px minmax(0,1fr) !important; }
  .game-center-team .team-logo,
  .game-center-team .team-logo-fallback {
    width: 52px !important;
    height: 52px !important;
    flex-basis: 52px !important;
  }
  .hbcu-gc-scoreline strong { font-size: 1.95rem; }
  .game-center-meta-grid { grid-template-columns: 1fr !important; }
  .game-center-meta-grid > div:last-child { grid-column: auto; }
}

/* v3.20.3.8.2 — HBCU Hour broadcast cards + tabbed Game Center
   Matches the structural aesthetic of The Rant and Bayou Recap while keeping
   HBCU Hour red, green, gold, and black branding. */
:root {
  --hbcu-broadcast-gold: #f0c64f;
  --hbcu-broadcast-gold-soft: #ffe28a;
  --hbcu-broadcast-red: #a92d28;
  --hbcu-broadcast-green: #287343;
  --hbcu-broadcast-black: #080705;
  --hbcu-broadcast-brown: #1a1208;
  --hbcu-broadcast-card: #0d0b09;
  --hbcu-broadcast-line: rgba(240, 198, 79, .28);
  --hbcu-broadcast-text: #fff9eb;
  --hbcu-broadcast-muted: rgba(255, 249, 235, .70);
}

/* Full scoreboard: remove the boxed page margins and let the board breathe edge to edge. */
.scoreboard-v3623-custom {
  margin: 0 !important;
  width: 100% !important;
  overflow-x: hidden;
}

.scoreboard-v3623-custom .clean-scoreboard-stage[data-scoreboard-mode="cards"] {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 0 2rem !important;
}

.scoreboard-v3623-custom .clean-scoreboard-stage[data-scoreboard-mode="cards"] .custom-scoreboard-title {
  width: 100%;
  margin: 0 !important;
  padding: clamp(1.2rem, 3vw, 2.2rem) clamp(.85rem, 2.4vw, 2rem) 1.25rem;
}

.scoreboard-v3623-custom .clean-scoreboard-stage[data-scoreboard-mode="cards"] .custom-scoreboard-panel {
  width: 100%;
  margin: 0 !important;
  padding: clamp(.8rem, 2vw, 1.25rem) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.46) !important;
}

.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-head {
  display: none !important;
}

.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  display: grid !important;
  gap: .78rem;
  border: 0 !important;
  background: transparent !important;
}

/* Shared HBCU matchup card language for the home preview and full scoreboard. */
.hbcu-score-card {
  min-width: 0;
  min-height: 270px;
  display: flex !important;
  flex-direction: column;
  padding: .78rem .78rem .72rem !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(240,198,79,.055), transparent 42%),
    linear-gradient(180deg, #15110d 0%, #0c0a08 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 14px 30px rgba(0,0,0,.30) !important;
  color: var(--hbcu-broadcast-text);
  overflow: hidden;
  isolation: isolate;
}

.hbcu-score-card::after {
  width: 150px !important;
  height: 150px !important;
  right: -74px !important;
  top: -80px !important;
  background: radial-gradient(circle, rgba(240,198,79,.10), transparent 68%) !important;
}

.hbcu-score-card:hover,
.hbcu-score-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240,198,79,.52) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.075), 0 18px 42px rgba(0,0,0,.40) !important;
}

.hbcu-score-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .55rem;
  margin-bottom: .88rem;
  color: var(--hbcu-broadcast-gold-soft);
  font-size: .70rem;
  font-weight: 1000;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.hbcu-score-card-status {
  color: var(--hbcu-broadcast-gold-soft);
  white-space: nowrap;
}

.hbcu-score-card-date {
  min-width: 0;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hbcu-score-card-teams {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .66rem;
  margin-bottom: .65rem;
}

.hbcu-score-card-team {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: .62rem;
  min-height: 52px;
}

.hbcu-score-card-logo,
.hbcu-score-card-logo-fallback {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: grid;
  place-items: center;
  font-weight: 1000;
}

.hbcu-score-card-team strong {
  min-width: 0;
  color: var(--hbcu-broadcast-text);
  font-size: clamp(.92rem, 1.25vw, 1.08rem);
  line-height: 1.05;
  font-weight: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hbcu-score-card-score {
  min-width: 1.2ch;
  color: var(--hbcu-broadcast-gold-soft);
  font-size: 1.28rem;
  line-height: 1;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.hbcu-score-card-live-summary {
  width: max-content;
  max-width: 100%;
  margin: .18rem 0 .45rem !important;
  border-radius: 999px !important;
}

.hbcu-score-card-action {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: .45rem;
  color: var(--hbcu-broadcast-gold-soft);
  font-size: .70rem;
  font-weight: 1000;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.hbcu-score-card-location,
.hbcu-score-card-tv {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  line-height: 1.35;
  font-weight: 800;
}

.hbcu-score-card-location { margin-top: .36rem; }
.hbcu-score-card-tv { margin-top: .12rem; }
.hbcu-score-card-tv strong { color: #fff; }

/* Exact broadcast-style centered Game Center. */
.game-center-overlay {
  align-items: center !important;
  justify-content: center !important;
  padding: .55rem !important;
  background: rgba(0,0,0,.86) !important;
  backdrop-filter: blur(13px) saturate(110%) !important;
}

.game-center-panel.hbcu-game-center-modal {
  position: relative;
  width: min(970px, calc(100vw - 1.1rem)) !important;
  max-height: calc(100dvh - 1.1rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(240,198,79,.44) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(40,115,67,.11), transparent 28%),
    radial-gradient(circle at 8% 0%, rgba(169,45,40,.12), transparent 28%),
    linear-gradient(180deg, #211607 0%, #100c07 36%, #070605 100%) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.78), inset 0 1px 0 rgba(255,255,255,.055) !important;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: rgba(240,198,79,.60) rgba(255,255,255,.08);
}

.game-center-panel.hbcu-game-center-modal::before {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 100% !important;
  height: 4px !important;
  margin: 0 !important;
  border-radius: 30px 30px 0 0 !important;
  background: linear-gradient(90deg, var(--hbcu-broadcast-red) 0 35%, var(--hbcu-broadcast-gold) 35% 65%, var(--hbcu-broadcast-green) 65% 100%) !important;
}

.game-center-panel.hbcu-game-center-modal::after { display: none !important; }

.game-center-panel.hbcu-game-center-modal > [data-game-center-content] {
  padding: 0 clamp(.9rem, 2.2vw, 1.4rem) clamp(1rem, 2vw, 1.35rem) !important;
}

.game-center-close {
  position: absolute !important;
  float: none !important;
  top: 22px !important;
  right: 22px !important;
  z-index: 30;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  border: 1px solid rgba(240,198,79,.42) !important;
  border-radius: 999px !important;
  background: rgba(28,19,8,.92) !important;
  color: #fff !important;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,.42) !important;
}

.game-center-close:hover,
.game-center-close:focus-visible {
  transform: scale(1.04) !important;
  background: var(--hbcu-broadcast-red) !important;
}

.game-center-titlebar {
  min-height: 102px;
  padding: 1.35rem 4.5rem .95rem 0;
  border-bottom: 1px solid rgba(240,198,79,.24);
}

.game-center-titlebar .game-center-kicker {
  display: block !important;
  min-height: 0 !important;
  margin: 0 0 .22rem !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: var(--hbcu-broadcast-gold-soft) !important;
  font-size: .72rem !important;
  line-height: 1.2;
  font-weight: 1000;
  letter-spacing: .06em;
  text-align: left !important;
  text-transform: uppercase;
}

.game-center-matchup-title {
  max-width: calc(100% - 1rem);
  margin: 0;
  color: var(--hbcu-broadcast-text);
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: .95;
  font-weight: 1000;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.game-center-feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 165px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1.22rem 0 1.1rem;
}

.game-center-feature-team {
  position: relative;
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem .9rem 1.15rem;
  border: 1px solid rgba(240,198,79,.24);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20,14,8,.96), rgba(10,8,6,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
  text-align: center;
  overflow: hidden;
}

.game-center-feature-team.away {
  background:
    radial-gradient(circle at 15% 18%, rgba(169,45,40,.13), transparent 38%),
    linear-gradient(180deg, rgba(20,14,8,.96), rgba(10,8,6,.96));
}

.game-center-feature-team.home {
  background:
    radial-gradient(circle at 85% 18%, rgba(40,115,67,.13), transparent 38%),
    linear-gradient(180deg, rgba(20,14,8,.96), rgba(10,8,6,.96));
}

.game-center-feature-logo,
.game-center-feature-logo-fallback {
  width: clamp(78px, 10vw, 108px);
  height: clamp(78px, 10vw, 108px);
  display: grid;
  place-items: center;
  object-fit: contain;
  color: #fff;
  font-size: 3rem;
  font-weight: 1000;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.45));
}

.game-center-feature-team-name {
  max-width: 100%;
  margin-top: .65rem;
  color: var(--hbcu-broadcast-text);
  font-size: clamp(1.12rem, 2.5vw, 1.48rem);
  line-height: 1.02;
  font-weight: 1000;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.game-center-feature-record {
  margin-top: .28rem;
  color: var(--hbcu-broadcast-muted);
  font-size: .72rem;
  font-weight: 800;
}

.game-center-feature-score {
  width: 100%;
  margin-top: auto;
  padding-top: .82rem;
  color: var(--hbcu-broadcast-gold-soft);
  font-size: 2rem;
  line-height: 1;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
  text-align: var(--score-align, left);
}

.game-center-feature-team.home .game-center-feature-score {
  --score-align: right;
}

.game-center-feature-middle {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
}

.game-center-feature-week {
  color: var(--hbcu-broadcast-gold-soft);
  font-size: .68rem;
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.game-center-feature-middle .game-center-status {
  display: inline-flex;
  min-height: 31px;
  padding: .42rem .75rem;
  border: 1px solid rgba(240,198,79,.42) !important;
  border-radius: 999px !important;
  background: rgba(240,198,79,.05) !important;
  color: var(--hbcu-broadcast-gold-soft) !important;
  font-size: .70rem !important;
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.game-center-feature-middle strong {
  color: var(--hbcu-broadcast-text);
  font-size: .76rem;
  line-height: 1.28;
  font-weight: 1000;
  text-transform: uppercase;
}

.game-center-feature-middle small {
  color: var(--hbcu-broadcast-muted);
  font-size: .72rem;
  font-weight: 800;
}

[data-game-center-state="live"] .game-center-feature-middle .game-center-status,
[data-game-center-state="halftime"] .game-center-feature-middle .game-center-status {
  border-color: rgba(74,222,128,.52) !important;
  background: rgba(22,163,74,.16) !important;
  color: #9af3b8 !important;
}

[data-game-center-state="final_provisional"] .game-center-feature-middle .game-center-status,
[data-game-center-state="stale"] .game-center-feature-middle .game-center-status,
[data-game-center-state="reconnecting"] .game-center-feature-middle .game-center-status {
  border-color: rgba(250,204,21,.52) !important;
  background: rgba(202,138,4,.14) !important;
}

.game-center-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .42rem;
  padding: .42rem;
  border: 1px solid rgba(240,198,79,.22);
  border-radius: 999px;
  background: rgba(5,4,3,.76);
}

.game-center-tab {
  min-width: 0;
  min-height: 39px;
  padding: .54rem .55rem;
  border: 1px solid rgba(240,198,79,.22) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.018) !important;
  color: rgba(255,249,235,.74) !important;
  font-size: .66rem;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-center-tab:hover:not(:disabled),
.game-center-tab:focus-visible:not(:disabled) {
  border-color: rgba(240,198,79,.58) !important;
  color: #fff !important;
}

.game-center-tab.active {
  border-color: rgba(240,198,79,.62) !important;
  background: linear-gradient(180deg, rgba(169,45,40,.30), rgba(93,39,10,.52)) !important;
  color: var(--hbcu-broadcast-text) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.game-center-tab.disabled,
.game-center-tab:disabled {
  opacity: .34;
  cursor: not-allowed;
}

.game-center-tab span { font-size: .45rem; }

.game-center-tab-note {
  margin: .52rem 0 .9rem;
  color: rgba(255,249,235,.48);
  font-size: .68rem;
  font-weight: 700;
}

.game-center-tab-note span {
  color: var(--hbcu-broadcast-gold);
  font-size: .55rem;
}

.game-center-tab-panel { display: none; }
.game-center-tab-panel.active { display: block; }

.game-center-story-shell,
.game-center-source-actions,
.game-center-quick-facts,
.game-center-overview-grid,
.game-center-tab-grid {
  margin-top: .72rem;
}

.game-center-story-shell {
  overflow: hidden;
  border: 1px solid rgba(240,198,79,.22);
  border-radius: 24px;
  background: rgba(8,6,4,.72);
}

.game-center-story-shell > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 49px;
  padding: .78rem .82rem;
  border-bottom: 1px solid rgba(240,198,79,.20);
  color: var(--hbcu-broadcast-text);
  text-transform: uppercase;
}

.game-center-story-shell > header strong {
  font-size: .82rem;
  letter-spacing: .04em;
}

.game-center-story-shell > header span {
  color: var(--hbcu-broadcast-gold-soft);
  font-size: .67rem;
  font-weight: 1000;
}

.game-center-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  padding: .78rem;
}

.game-center-story-card {
  min-height: 88px;
  padding: .74rem .82rem;
  border: 1px solid rgba(255,255,255,.13);
  border-left: 4px solid var(--hbcu-broadcast-gold);
  border-radius: 15px;
  background: rgba(16,13,10,.92);
}

.game-center-story-card span {
  display: block;
  color: var(--hbcu-broadcast-gold-soft);
  font-size: .62rem;
  font-weight: 1000;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.game-center-story-card strong {
  display: block;
  margin-top: .35rem;
  color: var(--hbcu-broadcast-text);
  font-size: .82rem;
  line-height: 1.36;
  font-weight: 850;
}

.game-center-overview-grid,
.game-center-tab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}

.game-center-overview-grid > *,
.game-center-tab-grid > * { margin: 0 !important; }

.game-center-quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .55rem;
}

.game-center-quick-facts > div {
  min-width: 0;
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: .26rem;
  padding: .62rem .7rem;
  border: 1px solid rgba(240,198,79,.16);
  border-radius: 14px;
  background: rgba(13,10,7,.90);
  text-align: center;
}

.game-center-quick-facts span,
.game-center-source-actions span {
  color: var(--hbcu-broadcast-gold-soft);
  font-size: .60rem;
  font-weight: 1000;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.game-center-quick-facts strong,
.game-center-source-actions strong {
  color: var(--hbcu-broadcast-text);
  font-size: .74rem;
  line-height: 1.25;
}

.game-center-source-actions {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: .7rem;
  padding: .72rem .82rem;
  border: 1px solid rgba(240,198,79,.18);
  border-radius: 15px;
  background: rgba(13,10,7,.86);
}

.game-center-source-actions > div:first-child { display: grid; gap: .2rem; }
.game-center-source-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem; }
.game-center-source-buttons .game-center-links,
.game-center-source-buttons .game-center-schedule-buttons { margin: 0 !important; justify-content: flex-end !important; }

.game-center-panel .hbcu-live-adapter-shell,
.game-center-panel .game-center-stat-card {
  border-color: rgba(240,198,79,.20) !important;
  background: linear-gradient(180deg, rgba(20,15,9,.92), rgba(10,8,6,.94)) !important;
  border-radius: 18px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 10px 25px rgba(0,0,0,.22) !important;
}

.game-center-panel .game-center-stat-card h3 {
  color: var(--hbcu-broadcast-text) !important;
}

.game-center-panel .game-center-comparison-head {
  background: rgba(240,198,79,.055) !important;
}

.game-center-footnote {
  margin: .86rem 0 0 !important;
  border-left-color: var(--hbcu-broadcast-gold) !important;
  background: rgba(13,10,7,.78) !important;
  color: var(--hbcu-broadcast-muted) !important;
}

@media (max-width: 1350px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  }
}

@media (max-width: 980px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  }

  .game-center-feature-stage {
    grid-template-columns: minmax(0,1fr) 132px minmax(0,1fr);
  }

  .game-center-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .game-center-tab { flex: 0 0 auto; min-width: 108px; }
  .game-center-quick-facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  }

  .game-center-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .game-center-panel.hbcu-game-center-modal {
    width: 100% !important;
    max-height: 96dvh !important;
    border-radius: 24px 24px 0 0 !important;
    border-bottom: 0 !important;
  }

  .game-center-titlebar {
    min-height: 86px;
    padding: 1.15rem 3.5rem .8rem 0;
  }

  .game-center-matchup-title { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .game-center-close { top: 15px !important; right: 15px !important; }

  .game-center-feature-stage {
    grid-template-columns: minmax(0,1fr) 92px minmax(0,1fr);
    gap: .42rem;
    padding-top: .85rem;
  }

  .game-center-feature-team {
    min-height: 190px;
    padding: .72rem .35rem .8rem;
    border-radius: 18px;
  }

  .game-center-feature-logo,
  .game-center-feature-logo-fallback {
    width: 64px;
    height: 64px;
  }

  .game-center-feature-team-name {
    font-size: .80rem;
    line-height: 1.08;
  }

  .game-center-feature-record { font-size: .58rem; }
  .game-center-feature-score { font-size: 1.55rem; }
  .game-center-feature-week { font-size: .56rem; }
  .game-center-feature-middle .game-center-status { padding: .34rem .46rem; font-size: .56rem !important; }
  .game-center-feature-middle strong { font-size: .58rem; }
  .game-center-feature-middle small { font-size: .58rem; }

  .game-center-story-grid,
  .game-center-overview-grid,
  .game-center-tab-grid {
    grid-template-columns: 1fr;
  }

  .game-center-source-actions {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .game-center-source-buttons,
  .game-center-source-buttons .game-center-links,
  .game-center-source-buttons .game-center-schedule-buttons {
    justify-content: center !important;
  }
}

@media (max-width: 430px) {
  .game-center-panel.hbcu-game-center-modal > [data-game-center-content] {
    padding-inline: .68rem !important;
  }

  .game-center-feature-stage { grid-template-columns: minmax(0,1fr) 78px minmax(0,1fr); }
  .game-center-feature-logo,
  .game-center-feature-logo-fallback { width: 54px; height: 54px; }
  .game-center-feature-team-name { font-size: .70rem; }
  .game-center-quick-facts { grid-template-columns: 1fr; }
  .hbcu-score-card-team { grid-template-columns: 34px minmax(0,1fr) auto; }
  .hbcu-score-card-logo,
  .hbcu-score-card-logo-fallback { width: 34px; height: 34px; }
}


/* v3.20.3.10 — cleaner broadcast-style HBCU score cards */
.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  gap: 1rem;
}

.hbcu-score-card {
  position: relative;
  min-width: 0;
  min-height: 368px;
  display: flex !important;
  flex-direction: column;
  padding: 1rem !important;
  border: 2px solid rgba(226, 226, 226, 0.72) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 28%),
    linear-gradient(180deg, rgba(20,20,20,.96) 0%, rgba(4,4,4,.98) 100%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 22px 44px rgba(0,0,0,.34) !important;
  color: var(--hbcu-broadcast-text);
  overflow: hidden;
  isolation: isolate;
}
.hbcu-score-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.hbcu-score-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0) 47%, rgba(255,255,255,.045) 50%, rgba(0,0,0,0) 53%);
  opacity: .45;
  pointer-events: none;
}
.hbcu-score-card:hover,
.hbcu-score-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.92) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 26px 54px rgba(0,0,0,.42) !important;
}
.hbcu-score-card--upcoming {
  border-color: rgba(240,198,79,.9) !important;
}
.hbcu-score-card[data-live-state="final"],
.hbcu-score-card[data-live-state="corrected"],
.hbcu-score-card--final {
  border-color: rgba(222, 225, 232, .88) !important;
}
.hbcu-score-card[data-live-state="live"],
.hbcu-score-card[data-live-state="stale"],
.hbcu-score-card[data-live-state="provisional"],
.hbcu-score-card--live {
  border-color: rgba(210, 214, 224, .88) !important;
}

.hbcu-score-card-header,
.hbcu-score-card-brandbar,
.hbcu-score-card-body,
.hbcu-score-card-context-row,
.hbcu-score-card-location,
.hbcu-score-card-actions,
.hbcu-score-card-live-summary { position: relative; z-index: 1; }

.hbcu-score-card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .8rem;
}
.hbcu-score-card-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .55rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 1rem;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(20,20,20,.96), rgba(0,0,0,.98));
}
.hbcu-score-card-status-pill.live {
  color: #fff;
  border-color: rgba(255, 40, 40, .58);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 0 18px rgba(204, 10, 10, .24);
}
.hbcu-score-card-status-pill.live::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-right: .55rem;
  border-radius: 999px;
  background: #ff3030;
  box-shadow: 0 0 14px rgba(255, 48, 48, .85);
}
.hbcu-score-card-status-pill.final {
  color: #111;
  border-color: rgba(255,255,255,.38);
  background: linear-gradient(180deg, #f2f2f2, #a7a7a7);
}
.hbcu-score-card-status-pill.upcoming {
  color: #111;
  border-color: rgba(240,198,79,.6);
  background: linear-gradient(180deg, #f1ca63, #b98522);
}
.hbcu-score-card-header-meta {
  justify-self: end;
  min-width: 0;
  color: rgba(255,255,255,.92);
  font-size: .96rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-align: right;
}

.hbcu-score-card-brandbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .65rem;
  margin: .95rem 0 1rem;
}
.hbcu-score-card-line {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.hbcu-score-card-line.green { background: linear-gradient(90deg, rgba(40,115,67,.18), #20da57, rgba(40,115,67,.18)); box-shadow: 0 0 14px rgba(32,218,87,.35); }
.hbcu-score-card-line.red { background: linear-gradient(90deg, rgba(169,45,40,.18), #ff3131, rgba(169,45,40,.18)); box-shadow: 0 0 14px rgba(255,49,49,.35); }
.hbcu-score-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 58px;
  padding: .35rem .8rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(14,14,14,.98), rgba(4,4,4,.98));
  color: #f6f0e6;
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: inset 0 -14px 24px rgba(0,0,0,.28), 0 14px 24px rgba(0,0,0,.24);
}

.hbcu-score-card-body {
  display: grid;
  gap: .9rem;
}
.hbcu-score-card-team {
  display: grid;
  grid-template-columns: 74px minmax(0,1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
}
.hbcu-score-card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
}
.hbcu-score-card-logo,
.hbcu-score-card-logo-fallback {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.hbcu-score-card-logo-fallback {
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 1.35rem;
}
.hbcu-score-card-identity {
  min-width: 0;
  display: grid;
  gap: .28rem;
}
.hbcu-score-card-identity strong {
  display: block;
  font-size: clamp(1.08rem, 1.38vw, 1.48rem);
  line-height: .98;
  font-weight: 1000;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.hbcu-score-card-record {
  color: rgba(255,255,255,.76);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}
.hbcu-score-card-score {
  min-width: 2ch;
  color: #ffffff;
  font-size: clamp(2.4rem, 3vw, 4rem);
  line-height: .92;
  font-weight: 1000;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.hbcu-score-card[data-live-state="live"] .hbcu-score-card-score,
.hbcu-score-card[data-live-state="stale"] .hbcu-score-card-score,
.hbcu-score-card--live .hbcu-score-card-score { text-shadow: 0 0 16px rgba(255,255,255,.12); }
.hbcu-score-card-vs {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hbcu-score-card-vs::before,
.hbcu-score-card-vs::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
}
.hbcu-score-card-vs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 34px;
  padding: .2rem .6rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(10,10,10,.92);
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: .04em;
}

.hbcu-score-card-live-summary {
  width: fit-content;
  max-width: 100%;
  margin: .9rem auto .65rem !important;
}
.hbcu-score-card-context-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .55rem .8rem;
  margin-top: .05rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.hbcu-score-card-location {
  margin-top: .45rem;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  line-height: 1.35;
  font-weight: 800;
}
.hbcu-score-card-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  margin-top: auto;
  padding-top: .95rem;
}
.hbcu-score-card-action-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .65rem .45rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(20,20,20,.96), rgba(5,5,5,.98));
  color: #f3efe7;
  font-size: .9rem;
  line-height: 1.05;
  font-weight: 1000;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.hbcu-score-card-action-button:hover,
.hbcu-score-card-action-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.3);
}
.hbcu-score-card-action-button.featured {
  border-color: rgba(201, 20, 20, .58);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

@media (max-width: 1320px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  }
}
@media (max-width: 960px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  }
  .hbcu-score-card { min-height: 352px; }
}
@media (max-width: 640px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  }
  .hbcu-score-card {
    min-height: 336px;
    padding: .88rem !important;
  }
  .hbcu-score-card-header-meta {
    font-size: .8rem;
  }
  .hbcu-score-card-team {
    grid-template-columns: 58px minmax(0,1fr) auto;
    gap: .8rem;
    min-height: 74px;
  }
  .hbcu-score-card-logo-wrap { min-width: 58px; }
  .hbcu-score-card-logo,
  .hbcu-score-card-logo-fallback { width: 52px; height: 52px; }
  .hbcu-score-card-identity strong { font-size: 1.1rem; }
  .hbcu-score-card-record { font-size: .86rem; }
  .hbcu-score-card-score { font-size: 2.85rem; }
  .hbcu-score-card-actions { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hbcu-score-card-action-button { min-height: 44px; font-size: .82rem; }
  .hbcu-score-card-badge { min-width: 108px; min-height: 52px; font-size: .92rem; }
}
@media (max-width: 430px) {
  .hbcu-score-card-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .hbcu-score-card-header-meta { justify-self: start; text-align: left; }
  .hbcu-score-card-brandbar { gap: .4rem; }
  .hbcu-score-card-team { grid-template-columns: 48px minmax(0,1fr) auto; gap: .72rem; }
  .hbcu-score-card-logo-wrap { min-width: 48px; }
  .hbcu-score-card-logo,
  .hbcu-score-card-logo-fallback { width: 44px; height: 44px; }
  .hbcu-score-card-identity strong { font-size: 1rem; }
  .hbcu-score-card-score { font-size: 2.4rem; }
  .hbcu-score-card-context-row { flex-direction: column; align-items: flex-start; }
}


/* v3.20.3.10.1 — score card text fit + logo badge */
.hbcu-score-card-badge {
  padding: .2rem .5rem;
  min-width: 120px;
}
.hbcu-score-card-badge-logo {
  display: block;
  width: 100%;
  max-width: 118px;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}
.hbcu-score-card-identity strong {
  font-size: clamp(.94rem, 1.1vw, 1.22rem);
  line-height: 1.02;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.hbcu-score-card-record {
  font-size: .92rem;
}
@media (max-width: 640px) {
  .hbcu-score-card-badge { min-width: 104px; }
  .hbcu-score-card-badge-logo { max-width: 102px; max-height: 42px; }
  .hbcu-score-card-identity strong { font-size: .98rem; }
  .hbcu-score-card-record { font-size: .82rem; }
}
@media (max-width: 430px) {
  .hbcu-score-card-badge { min-width: 96px; }
  .hbcu-score-card-badge-logo { max-width: 94px; max-height: 38px; }
  .hbcu-score-card-identity strong { font-size: .92rem; }
}


/* v3.20.3.10.2 — remove logo shadow box, improve team-name fit, default empty records */
.hbcu-score-card-brandbar {
  margin: .75rem 0 .85rem;
}
.hbcu-score-card-badge {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hbcu-score-card-badge-logo {
  max-width: 86px;
  max-height: 46px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.18));
}
.hbcu-score-card-team {
  grid-template-columns: 58px minmax(0,1fr) 64px;
  gap: .82rem;
  min-height: 82px;
}
.hbcu-score-card-logo-wrap {
  min-width: 58px;
}
.hbcu-score-card-logo,
.hbcu-score-card-logo-fallback {
  width: 52px;
  height: 52px;
}
.hbcu-score-card-identity {
  align-self: center;
}
.hbcu-score-card-identity strong {
  font-size: clamp(.88rem, .92vw, 1.08rem);
  line-height: 1.02;
  letter-spacing: 0;
  -webkit-line-clamp: 2;
  white-space: normal;
  overflow: hidden;
  text-overflow: clip;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}
.hbcu-score-card-record {
  font-size: .86rem;
}
.hbcu-score-card-score {
  width: 64px;
  min-width: 64px;
  font-size: clamp(2rem, 2.2vw, 2.85rem);
}
@media (max-width: 640px) {
  .hbcu-score-card-badge-logo { max-width: 76px; max-height: 42px; }
  .hbcu-score-card-team {
    grid-template-columns: 50px minmax(0,1fr) 54px;
    gap: .72rem;
    min-height: 72px;
  }
  .hbcu-score-card-logo-wrap { min-width: 50px; }
  .hbcu-score-card-logo,
  .hbcu-score-card-logo-fallback { width: 44px; height: 44px; }
  .hbcu-score-card-identity strong { font-size: .92rem; }
  .hbcu-score-card-record { font-size: .8rem; }
  .hbcu-score-card-score { width: 54px; min-width: 54px; font-size: 2.2rem; }
}
@media (max-width: 430px) {
  .hbcu-score-card-badge-logo { max-width: 70px; max-height: 38px; }
  .hbcu-score-card-team {
    grid-template-columns: 44px minmax(0,1fr) 48px;
    gap: .62rem;
  }
  .hbcu-score-card-logo-wrap { min-width: 44px; }
  .hbcu-score-card-logo,
  .hbcu-score-card-logo-fallback { width: 38px; height: 38px; }
  .hbcu-score-card-identity strong { font-size: .86rem; }
  .hbcu-score-card-score { width: 48px; min-width: 48px; font-size: 2rem; }
}


/* v3.20.3.10.3 — top-right card header shows date above time only */
.hbcu-score-card-header-meta {
  display: grid;
  gap: .14rem;
  justify-items: end;
  align-content: center;
  line-height: 1.08;
}
.hbcu-score-card-header-date,
.hbcu-score-card-header-time {
  display: block;
  white-space: nowrap;
}
.hbcu-score-card-header-date {
  color: rgba(255,255,255,.96);
  font-size: .92rem;
  font-weight: 1000;
}
.hbcu-score-card-header-time {
  color: rgba(255,255,255,.86);
  font-size: .88rem;
  font-weight: 900;
}
@media (max-width: 640px) {
  .hbcu-score-card-header-date { font-size: .84rem; }
  .hbcu-score-card-header-time { font-size: .8rem; }
}
@media (max-width: 430px) {
  .hbcu-score-card-header-meta {
    justify-items: start;
  }
}


/* v3.20.3.10.4 — tighten HBCU score-card spacing */
.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  gap: .85rem;
}
.hbcu-score-card {
  min-height: 332px;
  padding: .8rem !important;
}
.hbcu-score-card::before {
  inset: 10px;
}
.hbcu-score-card-header {
  gap: .65rem;
}
.hbcu-score-card-status-pill {
  min-height: 38px;
  padding: .48rem .9rem;
  font-size: .95rem;
}
.hbcu-score-card-header-meta {
  font-size: .9rem;
  line-height: 1.05;
}
.hbcu-score-card-brandbar {
  margin: .55rem 0 .65rem;
}
.hbcu-score-card-badge-logo {
  max-width: 74px;
  max-height: 40px;
}
.hbcu-score-card-body {
  gap: .55rem;
}
.hbcu-score-card-team {
  grid-template-columns: 54px minmax(0,1fr) 56px;
  gap: .68rem;
  min-height: 62px;
}
.hbcu-score-card-logo-wrap {
  min-width: 54px;
}
.hbcu-score-card-logo,
.hbcu-score-card-logo-fallback {
  width: 46px;
  height: 46px;
}
.hbcu-score-card-identity strong {
  font-size: clamp(.86rem, .9vw, 1rem);
  line-height: .98;
}
.hbcu-score-card-record {
  font-size: .8rem;
  line-height: 1;
}
.hbcu-score-card-score {
  width: 56px;
  min-width: 56px;
  font-size: clamp(1.85rem, 2vw, 2.5rem);
}
.hbcu-score-card-vs {
  gap: .45rem;
}
.hbcu-score-card-vs span {
  min-width: 40px;
  min-height: 28px;
  font-size: .95rem;
}
.hbcu-score-card-live-summary {
  margin: .6rem auto .4rem !important;
}
.hbcu-score-card-context-row {
  padding: .45rem .7rem;
  margin-top: 0;
  font-size: .82rem;
}
.hbcu-score-card-location {
  margin-top: .35rem;
  font-size: .78rem;
  line-height: 1.22;
}
.hbcu-score-card-actions {
  gap: .45rem;
  padding-top: .65rem;
}
.hbcu-score-card-action-button {
  min-height: 42px;
  padding: .5rem .4rem;
  font-size: .84rem;
}
@media (max-width: 960px) {
  .hbcu-score-card { min-height: 318px; }
}
@media (max-width: 640px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body { gap: .75rem; }
  .hbcu-score-card {
    min-height: 306px;
    padding: .76rem !important;
  }
  .hbcu-score-card-header-meta { font-size: .82rem; }
  .hbcu-score-card-badge-logo { max-width: 68px; max-height: 36px; }
  .hbcu-score-card-team {
    grid-template-columns: 46px minmax(0,1fr) 50px;
    gap: .58rem;
    min-height: 58px;
  }
  .hbcu-score-card-logo-wrap { min-width: 46px; }
  .hbcu-score-card-logo,
  .hbcu-score-card-logo-fallback { width: 40px; height: 40px; }
  .hbcu-score-card-identity strong { font-size: .84rem; }
  .hbcu-score-card-record { font-size: .76rem; }
  .hbcu-score-card-score { width: 50px; min-width: 50px; font-size: 2rem; }
  .hbcu-score-card-vs span { min-width: 36px; min-height: 26px; font-size: .9rem; }
  .hbcu-score-card-action-button { min-height: 40px; font-size: .8rem; }
}
@media (max-width: 430px) {
  .hbcu-score-card { min-height: 296px; }
  .hbcu-score-card-badge-logo { max-width: 64px; max-height: 34px; }
  .hbcu-score-card-team {
    grid-template-columns: 42px minmax(0,1fr) 44px;
    gap: .52rem;
    min-height: 54px;
  }
  .hbcu-score-card-logo-wrap { min-width: 42px; }
  .hbcu-score-card-logo,
  .hbcu-score-card-logo-fallback { width: 36px; height: 36px; }
  .hbcu-score-card-identity strong { font-size: .8rem; }
  .hbcu-score-card-score { width: 44px; min-width: 44px; font-size: 1.82rem; }
  .hbcu-score-card-context-row { font-size: .78rem; }
  .hbcu-score-card-location { font-size: .74rem; }
}


/* v3.20.3.12 — final launch-candidate accessibility refinement */
.scoreboard-skip-link {
  position: fixed;
  left: .65rem;
  top: -110px;
  z-index: 100000;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem .95rem;
  border-radius: 999px;
  background: #f0c64f;
  color: #080705;
  font-weight: 1000;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.scoreboard-skip-link:focus { top: .65rem; }
@media (prefers-reduced-motion: reduce) {
  .hbcu-score-card,
  .hbcu-score-card-action-button,
  .game-center-panel,
  .game-center-tab { transition: none !important; animation: none !important; }
}

/* v3.20.3.15.23 — homepage-matched five-card spacing with corrected panel alignment. */
.scoreboard-v3623-custom .clean-scoreboard-header {
  position: relative;
  z-index: 5000 !important;
  overflow: visible !important;
  isolation: isolate;
}

.scoreboard-v3623-custom .clean-scoreboard-stage {
  position: relative;
  z-index: 1 !important;
}

.scoreboard-v3623-custom .clean-nav {
  align-items: center;
  overflow: visible !important;
}

.scoreboard-shows-dropdown {
  position: relative;
  z-index: 5001;
  display: inline-flex;
  align-items: center;
}

.scoreboard-shows-trigger {
  appearance: none;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #d1d5db;
  padding: .45rem .1rem;
  font: inherit;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.scoreboard-shows-trigger::after {
  content: " ▾";
  margin-left: .28rem;
  color: #f5c542;
  font-size: .72em;
  vertical-align: middle;
}

.scoreboard-shows-dropdown:hover .scoreboard-shows-trigger,
.scoreboard-shows-dropdown:focus-within .scoreboard-shows-trigger,
.scoreboard-shows-dropdown.dropdown-open .scoreboard-shows-trigger {
  color: #fff;
  border-bottom-color: #e11d2e;
}

.scoreboard-shows-menu {
  position: absolute;
  top: calc(100% + .65rem);
  right: 0;
  left: auto;
  z-index: 5002;
  display: grid;
  gap: .45rem;
  min-width: 245px;
  padding: .65rem;
  border: 1px solid rgba(245, 197, 66, .38);
  border-radius: 16px;
  background: rgba(5, 8, 12, .98);
  box-shadow: 0 18px 45px rgba(0,0,0,.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(.4rem);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.scoreboard-shows-dropdown:hover .scoreboard-shows-menu,
.scoreboard-shows-dropdown:focus-within .scoreboard-shows-menu,
.scoreboard-shows-dropdown.dropdown-open .scoreboard-shows-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scoreboard-shows-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: .72rem .85rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #fff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.scoreboard-shows-menu a:hover,
.scoreboard-shows-menu a:focus-visible {
  border-color: rgba(245,197,66,.72);
  background: rgba(225,29,46,.34);
  color: #f5c542;
  outline: none;
}

/* Use the same equal-fill rhythm as the HBCU Hour homepage compact scoreboard:
   flexible columns and a true 1rem gap. The full page simply caps the count at five. */
.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-content: stretch !important;
  align-items: stretch !important;
  gap: 1rem !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  padding-inline: 0 !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body > .hbcu-score-card,
.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body > .game-card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  justify-self: stretch !important;
  box-sizing: border-box !important;
}

@media (min-width: 720px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1080px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1400px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

/* This is the homepage look: five equal cards with 1rem spacing on a wide desktop. */
@media (min-width: 1700px) {
  .clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 799px) {
  .scoreboard-v3623-custom .clean-scoreboard-header {
    z-index: 5000 !important;
  }

  .scoreboard-shows-dropdown {
    width: 100%;
    display: grid;
  }

  .scoreboard-shows-trigger {
    text-align: left;
  }

  .scoreboard-shows-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    margin-top: .4rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
    box-shadow: none;
  }
}


/* v3.20.3.15.23 — remove duplicate grid inset.
   The scoreboard panel already supplies responsive side padding, so the card grid
   should use the full inner width and align with the filters/count line. */
.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* v3.20.3.15.24 — scoreboard panel border-box containment fix.
   The panel previously combined width:100% with horizontal padding under
   content-box sizing, making the rendered panel wider than the viewport and
   cropping the fifth card on the right. */
.scoreboard-v3623-custom .clean-scoreboard-stage[data-scoreboard-mode="cards"] .custom-scoreboard-panel {
  box-sizing: border-box !important;
  max-width: 100% !important;
  padding-left: clamp(.7rem, 1vw, 1rem) !important;
  padding-right: clamp(.7rem, 1vw, 1rem) !important;
  overflow: visible !important;
}

.clean-scoreboard-stage[data-scoreboard-mode="cards"] .clean-table-body {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* v3.20.3.17 — HBCU Team Game Finder */
.team-game-finder {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 1rem 0 .9rem;
  padding: clamp(.85rem, 1.6vw, 1.2rem);
  border: 1px solid rgba(247, 213, 95, .3);
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(112, 9, 18, .3), rgba(7, 8, 11, .96) 42%, rgba(0, 80, 34, .25));
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
  overflow: visible;
  z-index: 12;
}

.team-game-finder-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}

.team-game-finder-heading > div {
  display: grid;
  gap: .15rem;
}

.team-game-finder-heading strong {
  color: #fff;
  font-size: clamp(.92rem, 1.3vw, 1.08rem);
}

.team-game-finder-search,
.team-game-finder-combobox {
  position: relative;
  width: 100%;
  min-width: 0;
}

.team-game-finder-combobox input {
  display: block;
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  padding: .8rem 5.2rem .8rem 1rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(0, 0, 0, .74);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.team-game-finder-combobox input:focus {
  border-color: #f7d55f;
  box-shadow: 0 0 0 3px rgba(247, 213, 95, .16);
}

.team-game-finder-combobox input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.team-game-finder-clear {
  position: absolute;
  top: 50%;
  right: .55rem;
  transform: translateY(-50%);
  min-height: 36px;
  padding: .42rem .78rem;
  border: 1px solid rgba(247, 213, 95, .42);
  border-radius: 999px;
  background: rgba(247, 213, 95, .1);
  color: #f7d55f;
  font-weight: 900;
  cursor: pointer;
}

.team-game-finder-suggestions {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  right: 0;
  z-index: 10050;
  max-height: 330px;
  overflow-y: auto;
  padding: .45rem;
  border: 1px solid rgba(247, 213, 95, .32);
  border-radius: 14px;
  background: rgba(4, 5, 7, .98);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .58);
}

.team-game-finder-suggestions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .75rem .85rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.team-game-finder-suggestions button:hover,
.team-game-finder-suggestions button[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(168, 21, 31, .52), rgba(0, 104, 51, .42));
}

.team-game-finder-suggestions button span {
  font-weight: 900;
}

.team-game-finder-suggestions button small,
.team-game-finder-empty {
  color: rgba(255, 255, 255, .66);
}

.team-game-finder-empty {
  padding: .85rem;
  text-align: center;
}

.team-game-finder-result {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.team-game-finder-team-header {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  margin-bottom: .75rem;
}

.team-game-finder-team-header img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.team-game-finder-team-header > div {
  display: grid;
  min-width: 0;
}

.team-game-finder-team-header span {
  color: #f7d55f;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.team-game-finder-team-header strong {
  overflow: hidden;
  color: #fff;
  font-size: 1.08rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-game-finder-team-header a {
  padding: .52rem .78rem;
  border: 1px solid rgba(247, 213, 95, .36);
  border-radius: 999px;
  color: #f7d55f;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.team-game-finder-games {
  display: grid;
  gap: .45rem;
  max-height: 360px;
  overflow-y: auto;
  padding-right: .2rem;
}

.team-game-finder-game {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  padding: .72rem .78rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
}

.team-game-finder-game-copy {
  display: grid;
  gap: .08rem;
  min-width: 0;
}

.team-game-finder-game-copy strong {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-game-finder-game-copy > span:last-child {
  color: rgba(255, 255, 255, .68);
  font-size: .79rem;
}

.team-game-finder-week {
  color: #f7d55f;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-game-finder-actions {
  display: flex;
  gap: .4rem;
}

.team-game-finder-actions button {
  min-height: 38px;
  padding: .5rem .72rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.team-game-finder-actions button.primary {
  border-color: rgba(247, 213, 95, .52);
  background: linear-gradient(180deg, #f7d55f, #c9971a);
  color: #080808;
}

.game-card.team-game-finder-match,
.scoreboard-row.team-game-finder-match {
  animation: ncsTeamGameFinderPulse 1.1s ease-in-out 2;
  outline: 3px solid #f7d55f;
  outline-offset: 3px;
}

@keyframes ncsTeamGameFinderPulse {
  0%, 100% { box-shadow: inherit; }
  50% { box-shadow: 0 0 0 8px rgba(247, 213, 95, .2), 0 18px 38px rgba(0, 0, 0, .38); }
}

@media (max-width: 760px) {
  .team-game-finder {
    margin-top: .8rem;
    border-radius: 14px;
  }

  .team-game-finder-heading strong {
    font-size: .88rem;
  }

  .team-game-finder-team-header {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .team-game-finder-team-header img {
    width: 46px;
    height: 46px;
  }

  .team-game-finder-team-header a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .team-game-finder-game {
    grid-template-columns: 1fr;
  }

  .team-game-finder-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .team-game-finder-combobox input {
    padding-right: 4.6rem;
    font-size: .9rem;
  }

  .team-game-finder-actions {
    grid-template-columns: 1fr;
  }
}
