
/* Colorado Tribe Website Starter */
:root{
  --navy:#07192d;
  --navy-2:#0d2b4a;
  --columbia:#6CB4EE;
  --columbia-dark:#2f7fbd;
  --red:#d71920;
  --white:#fff;
  --ink:#172434;
  --muted:#6f7d8c;
  --line:#dfe7ee;
  --page:#f4f7fa;
}
.site-header{
  position:sticky;
  top:0;
  z-index:12000;
  background:rgba(7,25,45,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.site-header-inner{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  font-weight:950;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.site-brand img{
  width:62px;
  height:50px;
  object-fit:contain;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:6px;
}
.site-nav a{
  color:#dbe8f2;
  text-decoration:none;
  font-size:.77rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
  padding:10px 12px;
  border-radius:9px;
}
.site-nav a:hover,.site-nav a[aria-current="page"]{
  color:var(--navy);
  background:var(--columbia);
}
.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  background:transparent;
  border-radius:9px;
  padding:9px 11px;
  font-weight:900;
}
.page-shell{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:44px 0 64px;
}
.page-hero{
  padding:44px;
  border-radius:22px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}
.page-hero h1{margin:0;font-size:clamp(2rem,5vw,4.2rem);}
.page-hero p{max-width:720px;color:#d8e5ee;line-height:1.7;}
.content-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}
.content-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  box-shadow:0 12px 30px rgba(7,25,45,.08);
}
.content-card h2{color:var(--navy);}
.content-card a{color:var(--columbia-dark);font-weight:900;text-decoration:none;}
.site-footer{
  background:var(--navy);
  color:#d8e5ee;
  padding:34px 20px;
  text-align:center;
}
.site-footer a{color:var(--columbia);text-decoration:none;font-weight:800;}
@media(max-width:900px){
  .nav-toggle{display:block;}
  .site-nav{
    display:none;
    position:absolute;
    top:76px;
    left:14px;
    right:14px;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    background:var(--navy);
    border-radius:14px;
    box-shadow:0 18px 40px rgba(0,0,0,.28);
  }
  .site-nav.open{display:flex;}
  .content-grid{grid-template-columns:1fr;}
}



:root {
  --navy:#07192d;
  --navy-2:#0d2b4a;
  --columbia:#6CB4EE;
  --columbia-dark:#2f7fbd;
  --red:#d71920;
  --white:#ffffff;
  --ink:#172434;
  --muted:#6f7d8c;
  --line:#dfe7ee;
  --page:#f4f7fa;
  --shadow:0 14px 34px rgba(7,25,45,.11);
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--page);
}
img { max-width:100%; display:block; }
.site-shell { width:min(1220px,calc(100% - 28px)); margin:auto; padding:20px 0 56px; }

.hero {
  position:relative;
  overflow:hidden;
  min-height:340px;
  display:grid;
  grid-template-columns:390px 1fr;
  align-items:center;
  gap:36px;
  padding:38px 46px;
  color:var(--navy);
  border-radius:24px;
  background:
    radial-gradient(circle at 84% 18%,rgba(255,255,255,.34),transparent 34%),
    linear-gradient(135deg,#6CB4EE 0%,#79bff2 55%,#5aa5df 100%);
  box-shadow:0 24px 60px rgba(7,25,45,.22);
}
.hero::before {
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(120deg,transparent 0 55%,rgba(255,255,255,.04) 55% 56%,transparent 56%),
    repeating-linear-gradient(0deg,transparent 0 28px,rgba(255,255,255,.025) 28px 29px);
}
.hero::after {
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:8px;
  background:linear-gradient(90deg,var(--red),var(--columbia),var(--red));
}
.hero-logo,.hero-copy { position:relative; z-index:1; }
.hero-logo img {
  width:100%;
  max-height:245px;
  object-fit:contain;
  filter:drop-shadow(0 14px 20px rgba(0,0,0,.32));
}
.kicker {
  margin:0 0 8px;
  color:var(--navy);
  font-size:.8rem;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
}
h1 {
  margin:0;
  font-size:clamp(2.6rem,6vw,5.4rem);
  line-height:.93;
  letter-spacing:-.05em;
  text-transform:uppercase;
}
.record {
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin-top:18px;
  padding:9px 13px;
  border:1px solid rgba(7,25,45,.22);
  border-radius:999px;
  background:rgba(255,255,255,.30);
  font-weight:800;
}
.quick-nav { display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; }
.quick-nav a {
  color:var(--navy); text-decoration:none; font-size:.75rem; font-weight:900;
  letter-spacing:.08em; text-transform:uppercase;
  padding:9px 13px; border-radius:999px;
  border:1px solid rgba(7,25,45,.24);
  background:rgba(255,255,255,.24);
}
.quick-nav a:hover { background:rgba(255,255,255,.42); }

.month-section { margin-top:38px; }
.month-header {
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin-bottom:16px;
  color:var(--navy); font-size:1.8rem; font-weight:950;
  text-transform:uppercase; letter-spacing:.04em;
}
.month-header::before,.month-header::after {
  content:""; height:2px; flex:1;
  background:linear-gradient(90deg,transparent,var(--columbia));
}
.month-header::after { background:linear-gradient(90deg,var(--columbia),transparent); }
.month-year { color:var(--red); font-size:.8rem; letter-spacing:.16em; }

.game-list { display:grid; gap:22px; }
.game-card {
  position:relative;
  display:grid;
  grid-template-columns:8px 108px 142px minmax(250px,1.75fr) minmax(185px,1.05fr) 170px;
  align-items:center;
  height:160px; min-height:160px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.game-card:hover { transform:translateY(-3px); box-shadow:0 20px 40px rgba(7,25,45,.16); }
.game-card.home:hover { border-color:rgba(108,180,238,.9); }
.game-card.away:hover { border-color:rgba(215,25,32,.65); }
.accent { align-self:stretch; background:#98a3ad; }
.home .accent { background:var(--columbia); }
.away .accent { background:var(--red); }
.neutral .accent { background:#6d4aa2; }

.date-block {
  padding:0 16px;
  border-right:1px solid var(--line);
  display:flex; flex-direction:column; justify-content:center; align-self:stretch;
}
.weekday { color:var(--red); font-size:.72rem; font-weight:950; letter-spacing:.14em; text-transform:uppercase; }
.date { margin-top:6px; color:var(--navy); font-size:1.13rem; font-weight:950; }

.logo-box { width:104px; height:112px; margin:auto; padding:2px; display:grid; place-items:center; }
.logo-box img { width:100%; height:100%; object-fit:contain; transition:transform .22s ease; }

/* Optical logo normalization
   Each mark is balanced by perceived visual weight rather than raw pixels. */
.logo-box {
  width:126px;
  height:126px;
  padding:6px;
  overflow:visible;
}
.logo-box img {
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(var(--logo-scale, 1));
  transform-origin:center;
  transition:transform .22s ease;
}
.game-card:hover .logo-box img { transform:scale(calc(var(--logo-scale,1) * 1.03)); }

/* Wide marks need less scale; compact and circular marks can run larger. */
.logo-cutthroats { --logo-scale:1.02; }
.logo-wow-factor { --logo-scale:.98; }
.logo-arvada { --logo-scale:1.06; }
.logo-dirt-devils { --logo-scale:.90; }
.logo-generals { --logo-scale:1.04; }
.logo-usa-prime { --logo-scale:1.08; }
.logo-wardogs { --logo-scale:1.00; }
.logo-grays {
  --logo-scale:0.72;
  background:#fff;
  border-radius:50%;
  padding:8px;
  box-shadow:0 0 0 1px rgba(7,25,45,.08);
}
.logo-owlz { --logo-scale:1.00; }
.logo-playoffs { --logo-scale:.98; }

/* Keep very tall artwork centered and fully visible. */
.logo-dirt-devils {
  width:auto !important;
  max-width:100px;
  height:116px !important;
  max-height:116px;
}

.game-card:hover .game-card:hover .matchup { padding:18px 14px; min-width:0; }
.status-badge {
  display:inline-flex;
  padding:5px 9px;
  border-radius:999px;
  color:#fff;
  font-size:.62rem;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.home .status-badge { background:var(--columbia-dark); }
.away .status-badge { background:var(--red); }
.neutral .status-badge { background:#6d4aa2; }
.matchup h3 { margin:8px 0 4px; color:var(--navy); font-size:1.24rem; line-height:1.15; }
.note { color:var(--muted); font-size:.78rem; font-weight:700; }

.details {
  display:grid;
  gap:14px;
  padding:18px 20px;
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
}
.details div {
  display:grid;
  grid-template-columns:18px 1fr;
  align-items:center;
  gap:9px;
}
.details strong { color:var(--ink); font-size:.84rem; line-height:1.3; }

.actions {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:stretch;
  width:170px;
  max-width:170px;
  padding:14px;
  gap:10px;
  margin:0 auto;
}
.actions a {
  display:block; text-align:center; text-decoration:none;
  padding:10px 12px; border-radius:10px;
  font-size:.72rem; font-weight:900; letter-spacing:.04em;
}
.actions a:first-child { background:var(--navy); color:#fff; }
.actions a:last-child { border:1px solid var(--line); color:var(--navy); background:#fff; }
.actions a:hover { filter:brightness(1.07); }

.footer {
  margin-top:42px;
  padding:28px;
  color:#dfe8ef;
  background:var(--navy);
  border-radius:20px;
  text-align:center;
}
.footer strong { color:#fff; font-size:1.05rem; }
.footer-links { margin-top:10px; display:flex; justify-content:center; gap:18px; flex-wrap:wrap; }
.footer a { color:var(--columbia); text-decoration:none; font-weight:800; font-size:.82rem; }
.footer small { display:block; margin-top:14px; color:#9fb0bf; }


.directions-trigger {
  display:block;
  width:100%;
  text-align:center;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  color:var(--navy);
  background:#fff;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.04em;
  cursor:pointer;
}
.directions-trigger:hover {
  background:#f7fbff;
  border-color:var(--columbia);
}
.directions-modal {
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(7,25,45,.62);
  backdrop-filter:blur(4px);
}
.directions-modal.open { display:flex; }
.directions-dialog {
  width:min(420px,100%);
  background:#fff;
  border-radius:20px;
  box-shadow:0 24px 70px rgba(7,25,45,.28);
  overflow:hidden;
}
.directions-dialog-header {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding:22px 22px 16px;
  background:linear-gradient(135deg,var(--columbia),#8ac8f4);
}
.directions-dialog h2 {
  margin:0;
  color:var(--navy);
  font-size:1.2rem;
}
.directions-location {
  display:block;
  margin-top:4px;
  color:#173e61;
  font-size:.84rem;
  font-weight:700;
}
.directions-close {
  border:0;
  background:rgba(255,255,255,.5);
  color:var(--navy);
  width:34px;
  height:34px;
  border-radius:50%;
  font-size:1.2rem;
  cursor:pointer;
}
.directions-options {
  display:grid;
  gap:10px;
  padding:20px 22px 24px;
}
.directions-options a {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 15px;
  border:1px solid var(--line);
  border-radius:12px;
  color:var(--navy);
  text-decoration:none;
  font-weight:900;
  background:#fff;
}
.directions-options a:hover {
  border-color:var(--columbia);
  background:#f7fbff;
}
.directions-options span {
  color:var(--muted);
  font-size:.75rem;
  font-weight:700;
}


.logo-box img.logo-grays{
  width:84%;
  height:84%;
  object-fit:contain;
}
.game-card:hover .logo-box img.logo-grays{
  transform:scale(.75);
}

@media (max-width:980px) {
  .hero { grid-template-columns:1fr; text-align:center; }
  .hero-logo img { max-height:190px; margin:auto; }
  .quick-nav { justify-content:center; }
  .game-card { grid-template-columns:8px 88px 100px 1fr 1fr; }
  .actions { grid-column:2 / -1; grid-template-columns:1fr 1fr; border-top:1px solid var(--line); }
}
@media (max-width:700px) {

  .logo-box { width:82px; height:88px; padding:5px; }
  .logo-dirt-devils { max-width:72px; height:84px !important; max-height:84px; }
  .hero { padding:28px 22px 34px; min-height:0; }
  .game-card {
    grid-template-columns:7px 74px 84px 1fr;
    min-height:120px;
  }
  .details {
  padding-right:20px; grid-column:2 / -1; grid-template-columns:1fr 1fr; border:0; border-top:1px solid var(--line); }
  .actions { grid-column:2 / -1; }
  .logo-box { width:72px; height:72px; }
  .matchup { padding:14px 10px; }
}
@media (max-width:470px) {
  .site-shell { width:min(100% - 16px,1220px); padding-top:8px; }
  .hero { border-radius:16px; }
  .month-header { font-size:1.45rem; }
  .game-card { grid-template-columns:7px 68px 72px 1fr; border-radius:14px; }
  .date-block { padding:0 10px; }
  .date { font-size:.94rem; }
  .matchup h3 { font-size:.95rem; }
  .details {
  padding-right:20px; grid-template-columns:1fr; }
  .actions { width:100%; max-width:none; }
}
@media print {
  body { background:#fff; }
  .site-shell { width:100%; padding:0; }
  .hero { box-shadow:none; border-radius:0; }
  .game-card { box-shadow:none; break-inside:avoid; }
  .actions,.quick-nav { display:none; }
}

.season-summary {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:20px;
}
.summary-stat {
  min-width:108px;
  padding:12px 16px;
  text-align:center;
  border:1px solid rgba(7,25,45,.22);
  border-radius:14px;
  background:rgba(255,255,255,.30);
}
.summary-stat span {
  display:block;
  color:var(--navy);
  font-size:1.2rem;
  font-weight:950;
}
.summary-stat small {
  display:block;
  margin-top:2px;
  color:#244967;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.game-status {
  display:inline-flex;
  margin-left:7px;
  padding:4px 8px;
  border-radius:999px;
  background:#eef3f7;
  color:#687786;
  font-size:.60rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.game-card[data-status="live"] .game-status {
  background:#ffe7e8;
  color:var(--red);
}
.game-card[data-status="final"] .game-status {
  background:#e6f4ea;
  color:#18733a;
}
.actions {
  grid-template-columns:1fr 1fr;
}
.actions button,
.actions a {
  min-height:38px;
}
.gamechanger-link.is-unset {
  opacity:.68;
}
.setup-toast {
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:10000;
  transform:translate(-50%,20px);
  width:min(520px,calc(100% - 28px));
  padding:15px 18px;
  border-radius:14px;
  color:#fff;
  background:var(--navy);
  box-shadow:0 18px 45px rgba(7,25,45,.28);
  opacity:0;
  pointer-events:none;
  transition:.22s ease;
}
.setup-toast.show {
  opacity:1;
  transform:translate(-50%,0);
}
@media (max-width:700px) {
  .season-summary { justify-content:center; }
  .summary-stat { min-width:92px; }
}

.actions > * {
  width:100%;
  height:42px;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  box-sizing:border-box;
}
.status-badge {
  position:absolute;
  top:14px;
  right:16px;
  margin:0;
  z-index:2;
}
.game-card.home:hover {
  box-shadow:0 20px 42px rgba(108,180,238,.22);
}
.game-card.away:hover {
  box-shadow:0 20px 42px rgba(215,25,32,.18);
}
.game-card.neutral:hover {
  box-shadow:0 20px 42px rgba(109,74,162,.18);
}

.detail-icon {
  width:17px;
  height:17px;
  fill:none;
  stroke:var(--columbia-dark);
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.status-badge {
  position:absolute;
  top:12px;
  right:14px;
  min-width:72px;
  justify-content:center;
  margin:0;
  z-index:3;
  box-shadow:0 4px 12px rgba(7,25,45,.12);
}
.actions {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:stretch;
  width:170px;
  max-width:170px;
  padding:14px;
  gap:10px;
  margin:0 auto;
}
.actions > * {
  width:100%;
  height:42px;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  box-sizing:border-box;
}


.logo-box img.logo-grays{
  width:84%;
  height:84%;
  object-fit:contain;
}
.game-card:hover .logo-box img.logo-grays{
  transform:scale(.75);
}

@media (max-width:980px) {
  .game-card { height:auto; min-height:150px; }
}
@media (max-width:700px) {
  .game-card { height:auto; min-height:0; }
  .status-badge { top:10px; right:10px; min-width:66px; }
  .actions { width:100%; max-width:none; }
}

.logo-grays {
  --logo-scale:0.72;
  background:#fff;
  border-radius:50%;
  padding:8px;
  box-shadow:0 0 0 1px rgba(7,25,45,.08);
}
.game-card:hover .logo-grays {
  --logo-scale:0.72;
  background:#fff;
  border-radius:50%;
  padding:8px;
  box-shadow:0 0 0 1px rgba(7,25,45,.08);
}




/* NCAA-style home page */
.home-hero{position:relative;min-height:620px;display:flex;align-items:center;overflow:hidden;color:#fff;background:radial-gradient(circle at 80% 20%,rgba(108,180,238,.32),transparent 32%),linear-gradient(135deg,#07192d 0%,#0d2b4a 60%,#123b5e 100%)}
.home-hero::before{content:"";position:absolute;inset:0;opacity:.32;background:linear-gradient(120deg,transparent 0 52%,rgba(255,255,255,.05) 52% 53%,transparent 53%),repeating-linear-gradient(0deg,transparent 0 34px,rgba(255,255,255,.025) 34px 35px)}
.home-hero::after{content:"";position:absolute;left:0;right:0;bottom:0;height:9px;background:linear-gradient(90deg,var(--red),var(--columbia),var(--red))}
.home-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,25,45,.96),rgba(7,25,45,.52) 66%,rgba(7,25,45,.22))}
.home-hero-inner{position:relative;z-index:1;width:min(1220px,calc(100% - 28px));margin:auto;display:grid;grid-template-columns:minmax(280px,430px) 1fr;align-items:center;gap:56px;padding:72px 0}
.home-hero-logo img{width:100%;max-height:330px;object-fit:contain;filter:drop-shadow(0 20px 26px rgba(0,0,0,.34))}
.home-eyebrow,.section-kicker{margin:0 0 10px;color:var(--columbia);font-size:.76rem;font-weight:950;letter-spacing:.18em;text-transform:uppercase}
.home-hero h1{margin:0;max-width:720px;font-size:clamp(3.1rem,7vw,6.8rem);line-height:.9;letter-spacing:-.055em;text-transform:uppercase}
.home-hero-copy>p:last-of-type{max-width:650px;margin:20px 0 0;color:#dbe8f2;font-size:1.12rem;line-height:1.65}
.home-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.button{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:12px 20px;border:1px solid transparent;border-radius:10px;font:inherit;font-size:.77rem;font-weight:950;letter-spacing:.06em;text-decoration:none;text-transform:uppercase;cursor:pointer}
.button-primary{background:var(--red);color:#fff}.button-primary:hover{background:#b9141b}
.button-secondary{background:var(--columbia);color:var(--navy)}.button-secondary:hover{background:#8bc5f2}
.button-outline{background:#fff;color:var(--navy);border-color:var(--line)}.button-light{background:#fff;color:var(--navy)}
.home-status{width:min(1080px,calc(100% - 28px));margin:-54px auto 0;position:relative;z-index:4;display:grid;grid-template-columns:repeat(3,1fr);overflow:hidden;border-radius:18px;background:#fff;box-shadow:0 22px 48px rgba(7,25,45,.16)}
.home-status-item{padding:24px;text-align:center;border-right:1px solid var(--line)}.home-status-item:last-child{border-right:0}
.home-status-item strong{display:block;color:var(--navy);font-size:1.4rem;font-weight:950}.home-status-item span{display:block;margin-top:4px;color:var(--muted);font-size:.7rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.home-section{width:min(1220px,calc(100% - 28px));margin:0 auto;padding:78px 0 0}
.section-heading h2{margin:0;color:var(--navy);font-size:clamp(2rem,4vw,3.4rem);line-height:1;letter-spacing:-.035em}.section-heading>p:last-child{max-width:700px;color:var(--muted);line-height:1.7}
.section-heading-row{display:flex;align-items:flex-end;justify-content:space-between;gap:22px}.section-heading-row>a{color:var(--columbia-dark);text-decoration:none;font-weight:900}
.next-game-card{margin-top:24px;display:grid;grid-template-columns:150px minmax(150px,1fr) 120px minmax(150px,1fr) minmax(230px,1.25fr) 170px;align-items:center;min-height:220px;overflow:hidden;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:0 18px 42px rgba(7,25,45,.11)}
.next-game-date{align-self:stretch;display:flex;flex-direction:column;justify-content:center;padding:22px;color:#fff;background:var(--navy)}
.next-game-date span,.next-game-date small{font-size:.7rem;font-weight:900;letter-spacing:.10em;text-transform:uppercase}.next-game-date strong{margin:6px 0;font-size:1.8rem;line-height:1}
.next-game-team{padding:22px;text-align:center}.next-game-team img{width:105px;height:105px;margin:auto;object-fit:contain}.next-game-team h3{margin:10px 0 0;color:var(--navy);font-size:1rem}.next-game-tribe img{width:126px}
.next-game-versus{text-align:center;color:var(--muted)}.next-game-versus span{display:block;color:var(--red);font-size:1.8rem;font-weight:950;text-transform:uppercase}.next-game-versus strong{display:block;margin-top:8px;color:var(--navy);font-size:.7rem;letter-spacing:.06em;text-transform:uppercase}
.next-game-details{align-self:stretch;display:grid;align-content:center;gap:15px;padding:22px 26px;border-left:1px solid var(--line);border-right:1px solid var(--line)}.next-game-details div{display:grid;gap:3px}.next-game-details span{color:var(--columbia-dark);font-size:.65rem;font-weight:950;letter-spacing:.08em;text-transform:uppercase}.next-game-details strong{color:var(--ink);font-size:.88rem}.next-game-actions{display:grid;gap:10px;padding:20px}
.home-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.home-feature-card{position:relative;min-height:280px;padding:32px;overflow:hidden;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(7,25,45,.08)}
.feature-number{position:absolute;right:22px;top:12px;color:#e8f3fb;font-size:5rem;font-weight:950;line-height:1}.home-feature-card h2{position:relative;margin:38px 0 12px;color:var(--navy)}.home-feature-card p{position:relative;color:var(--muted);line-height:1.65}.home-feature-card a{position:absolute;left:32px;bottom:30px;color:var(--columbia-dark);text-decoration:none;font-weight:900}
.news-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:18px;margin-top:26px}.news-card{min-height:300px;padding:28px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(7,25,45,.07)}.news-card-featured{color:#fff;background:linear-gradient(145deg,var(--navy),var(--navy-2))}
.news-card>span{color:var(--columbia-dark);font-size:.68rem;font-weight:950;letter-spacing:.10em;text-transform:uppercase}.news-card-featured>span{color:var(--columbia)}.news-card h3{margin:16px 0 12px;color:var(--navy);font-size:1.45rem;line-height:1.2}.news-card-featured h3{color:#fff;font-size:2rem}.news-card p{color:var(--muted);line-height:1.65}.news-card-featured p{color:#d8e4ed}.news-card a{display:inline-block;margin-top:16px;color:var(--columbia-dark);text-decoration:none;font-weight:900}.news-card-featured a{color:var(--columbia)}
.host-cta{display:flex;align-items:center;justify-content:space-between;gap:32px;margin-top:78px;padding:44px;color:#fff;border-radius:22px;background:linear-gradient(115deg,var(--red),#a7131a)}.host-cta h2{margin:0;font-size:clamp(2rem,4vw,3.5rem)}.host-cta p:last-child{max-width:720px;margin-bottom:0;color:#ffe2e3;line-height:1.7}.host-cta .section-kicker{color:#fff}
.sponsor-section{padding-bottom:78px}.sponsor-placeholder-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:24px}.sponsor-placeholder-grid div{min-height:110px;display:grid;place-items:center;padding:18px;color:#8794a2;border:1px dashed #bdcbd7;border-radius:14px;background:#fff;font-size:.73rem;font-weight:900;letter-spacing:.07em;text-align:center;text-transform:uppercase}
.site-footer-expanded{padding:38px 20px 22px}.footer-inner{width:min(1220px,100%);margin:auto;display:flex;align-items:center;justify-content:space-between;gap:30px;text-align:left}.footer-brand{display:flex;align-items:center;gap:14px}.footer-brand img{width:76px;height:64px;object-fit:contain}.footer-brand strong{font-size:1rem;color:#fff}.footer-brand p{margin:4px 0 0;color:#9fb0bf}.footer-links{display:flex;gap:18px;flex-wrap:wrap}.site-footer-expanded>small{display:block;width:min(1220px,100%);margin:24px auto 0;padding-top:18px;color:#8396a7;border-top:1px solid rgba(255,255,255,.1)}
@media(max-width:1050px){.home-hero-inner{grid-template-columns:320px 1fr}.next-game-card{grid-template-columns:130px 1fr 90px 1fr}.next-game-details{grid-column:1/5;grid-template-columns:repeat(3,1fr);border:0;border-top:1px solid var(--line)}.next-game-actions{grid-column:1/5;grid-template-columns:1fr 1fr;border-top:1px solid var(--line)}}
@media(max-width:800px){.home-hero{min-height:0}.home-hero-inner{grid-template-columns:1fr;text-align:center;padding:58px 0 90px}.home-hero-logo img{max-height:220px}.home-hero-actions{justify-content:center}.home-status{grid-template-columns:1fr;margin-top:-40px}.home-status-item{border-right:0;border-bottom:1px solid var(--line)}.home-status-item:last-child{border-bottom:0}.home-feature-grid,.news-grid,.sponsor-placeholder-grid{grid-template-columns:1fr}.next-game-card{grid-template-columns:1fr 1fr;position:relative}.next-game-date{grid-column:1/3;text-align:center;align-items:center}.next-game-versus{position:absolute;left:50%;top:185px;transform:translateX(-50%)}.next-game-details,.next-game-actions{grid-column:1/3}.host-cta,.footer-inner,.section-heading-row{align-items:flex-start;flex-direction:column}}
@media(max-width:520px){.home-hero h1{font-size:3rem}.home-hero-actions .button{width:100%}.home-section{padding-top:58px}.next-game-card{display:block}.next-game-versus{position:static;transform:none;padding:12px}.next-game-details{grid-template-columns:1fr}.next-game-actions{grid-template-columns:1fr}.host-cta{padding:30px 24px}}



/* Version 3 additions */
.profile-grid,.news-page-grid,.sponsor-tier-grid{
  width:min(1220px,calc(100% - 28px));
  margin:32px auto 0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.profile-card,.sponsor-tier{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.08);
}
.profile-photo{
  min-height:250px;
  display:grid;
  place-items:center;
  color:#8b99a7;
  background:linear-gradient(135deg,#edf5fb,#dfeef8);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.profile-copy{padding:24px;}
.profile-copy span,.sponsor-tier>span{
  color:var(--columbia-dark);
  font-size:.67rem;
  font-weight:950;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.profile-copy h2,.sponsor-tier h2{margin:10px 0;color:var(--navy);}
.profile-copy p,.sponsor-tier p{color:var(--muted);line-height:1.65;}
.news-page-grid{grid-template-columns:1.4fr 1fr 1fr;}
.sponsor-tier{padding:28px;min-height:260px;}
.sponsor-tier:first-child{border-top:7px solid var(--red);}
.sponsor-tier:nth-child(2){border-top:7px solid var(--columbia);}
.sponsor-tier:nth-child(3){border-top:7px solid var(--navy);}
.sponsor-cta{margin-bottom:78px;}
.team-callouts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.team-callout{
  padding:38px;
  border-radius:20px;
  color:var(--navy);
  background:linear-gradient(135deg,#eaf5fc,#dbeef9);
}
.team-callout-dark{
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}
.team-callout h2{margin:0;font-size:clamp(2rem,4vw,3rem);}
.team-callout p{max-width:620px;line-height:1.7;}
.team-callout-dark p{color:#d8e5ee;}
@media(max-width:900px){
  .profile-grid,.news-page-grid,.sponsor-tier-grid,.team-callouts{grid-template-columns:1fr;}
}



/* Version 4 homepage refinements */
.site-ticker{overflow:hidden;color:#fff;background:var(--red);border-bottom:1px solid rgba(255,255,255,.15)}
.site-ticker-track{display:flex;gap:52px;width:max-content;padding:9px 0;animation:tribeTicker 34s linear infinite;font-size:.7rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.site-ticker-track span::before{content:"⚾";margin-right:9px}
@keyframes tribeTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.home-hero{min-height:680px}
.home-hero h1{font-size:clamp(3.5rem,7vw,7rem)}
.v4-section{width:min(1220px,calc(100% - 28px));margin:auto;padding-top:82px}
.v4-section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px}
.v4-section-heading h2{margin:0;color:var(--navy);font-size:clamp(2.1rem,4vw,3.6rem);line-height:1}
.v4-section-heading>a{color:var(--columbia-dark);text-decoration:none;font-weight:900}
.v4-upcoming-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:24px}
.v4-upcoming-card{position:relative;display:grid;grid-template-columns:88px 105px 1fr;align-items:center;min-height:132px;overflow:hidden;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:0 10px 26px rgba(7,25,45,.07)}
.v4-upcoming-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:7px;background:var(--red)}
.v4-upcoming-card.home::before{background:var(--columbia)}
.v4-upcoming-date{height:100%;display:flex;flex-direction:column;justify-content:center;padding:18px;border-right:1px solid var(--line)}
.v4-upcoming-date span{color:var(--red);font-size:.67rem;font-weight:950;letter-spacing:.1em;text-transform:uppercase}
.v4-upcoming-date strong{margin-top:5px;color:var(--navy)}
.v4-upcoming-card img{width:82px;height:82px;margin:auto;object-fit:contain}
.v4-upcoming-card>div:last-child{padding:18px}.v4-upcoming-card h3{margin:7px 0 3px;color:var(--navy)}.v4-upcoming-card p{margin:0;color:var(--muted);font-size:.82rem}
.v4-tag{display:inline-flex;padding:4px 8px;border-radius:999px;color:#fff;background:var(--red);font-size:.58rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.v4-upcoming-card.home .v4-tag{color:var(--navy);background:var(--columbia)}
.v4-spotlight-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.v4-spotlight-card{display:grid;grid-template-columns:42% 1fr;min-height:360px;overflow:hidden;border-radius:22px;background:linear-gradient(135deg,#eaf5fc,#dbeef9)}
.v4-spotlight-dark{color:#fff;background:linear-gradient(135deg,var(--navy),var(--navy-2))}
.v4-photo-placeholder{display:grid;place-items:center;min-height:100%;color:#8192a0;background:rgba(255,255,255,.45);font-size:.72rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase}
.v4-spotlight-dark .v4-photo-placeholder{color:#a8bac9;background:rgba(255,255,255,.06)}
.v4-spotlight-copy{padding:38px}.v4-spotlight-copy h2{margin:0;color:var(--navy);font-size:2.2rem}.v4-spotlight-dark h2{color:#fff}.v4-spotlight-copy p{line-height:1.7}.v4-spotlight-dark .v4-spotlight-copy p{color:#d7e4ed}
@media(max-width:850px){.v4-upcoming-grid,.v4-spotlight-grid{grid-template-columns:1fr}.v4-section-heading{align-items:flex-start;flex-direction:column}}
@media(max-width:560px){.site-ticker-track{gap:28px}.v4-upcoming-card{grid-template-columns:72px 82px 1fr}.v4-upcoming-card img{width:66px;height:66px}.v4-spotlight-card{grid-template-columns:1fr}.v4-photo-placeholder{min-height:220px}}



/* =========================
   Version 5 roster system
   ========================= */
.roster-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.roster-hero{
  display:grid;
  grid-template-columns:1fr 320px;
  align-items:center;
  gap:36px;
  padding:44px;
  color:#fff;
  border-radius:24px;
  background:
    radial-gradient(circle at 82% 18%,rgba(108,180,238,.35),transparent 35%),
    linear-gradient(135deg,var(--navy),var(--navy-2));
  box-shadow:0 20px 46px rgba(7,25,45,.18);
}
.roster-hero h1{
  margin:0;
  font-size:clamp(2.7rem,6vw,5.6rem);
  line-height:.95;
}
.roster-hero p:last-child{
  max-width:680px;
  color:#d8e5ee;
  line-height:1.7;
}
.roster-hero img{
  width:100%;
  max-height:210px;
  object-fit:contain;
  filter:drop-shadow(0 14px 20px rgba(0,0,0,.26));
}
.roster-tools{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:16px;
  margin-top:28px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.roster-tools label{
  display:block;
  margin-bottom:7px;
  color:var(--navy);
  font-size:.67rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.roster-tools input,.roster-tools select{
  width:100%;
  min-height:44px;
  padding:10px 12px;
  border:1px solid #cfdbe4;
  border-radius:9px;
  color:var(--ink);
  background:#fff;
  font:inherit;
}
.roster-summary{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:18px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--line);
}
.roster-summary div{
  padding:18px;
  text-align:center;
  background:#fff;
}
.roster-summary strong{
  display:block;
  color:var(--navy);
  font-size:1.35rem;
}
.roster-summary span{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:.65rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.roster-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:28px;
}
.player-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.08);
  transition:transform .2s ease,box-shadow .2s ease;
}
.player-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(7,25,45,.14);
}
.player-card-photo{
  position:relative;
  min-height:270px;
  overflow:hidden;
  background:linear-gradient(135deg,#eaf5fc,#dbeef9);
}
.player-card-photo img{
  width:100%;
  height:270px;
  object-fit:cover;
}
.player-photo-placeholder{
  min-height:270px;
  display:grid;
  place-content:center;
  gap:6px;
  text-align:center;
  color:var(--navy);
}
.player-photo-placeholder span{
  display:grid;
  place-items:center;
  width:86px;
  height:86px;
  margin:auto;
  border-radius:50%;
  color:#fff;
  background:var(--navy);
  font-size:1.6rem;
  font-weight:950;
}
.player-photo-placeholder small{
  color:var(--muted);
  font-size:.65rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.player-number{
  position:absolute;
  left:16px;
  bottom:14px;
  display:grid;
  place-items:center;
  min-width:54px;
  height:42px;
  padding:0 12px;
  border-radius:9px;
  color:#fff;
  background:var(--red);
  font-size:1.15rem;
  font-weight:950;
}
.player-card-body{padding:22px;}
.player-position{
  color:var(--columbia-dark);
  font-size:.67rem;
  font-weight:950;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.player-card h2{
  margin:8px 0 3px;
  color:var(--navy);
  font-size:1.45rem;
}
.player-college{
  margin:0 0 17px;
  color:var(--muted);
  font-weight:700;
}
.player-details{
  display:grid;
  gap:9px;
  margin:0;
}
.player-details div{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding-bottom:8px;
  border-bottom:1px solid #edf1f4;
}
.player-details dt{
  color:var(--muted);
  font-size:.72rem;
}
.player-details dd{
  margin:0;
  color:var(--ink);
  font-size:.72rem;
  font-weight:800;
  text-align:right;
}
.player-profile-link{
  display:inline-block;
  margin-top:18px;
  color:var(--columbia-dark);
  text-decoration:none;
  font-weight:900;
}
.roster-empty,.roster-load-error{
  padding:30px;
  text-align:center;
  color:var(--muted);
}
.player-profile-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.player-profile-hero{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:42px;
  align-items:center;
  overflow:hidden;
  border-radius:24px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}
.player-profile-photo{
  min-height:460px;
  background:rgba(255,255,255,.05);
}
.player-photo-placeholder.large{
  min-height:460px;
  color:#fff;
}
.player-profile-intro{padding:42px 42px 42px 0;}
.player-profile-number{
  display:inline-flex;
  margin-bottom:12px;
  padding:7px 11px;
  border-radius:8px;
  background:var(--red);
  font-weight:950;
}
.player-profile-intro h1{
  margin:0;
  font-size:clamp(3rem,6vw,5.8rem);
  line-height:.93;
}
.player-profile-intro>p:last-of-type{
  color:#d8e5ee;
}
.player-profile-facts{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
  margin-top:26px;
}
.player-profile-facts div{
  padding:14px 12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:11px;
  background:rgba(255,255,255,.06);
}
.player-profile-facts span{
  display:block;
  color:var(--columbia);
  font-size:.6rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.player-profile-facts strong{
  display:block;
  margin-top:4px;
}
.player-profile-content{
  display:grid;
  grid-template-columns:1.7fr 1fr;
  gap:20px;
  margin-top:28px;
}
.player-profile-content article,.player-profile-content aside,.player-stats-placeholder{
  padding:30px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 25px rgba(7,25,45,.06);
}
.player-profile-content h2,.player-profile-content h3,.player-stats-placeholder h2{
  margin-top:0;
  color:var(--navy);
}
.player-profile-content p{
  color:var(--muted);
  line-height:1.75;
}
.player-profile-content dl{
  margin:0;
}
.player-profile-content dl div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:11px 0;
  border-bottom:1px solid var(--line);
}
.player-profile-content dt{color:var(--muted);}
.player-profile-content dd{margin:0;font-weight:800;text-align:right;}
.player-stats-placeholder{margin-top:20px;}
@media(max-width:980px){
  .roster-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .player-profile-hero{grid-template-columns:300px 1fr;}
  .player-profile-facts{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:700px){
  .roster-hero{grid-template-columns:1fr;text-align:center;padding:30px 24px;}
  .roster-hero img{max-height:150px;}
  .roster-tools,.roster-summary,.roster-grid,.player-profile-content{grid-template-columns:1fr;}
  .player-profile-hero{grid-template-columns:1fr;}
  .player-profile-photo{min-height:320px;}
  .player-photo-placeholder.large{min-height:320px;}
  .player-profile-intro{padding:28px;}
  .player-profile-facts{grid-template-columns:repeat(2,1fr);}
}



/* =========================
   Version 6 GameCenter
   ========================= */
.gamecenter-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.gamecenter-hero{
  overflow:hidden;
  border-radius:24px;
  color:#fff;
  background:
    radial-gradient(circle at 80% 15%,rgba(108,180,238,.32),transparent 34%),
    linear-gradient(135deg,var(--navy),var(--navy-2));
  box-shadow:0 22px 50px rgba(7,25,45,.2);
}
.gamecenter-hero.home{border-top:8px solid var(--columbia);}
.gamecenter-hero.away{border-top:8px solid var(--red);}
.gamecenter-hero.neutral{border-top:8px solid #6d4aa2;}
.gamecenter-topline{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:16px 22px;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#d8e6ef;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.gamecenter-matchup{
  display:grid;
  grid-template-columns:1fr 190px 1fr;
  align-items:center;
  gap:28px;
  padding:44px;
}
.gamecenter-team{text-align:center;}
.gamecenter-team img{
  width:170px;
  height:170px;
  margin:auto;
  object-fit:contain;
  filter:drop-shadow(0 14px 20px rgba(0,0,0,.28));
}
.gamecenter-team h1{
  margin:14px 0 0;
  color:#fff;
  font-size:clamp(1.5rem,3vw,2.6rem);
}
.gamecenter-middle{text-align:center;}
.gamecenter-middle>span{
  display:block;
  color:var(--columbia);
  font-size:2rem;
  font-weight:950;
  text-transform:uppercase;
}
.gamecenter-score{
  margin-top:10px;
  padding:14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(255,255,255,.06);
}
.gamecenter-score strong{
  display:block;
  font-size:2.3rem;
}
.gamecenter-score span{
  display:block;
  margin-top:3px;
  color:#d3e1eb;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.gamecenter-note{
  display:block;
  width:max-content;
  max-width:calc(100% - 40px);
  margin:-18px auto 24px;
  padding:7px 12px;
  border-radius:999px;
  color:var(--navy);
  background:var(--columbia);
  font-size:.68rem;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.gamecenter-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.gamecenter-meta div{
  padding:20px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.12);
}
.gamecenter-meta div:last-child{border-right:0;}
.gamecenter-meta span{
  display:block;
  color:var(--columbia);
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.gamecenter-meta strong{
  display:block;
  margin-top:4px;
  font-size:.95rem;
}
.gamecenter-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding:22px;
}
.gamecenter-actions .button{min-width:150px;}
.gamecenter-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin-top:28px;
}
.gamecenter-card{
  padding:30px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.gamecenter-card-wide{grid-column:1 / -1;}
.gamecenter-card h2{
  margin:0;
  color:var(--navy);
  font-size:1.7rem;
}
.gamecenter-card p{
  color:var(--muted);
  line-height:1.7;
}
.gamecenter-placeholder-list{
  display:grid;
  gap:10px;
  margin-top:20px;
}
.gamecenter-placeholder-list div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.gamecenter-placeholder-list span{color:var(--muted);}
.gamecenter-text-link{
  color:var(--columbia-dark);
  text-decoration:none;
  font-weight:900;
}
.gamecenter-muted{color:var(--muted);font-size:.85rem;}
.gamecenter-player-placeholder{
  min-height:170px;
  display:grid;
  place-items:center;
  margin-top:18px;
  border-radius:14px;
  color:#8795a1;
  background:linear-gradient(135deg,#edf5fb,#dceef9);
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.gamecenter-media-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:20px;
}
.gamecenter-media-grid div{
  min-height:180px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#8795a1;
  background:#eef4f8;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.gamecenter-link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 12px;
  border-radius:10px;
  color:#fff;
  background:var(--columbia-dark);
  text-decoration:none;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.04em;
}
@media(max-width:800px){
  .gamecenter-matchup{grid-template-columns:1fr;gap:18px;padding:30px 24px;}
  .gamecenter-middle{order:2;}
  .gamecenter-team:last-child{order:3;}
  .gamecenter-meta,.gamecenter-grid,.gamecenter-media-grid{grid-template-columns:1fr;}
  .gamecenter-meta div{border-right:0;border-bottom:1px solid rgba(255,255,255,.12);}
  .gamecenter-meta div:last-child{border-bottom:0;}
  .gamecenter-card-wide{grid-column:auto;}
}



/* =========================
   Version 7 League Hub
   ========================= */
.league-page,.ballparks-page,.team-profile-page,.ballpark-profile-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.league-hero{
  display:grid;
  grid-template-columns:1fr 300px;
  align-items:center;
  gap:36px;
  padding:44px;
  color:#fff;
  border-radius:24px;
  background:
    radial-gradient(circle at 82% 18%,rgba(108,180,238,.3),transparent 35%),
    linear-gradient(135deg,var(--navy),var(--navy-2));
  box-shadow:0 20px 46px rgba(7,25,45,.18);
}
.league-hero h1{margin:0;font-size:clamp(2.8rem,6vw,5.6rem);}
.league-hero p:last-child{max-width:680px;color:#d8e5ee;line-height:1.7;}
.league-hero img{width:100%;max-height:210px;object-fit:contain;border-radius:16px;}
.league-quicklinks{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:22px;
}
.league-quicklinks a{
  padding:20px;
  border:1px solid var(--line);
  border-radius:14px;
  color:var(--navy);
  background:#fff;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(7,25,45,.05);
}
.league-quicklinks strong{display:block;}
.league-quicklinks span{display:block;margin-top:4px;color:var(--muted);font-size:.75rem;}
.league-section{margin-top:54px;}
.league-section-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
}
.league-section-heading h2{margin:0;color:var(--navy);font-size:clamp(2rem,4vw,3.4rem);}
.league-section-heading>span{
  padding:6px 10px;
  border-radius:999px;
  color:var(--navy);
  background:var(--columbia);
  font-size:.63rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.standings-table-wrap{
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.standings-table{width:100%;border-collapse:collapse;min-width:760px;}
.standings-table th,.standings-table td{
  padding:15px 14px;
  border-bottom:1px solid var(--line);
  text-align:center;
}
.standings-table th{
  color:#fff;
  background:var(--navy);
  font-size:.65rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.standings-table th:first-child,.standings-table td:first-child{text-align:left;}
.standings-table tr:last-child td{border-bottom:0;}
.standings-table .tribe-row{background:#eef8ff;}
.standings-team{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  text-decoration:none;
}
.standings-team>span{
  width:24px;
  color:var(--muted);
  text-align:center;
}
.standings-team img{width:36px;height:36px;object-fit:contain;}
.league-team-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.league-team-card{
  display:grid;
  grid-template-columns:150px 1fr;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.league-team-logo{
  display:grid;
  place-items:center;
  padding:20px;
  background:#f4f8fb;
}
.league-team-logo img{width:110px;height:110px;object-fit:contain;}
.league-team-copy{padding:24px;}
.league-team-copy>span{color:var(--columbia-dark);font-size:.65rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.league-team-copy h3{margin:8px 0;color:var(--navy);}
.league-team-copy p{color:var(--muted);line-height:1.6;}
.league-team-copy a{color:var(--columbia-dark);text-decoration:none;font-weight:900;}
.league-playoffs{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:34px;
  border-radius:20px;
  background:linear-gradient(135deg,#f2ecfa,#ece6f7);
}
.league-playoffs h2{margin:0;color:var(--navy);}
.league-playoffs p{color:var(--muted);line-height:1.7;}
.league-playoffs img{width:170px;height:170px;object-fit:contain;border-radius:14px;}

.ballpark-tools{
  margin-top:24px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.ballpark-tools label{
  display:block;
  margin-bottom:7px;
  color:var(--navy);
  font-size:.67rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.ballpark-tools input{
  width:100%;
  min-height:44px;
  padding:10px 12px;
  border:1px solid #cfdbe4;
  border-radius:9px;
  font:inherit;
}
.ballpark-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:24px;
}
.ballpark-card{
  display:grid;
  grid-template-columns:190px 1fr;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.ballpark-photo{
  min-height:190px;
  display:grid;
  place-items:center;
  color:#8b99a7;
  background:linear-gradient(135deg,#edf5fb,#dceef9);
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.ballpark-photo img{width:100%;height:100%;object-fit:cover;}
.ballpark-copy{padding:24px;}
.ballpark-copy>span{color:var(--columbia-dark);font-size:.65rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.ballpark-copy h2{margin:8px 0;color:var(--navy);font-size:1.45rem;}
.ballpark-copy p{color:var(--muted);line-height:1.6;}
.ballpark-copy a{color:var(--columbia-dark);text-decoration:none;font-weight:900;}

.team-profile-hero,.ballpark-profile-hero{
  display:grid;
  grid-template-columns:330px 1fr;
  align-items:center;
  gap:40px;
  padding:42px;
  color:#fff;
  border-radius:24px;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}
.team-profile-hero>img{width:260px;height:260px;object-fit:contain;margin:auto;}
.team-profile-hero h1,.ballpark-profile-hero h1{margin:0;font-size:clamp(2.7rem,6vw,5.4rem);}
.team-profile-record{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:24px;
}
.team-profile-record div{
  padding:14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:10px;
  background:rgba(255,255,255,.06);
}
.team-profile-record strong{display:block;font-size:1.2rem;}
.team-profile-record span{display:block;margin-top:3px;color:var(--columbia);font-size:.62rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.team-profile-grid{
  display:grid;
  grid-template-columns:1.7fr 1fr;
  gap:20px;
  margin-top:24px;
}
.team-profile-grid article,.team-profile-grid aside,.team-schedule-preview{
  padding:28px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(7,25,45,.06);
}
.team-profile-grid h2,.team-profile-grid h3,.team-schedule-preview h2{margin-top:0;color:var(--navy);}
.team-profile-grid p,.team-schedule-preview p{color:var(--muted);line-height:1.7;}
.team-profile-grid dl div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.team-profile-grid dt{color:var(--muted);}
.team-profile-grid dd{margin:0;font-weight:800;}
.team-schedule-preview{margin-top:20px;}

.ballpark-profile-photo{
  min-height:320px;
  display:grid;
  place-items:center;
  color:#9ab0c1;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  overflow:hidden;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.ballpark-profile-photo img{width:100%;height:100%;object-fit:cover;}
.ballpark-profile-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px;}
.ballpark-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}
.ballpark-info-grid article{
  padding:26px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 24px rgba(7,25,45,.06);
}
.ballpark-info-grid article>span{color:var(--columbia-dark);font-size:.65rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.ballpark-info-grid h2{margin:8px 0;color:var(--navy);font-size:1.25rem;}
.ballpark-info-grid p{color:var(--muted);line-height:1.65;}

@media(max-width:900px){
  .league-hero,.team-profile-hero,.ballpark-profile-hero{grid-template-columns:1fr;text-align:center;}
  .league-quicklinks,.league-team-grid,.ballpark-grid,.team-profile-grid,.ballpark-info-grid{grid-template-columns:1fr;}
  .league-team-card,.ballpark-card{grid-template-columns:130px 1fr;}
  .league-playoffs{align-items:flex-start;flex-direction:column;}
}
@media(max-width:560px){
  .league-quicklinks{grid-template-columns:1fr 1fr;}
  .league-team-card,.ballpark-card{grid-template-columns:1fr;}
  .league-team-logo,.ballpark-photo{min-height:170px;}
  .team-profile-record{grid-template-columns:1fr;}
  .ballpark-profile-actions .button{width:100%;}
}



/* =========================
   Version 8 visual launch
   ========================= */
.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}
.button-outline-light{
  color:#fff;
  border-color:rgba(255,255,255,.45);
  background:rgba(255,255,255,.05);
}
.button-outline-light:hover{background:rgba(255,255,255,.12);}

.v8-ticker{
  overflow:hidden;
  color:#fff;
  background:var(--red);
}
.v8-ticker-track{
  display:flex;
  gap:46px;
  width:max-content;
  padding:9px 0;
  animation:v8Ticker 30s linear infinite;
  font-size:.69rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.v8-ticker-track span::before{content:"⚾";margin-right:9px;}
@keyframes v8Ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.v8-hero{
  position:relative;
  min-height:710px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 82% 18%,rgba(108,180,238,.34),transparent 34%),
    linear-gradient(135deg,#07192d 0%,#0d2b4a 55%,#164b72 100%);
}
.v8-hero::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.34;
  background:
    linear-gradient(126deg,transparent 0 51%,rgba(255,255,255,.05) 51% 52%,transparent 52%),
    repeating-linear-gradient(0deg,transparent 0 36px,rgba(255,255,255,.025) 36px 37px);
}
.v8-hero::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;height:10px;
  background:linear-gradient(90deg,var(--red),var(--columbia),var(--red));
}
.v8-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(7,25,45,.97),rgba(7,25,45,.58) 68%,rgba(7,25,45,.2));
}
.v8-hero-grid{
  position:relative;
  z-index:1;
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  display:grid;
  grid-template-columns:minmax(300px,470px) 1fr;
  align-items:center;
  gap:64px;
  padding:80px 0 110px;
}
.v8-hero-brand img{
  width:100%;
  max-height:360px;
  object-fit:contain;
  filter:drop-shadow(0 22px 32px rgba(0,0,0,.35));
}
.v8-hero-copy h1{
  margin:0;
  max-width:760px;
  font-size:clamp(3.5rem,7vw,7rem);
  line-height:.88;
  letter-spacing:-.06em;
  text-transform:uppercase;
}
.v8-hero-copy>p:last-of-type{
  max-width:680px;
  margin:22px 0 0;
  color:#dce9f2;
  font-size:1.14rem;
  line-height:1.7;
}
.v8-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px;}
.v8-scroll-cue{
  position:absolute;
  z-index:2;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  color:#cbdbe6;
  font-size:.64rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.v8-dashboard{
  position:relative;
  z-index:5;
  width:min(1120px,calc(100% - 28px));
  margin:-56px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  box-shadow:0 22px 50px rgba(7,25,45,.18);
}
.v8-dashboard article{
  padding:24px 18px;
  text-align:center;
  border-right:1px solid var(--line);
}
.v8-dashboard article:last-child{border-right:0;}
.v8-dashboard span{
  display:block;
  color:var(--muted);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.v8-dashboard strong{
  display:block;
  margin-top:5px;
  color:var(--navy);
  font-size:1.4rem;
}

.v8-section{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding-top:82px;
}
.v8-heading-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}
.v8-heading-row h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(2.1rem,4vw,3.6rem);
  line-height:1;
}
.v8-heading-row>a{
  color:var(--columbia-dark);
  text-decoration:none;
  font-weight:900;
}

.v8-next-game{
  margin-top:24px;
  display:grid;
  grid-template-columns:150px 1fr 110px 1fr 230px 170px;
  align-items:center;
  min-height:220px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 42px rgba(7,25,45,.11);
}
.v8-next-date{
  align-self:stretch;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px;
  color:#fff;
  background:var(--navy);
}
.v8-next-date span,.v8-next-date small{
  font-size:.69rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.v8-next-date strong{margin:7px 0;font-size:1.9rem;line-height:1;}
.v8-next-team{text-align:center;padding:20px;}
.v8-next-team img{width:112px;height:112px;margin:auto;object-fit:contain;}
.v8-next-team h3{margin:10px 0 0;color:var(--navy);font-size:1rem;}
.v8-next-vs{text-align:center;}
.v8-next-vs span{display:block;color:var(--red);font-size:1.85rem;font-weight:950;text-transform:uppercase;}
.v8-next-vs strong{display:block;margin-top:8px;color:var(--muted);font-size:.67rem;letter-spacing:.07em;text-transform:uppercase;}
.v8-next-info{
  align-self:stretch;
  display:grid;
  align-content:center;
  gap:13px;
  padding:22px;
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
}
.v8-next-info div{display:grid;gap:3px;}
.v8-next-info span{color:var(--columbia-dark);font-size:.62rem;font-weight:950;letter-spacing:.09em;text-transform:uppercase;}
.v8-next-info strong{color:var(--ink);font-size:.87rem;}
.v8-next-actions{display:grid;gap:10px;padding:18px;}

.v8-upcoming{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:24px;
}
.v8-upcoming-card{
  position:relative;
  display:grid;
  grid-template-columns:80px 100px 1fr;
  align-items:center;
  min-height:150px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:17px;
  background:#fff;
  box-shadow:0 10px 26px rgba(7,25,45,.07);
}
.v8-upcoming-card::before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;width:7px;
  background:var(--red);
}
.v8-upcoming-card.home::before{background:var(--columbia);}
.v8-upcoming-date{
  align-self:stretch;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:16px;
  border-right:1px solid var(--line);
}
.v8-upcoming-date span{color:var(--red);font-size:.66rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase;}
.v8-upcoming-date strong{margin-top:5px;color:var(--navy);}
.v8-upcoming-card img{width:76px;height:76px;margin:auto;object-fit:contain;}
.v8-upcoming-copy{padding:16px;}
.v8-upcoming-copy h3{margin:7px 0 3px;color:var(--navy);}
.v8-upcoming-copy p{margin:0;color:var(--muted);font-size:.8rem;}
.v8-upcoming-copy a{display:inline-block;margin-top:10px;color:var(--columbia-dark);text-decoration:none;font-weight:900;font-size:.75rem;}
.v8-pill{
  display:inline-flex;
  padding:4px 8px;
  border-radius:999px;
  color:#fff;
  background:var(--red);
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.v8-upcoming-card.home .v8-pill{color:var(--navy);background:var(--columbia);}

.v8-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.v8-feature-card{
  display:grid;
  grid-template-columns:42% 1fr;
  min-height:360px;
  overflow:hidden;
  border-radius:22px;
}
.v8-player-feature{background:linear-gradient(135deg,#eaf5fc,#dbeef9);}
.v8-coach-feature{color:#fff;background:linear-gradient(135deg,var(--navy),var(--navy-2));}
.v8-feature-photo{
  min-height:100%;
  display:grid;
  place-items:center;
  color:#8796a4;
  background:rgba(255,255,255,.42);
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.v8-feature-photo img{width:100%;height:100%;object-fit:cover;}
.v8-coach-feature .v8-feature-photo{color:#a7bac9;background:rgba(255,255,255,.06);}
.v8-feature-copy{padding:38px;}
.v8-feature-copy h2{margin:0;color:var(--navy);font-size:2.25rem;}
.v8-coach-feature h2{color:#fff;}
.v8-feature-copy p{line-height:1.7;}
.v8-coach-feature p{color:#d8e5ee;}

.v8-news-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:18px;
  margin-top:24px;
}
.v8-news-card{
  min-height:310px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.v8-news-card.featured{color:#fff;background:linear-gradient(145deg,var(--navy),var(--navy-2));}
.v8-news-card>span{color:var(--columbia-dark);font-size:.67rem;font-weight:950;letter-spacing:.1em;text-transform:uppercase;}
.v8-news-card.featured>span{color:var(--columbia);}
.v8-news-card h3{margin:16px 0 12px;color:var(--navy);font-size:1.45rem;line-height:1.2;}
.v8-news-card.featured h3{color:#fff;font-size:2rem;}
.v8-news-card p{color:var(--muted);line-height:1.65;}
.v8-news-card.featured p{color:#d8e5ee;}
.v8-news-card a{display:inline-block;margin-top:16px;color:var(--columbia-dark);text-decoration:none;font-weight:900;}
.v8-news-card.featured a{color:var(--columbia);}

.v8-standings-table{
  margin-top:24px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.v8-standings-head,.v8-standings-row{
  display:grid;
  grid-template-columns:1fr 70px 70px 90px;
  align-items:center;
}
.v8-standings-head{
  padding:13px 18px;
  color:#fff;
  background:var(--navy);
  font-size:.65rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.v8-standings-row{
  padding:13px 18px;
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid var(--line);
}
.v8-standings-row:last-child{border-bottom:0;}
.v8-standings-row.tribe{background:#eef8ff;}
.v8-standings-team{display:flex;align-items:center;gap:10px;}
.v8-standings-team img{width:34px;height:34px;object-fit:contain;}

.v8-host-cta{
  width:min(1220px,calc(100% - 28px));
  margin:82px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:46px;
  color:#fff;
  border-radius:22px;
  background:linear-gradient(115deg,var(--red),#a7131a);
}
.v8-host-cta h2{margin:0;font-size:clamp(2rem,4vw,3.5rem);}
.v8-host-cta p:last-child{margin-bottom:0;color:#ffe2e3;}

.v8-sponsor-carousel{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-top:24px;
}
.v8-sponsor-carousel div{
  min-height:110px;
  display:grid;
  place-items:center;
  padding:18px;
  color:#8493a0;
  border:1px dashed #b9c8d4;
  border-radius:14px;
  background:#fff;
  font-size:.69rem;
  font-weight:900;
  letter-spacing:.08em;
  text-align:center;
  text-transform:uppercase;
}

.v8-social-section{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.v8-social-copy{max-width:660px;}
.v8-social-copy h2{margin:0;color:var(--navy);font-size:clamp(2rem,4vw,3.4rem);}
.v8-social-copy p:last-child{color:var(--muted);line-height:1.7;}
.v8-social-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.v8-social-links a{
  min-width:130px;
  padding:14px 18px;
  border-radius:10px;
  color:var(--navy);
  background:var(--columbia);
  text-align:center;
  text-decoration:none;
  font-weight:900;
}

.v8-newsletter{
  width:min(1220px,calc(100% - 28px));
  margin:82px auto;
  display:grid;
  grid-template-columns:1fr 480px;
  align-items:center;
  gap:32px;
  padding:38px;
  border-radius:20px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}
.v8-newsletter h2{margin:0;font-size:clamp(2rem,4vw,3rem);}
.v8-newsletter p:last-child{color:#d7e4ed;line-height:1.7;}
.v8-newsletter-form{display:grid;grid-template-columns:1fr auto;gap:10px;}
.v8-newsletter-form input{
  min-height:48px;
  padding:11px 13px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:10px;
  background:#fff;
  font:inherit;
}

@media(max-width:1100px){
  .v8-hero-grid{grid-template-columns:340px 1fr;}
  .v8-next-game{grid-template-columns:130px 1fr 90px 1fr;}
  .v8-next-info{grid-column:1/5;grid-template-columns:repeat(3,1fr);border:0;border-top:1px solid var(--line);}
  .v8-next-actions{grid-column:1/5;grid-template-columns:1fr 1fr;border-top:1px solid var(--line);}
  .v8-sponsor-carousel{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:850px){
  .v8-hero{min-height:0;}
  .v8-hero-grid{grid-template-columns:1fr;text-align:center;padding:58px 0 94px;}
  .v8-hero-brand img{max-height:230px;}
  .v8-hero-actions{justify-content:center;}
  .v8-dashboard{grid-template-columns:1fr 1fr;margin-top:-44px;}
  .v8-upcoming,.v8-feature-grid,.v8-news-grid,.v8-sponsor-carousel{grid-template-columns:1fr;}
  .v8-heading-row,.v8-host-cta,.v8-social-section{align-items:flex-start;flex-direction:column;}
  .v8-newsletter{grid-template-columns:1fr;}
}
@media(max-width:560px){
  .v8-hero-copy h1{font-size:3.2rem;}
  .v8-hero-actions .button{width:100%;}
  .v8-dashboard{grid-template-columns:1fr;}
  .v8-next-game{display:block;}
  .v8-next-date{text-align:center;align-items:center;}
  .v8-next-info{grid-template-columns:1fr;}
  .v8-next-actions{grid-template-columns:1fr;}
  .v8-upcoming-card{grid-template-columns:72px 82px 1fr;}
  .v8-upcoming-card img{width:64px;height:64px;}
  .v8-feature-card{grid-template-columns:1fr;}
  .v8-feature-photo{min-height:220px;}
  .v8-standings-head,.v8-standings-row{grid-template-columns:1fr 45px 45px 60px;font-size:.75rem;}
  .v8-host-cta{padding:32px 24px;}
  .v8-social-links{grid-template-columns:1fr;width:100%;}
  .v8-social-links a{width:100%;}
  .v8-newsletter{padding:30px 22px;}
  .v8-newsletter-form{grid-template-columns:1fr;}
}



/* =========================
   Version 9 content engine
   ========================= */
.content-engine-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.content-tools{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:16px;
  margin-top:24px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
}
.content-tools label{
  display:block;
  margin-bottom:7px;
  color:var(--navy);
  font-size:.67rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.content-tools input,.content-tools select{
  width:100%;
  min-height:44px;
  padding:10px 12px;
  border:1px solid #cfdbe4;
  border-radius:9px;
  font:inherit;
  background:#fff;
}
.content-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:26px;
}
.content-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.content-card.featured{
  grid-column:span 2;
}
.content-card-image{
  min-height:220px;
  display:grid;
  place-items:center;
  color:#8795a1;
  background:linear-gradient(135deg,#edf5fb,#dceef9);
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.content-card-image img{width:100%;height:100%;object-fit:cover;}
.content-card-copy{padding:24px;}
.content-card-copy>span{
  color:var(--columbia-dark);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.content-card-copy h2{margin:8px 0;color:var(--navy);font-size:1.45rem;}
.content-card-copy p{color:var(--muted);line-height:1.65;}
.content-card-copy a{color:var(--columbia-dark);text-decoration:none;font-weight:900;}

.stats-dashboard{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-top:26px;
}
.stats-dashboard article{
  padding:20px;
  text-align:center;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.stats-dashboard span{
  display:block;
  color:var(--muted);
  font-size:.65rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.stats-dashboard strong{
  display:block;
  margin-top:5px;
  color:var(--navy);
  font-size:1.45rem;
}
.stats-leader-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:24px;
}
.stats-panel{
  padding:28px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(7,25,45,.06);
}
.stats-panel h2{margin-top:0;color:var(--navy);}
.leader-row{
  display:grid;
  grid-template-columns:36px 1fr repeat(4,70px);
  gap:10px;
  align-items:center;
  padding:13px 0;
  border-bottom:1px solid var(--line);
}
.leader-row span{color:var(--muted);text-align:center;}
.leader-row strong{color:var(--navy);}
.leader-row em{font-style:normal;color:var(--muted);font-size:.78rem;text-align:right;}

.sponsor-directory{margin-top:28px;}
.sponsor-tier-section{margin-top:42px;}
.sponsor-tier-heading h2{margin:0;color:var(--navy);font-size:2rem;}
.sponsor-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}
.sponsor-card-v9{
  display:grid;
  grid-template-columns:150px 1fr;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}
.sponsor-logo-v9{
  min-height:150px;
  display:grid;
  place-items:center;
  color:#8795a1;
  background:#eef5fa;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.sponsor-logo-v9 img{width:110px;height:110px;object-fit:contain;}
.sponsor-card-v9>div:last-child{padding:22px;}
.sponsor-card-v9 h3{margin:0;color:var(--navy);}
.sponsor-card-v9 p{color:var(--muted);line-height:1.6;}
.sponsor-card-v9 a{color:var(--columbia-dark);text-decoration:none;font-weight:900;}

.article-page{
  width:min(980px,calc(100% - 28px));
  margin:auto;
  padding:36px 0 80px;
}
.article-shell{
  padding:36px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 30px rgba(7,25,45,.07);
}
.article-back{color:var(--columbia-dark);text-decoration:none;font-weight:900;}
.article-shell h1{
  margin:8px 0 12px;
  color:var(--navy);
  font-size:clamp(2.3rem,5vw,4.5rem);
  line-height:1;
}
.article-shell time{color:var(--muted);}
.article-hero-placeholder{
  min-height:320px;
  display:grid;
  place-items:center;
  margin:26px 0;
  color:#8795a1;
  border-radius:16px;
  background:linear-gradient(135deg,#edf5fb,#dceef9);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.article-hero-placeholder img{width:100%;height:100%;object-fit:cover;border-radius:16px;}
.article-body p{color:var(--ink);font-size:1.05rem;line-height:1.8;}

.homepage-sponsor-card{
  min-height:110px;
  display:grid;
  place-items:center;
  padding:18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--navy);
  text-decoration:none;
  font-size:.72rem;
  font-weight:900;
  text-align:center;
}
.homepage-sponsor-card img{max-width:110px;max-height:75px;object-fit:contain;}

@media(max-width:900px){
  .content-card-grid,.stats-leader-grid,.sponsor-card-grid{grid-template-columns:1fr;}
  .content-card.featured{grid-column:auto;}
  .stats-dashboard{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:650px){
  .content-tools{grid-template-columns:1fr;}
  .stats-dashboard{grid-template-columns:1fr;}
  .leader-row{grid-template-columns:30px 1fr;gap:6px;}
  .leader-row em{grid-column:2;text-align:left;}
  .sponsor-card-v9{grid-template-columns:1fr;}
  .article-shell{padding:24px;}
}



/* =========================
   Version 10 Admin Prototype
   ========================= */
.admin-body{background:#eef3f7;}
.admin-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 24px;
  color:#fff;
  background:var(--navy);
  box-shadow:0 6px 20px rgba(7,25,45,.18);
}
.admin-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
}
.admin-brand img{width:56px;height:48px;object-fit:contain;}
.admin-brand strong{display:block;}
.admin-brand span{display:block;margin-top:2px;color:#aebfcd;font-size:.7rem;}
.admin-shell{
  width:min(1500px,100%);
  margin:auto;
  display:grid;
  grid-template-columns:230px 1fr;
  min-height:calc(100vh - 76px);
}
.admin-sidebar{
  padding:24px 16px;
  border-right:1px solid #d9e2e9;
  background:#fff;
}
.admin-nav{
  width:100%;
  margin-bottom:7px;
  padding:12px 14px;
  border:0;
  border-radius:9px;
  color:var(--navy);
  background:transparent;
  font:inherit;
  font-weight:850;
  text-align:left;
  cursor:pointer;
}
.admin-nav:hover,.admin-nav.active{
  color:#fff;
  background:var(--navy);
}
.admin-content{padding:28px;}
.admin-alert{
  padding:16px 18px;
  border-left:5px solid var(--columbia);
  border-radius:10px;
  background:#fff;
  box-shadow:0 8px 20px rgba(7,25,45,.05);
}
.admin-alert strong{color:var(--navy);}
.admin-alert p{margin:5px 0 0;color:var(--muted);}
.admin-panel{display:none;padding-top:28px;}
.admin-panel.active{display:block;}
.admin-page-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
}
.admin-page-heading h1{margin:0;color:var(--navy);font-size:clamp(2.2rem,4vw,3.5rem);}
.admin-metric-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.admin-metric-grid article{
  padding:22px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.admin-metric-grid span{
  display:block;
  color:var(--muted);
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.admin-metric-grid strong{
  display:block;
  margin-top:6px;
  color:var(--navy);
  font-size:1.8rem;
}
.admin-dashboard-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:20px;
}
.admin-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 20px rgba(7,25,45,.05);
}
.admin-card h2{margin-top:0;color:var(--navy);}
.admin-card p,.admin-card li{color:var(--muted);line-height:1.65;}
.admin-quick-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.admin-quick-actions button,.admin-export-grid button{
  min-height:48px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:10px;
  color:var(--navy);
  background:#f8fbfd;
  font:inherit;
  font-weight:850;
  cursor:pointer;
}
.admin-quick-actions button:hover,.admin-export-grid button:hover{
  color:#fff;
  background:var(--navy);
}
.admin-editor-layout{
  display:grid;
  grid-template-columns:330px 1fr;
  gap:18px;
}
.admin-list{
  max-height:720px;
  overflow:auto;
  padding:10px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.admin-list button{
  width:100%;
  margin-bottom:8px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:9px;
  color:var(--navy);
  background:#f8fbfd;
  font:inherit;
  text-align:left;
  cursor:pointer;
}
.admin-list button:hover{border-color:var(--columbia);background:#eef8ff;}
.admin-list strong{display:block;}
.admin-list span{display:block;margin-top:3px;color:var(--muted);font-size:.72rem;}
.admin-form{
  display:grid;
  gap:14px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 20px rgba(7,25,45,.05);
}
.admin-form-wide{max-width:900px;}
.admin-form label{
  display:grid;
  gap:6px;
  color:var(--navy);
  font-size:.69rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.admin-form input,.admin-form textarea,.admin-form select{
  width:100%;
  padding:10px 11px;
  border:1px solid #cfdbe4;
  border-radius:8px;
  color:var(--ink);
  background:#fff;
  font:inherit;
  font-weight:400;
  letter-spacing:0;
  text-transform:none;
}
.admin-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.admin-form-actions{display:flex;gap:10px;flex-wrap:wrap;}
.admin-checkbox{display:flex!important;grid-template-columns:auto 1fr!important;align-items:center;justify-content:flex-start;}
.admin-checkbox input{width:auto;}
.danger{color:#9d1c24;border-color:#e3b6ba;}
.admin-export-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:20px;
}
@media(max-width:1000px){
  .admin-shell{grid-template-columns:1fr;}
  .admin-sidebar{
    position:sticky;
    top:76px;
    z-index:10;
    display:flex;
    gap:7px;
    overflow-x:auto;
    border-right:0;
    border-bottom:1px solid #d9e2e9;
  }
  .admin-nav{width:auto;white-space:nowrap;}
  .admin-editor-layout{grid-template-columns:1fr;}
}
@media(max-width:700px){
  .admin-header{align-items:flex-start;flex-direction:column;}
  .admin-content{padding:18px;}
  .admin-metric-grid,.admin-dashboard-grid,.admin-export-grid,.admin-form-row{grid-template-columns:1fr;}
  .admin-page-heading{align-items:flex-start;flex-direction:column;}
}

.admin-footer-link{margin-left:8px;color:#7f94a5;text-decoration:none;font-size:.7rem;}



/* =========================
   Version 11 Player Experience
   ========================= */
.roster-tools{grid-template-columns:1fr 190px 190px;}
.player-card-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;}
.player-college-logo{width:48px;height:48px;object-fit:contain;}
.player-college-mark{
  width:48px;height:48px;display:grid;place-items:center;flex:0 0 auto;
  border-radius:10px;color:var(--navy);background:#eaf5fc;font-size:.72rem;font-weight:950;
}
.player-card-stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:16px 0;
}
.player-card-stats div{
  padding:10px 8px;border-radius:10px;background:#f2f7fa;text-align:center;
}
.player-card-stats strong{display:block;color:var(--navy);font-size:1rem;}
.player-card-stats span{
  display:block;margin-top:2px;color:var(--muted);font-size:.56rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
}

.player-v11-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.player-v11-hero{
  display:grid;
  grid-template-columns:410px 1fr;
  align-items:stretch;
  overflow:hidden;
  border-radius:26px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 18%,rgba(108,180,238,.34),transparent 34%),
    linear-gradient(135deg,var(--navy),var(--navy-2));
  box-shadow:0 22px 50px rgba(7,25,45,.2);
}
.player-v11-photo{
  min-height:520px;
  background:rgba(255,255,255,.05);
}
.player-v11-photo>img{width:100%;height:100%;object-fit:cover;}
.player-v11-intro{display:flex;flex-direction:column;justify-content:center;padding:46px;}
.player-v11-number{
  width:max-content;padding:8px 12px;border-radius:9px;background:var(--red);font-size:1.1rem;font-weight:950;
}
.player-v11-intro h1{
  margin:8px 0 6px;font-size:clamp(3.2rem,6vw,6.4rem);line-height:.9;letter-spacing:-.05em;
}
.player-v11-hometown{color:#d8e5ee;font-size:1.05rem;}
.player-v11-facts{
  display:grid;grid-template-columns:repeat(5,1fr);gap:10px;margin-top:24px;
}
.player-v11-facts div{
  padding:13px;border:1px solid rgba(255,255,255,.15);border-radius:11px;background:rgba(255,255,255,.06);
}
.player-v11-facts span,.player-v11-college small{
  display:block;color:var(--columbia);font-size:.59rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
}
.player-v11-facts strong,.player-v11-college strong{display:block;margin-top:4px;}
.player-v11-college{
  display:flex;align-items:center;gap:12px;margin-top:20px;padding:14px;border-radius:12px;background:rgba(255,255,255,.07);
}
.player-v11-college img{width:54px;height:54px;object-fit:contain;}
.player-v11-college>span{
  width:54px;height:54px;display:grid;place-items:center;border-radius:10px;color:var(--navy);background:var(--columbia);font-weight:950;
}
.player-v11-layout{
  display:grid;grid-template-columns:1.7fr .85fr;gap:22px;margin-top:24px;
}
.player-v11-main,.player-v11-sidebar{display:grid;gap:20px;align-content:start;}
.player-v11-card{
  padding:30px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 10px 25px rgba(7,25,45,.06);
}
.player-v11-card h2,.player-v11-card h3{margin-top:0;color:var(--navy);}
.player-v11-card p{color:var(--muted);line-height:1.75;}
.player-v11-card blockquote{
  margin:0;padding-left:18px;border-left:4px solid var(--columbia);color:var(--ink);font-size:1.02rem;line-height:1.7;
}
.player-v11-card ul{margin:0;padding-left:20px;color:var(--muted);line-height:1.7;}
.player-v11-card dl{margin:0;}
.player-v11-card dl div{
  display:flex;justify-content:space-between;gap:16px;padding:11px 0;border-bottom:1px solid var(--line);
}
.player-v11-card dt{color:var(--muted);}
.player-v11-card dd{margin:0;font-weight:800;text-align:right;}
.player-v11-statgrid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:10px;
}
.player-v11-statgrid div{
  padding:16px 10px;border-radius:12px;background:#f2f7fa;text-align:center;
}
.player-v11-statgrid strong{display:block;color:var(--navy);font-size:1.35rem;}
.player-v11-statgrid span{
  display:block;margin-top:3px;color:var(--muted);font-size:.59rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
}
.player-v11-game-log{display:grid;}
.player-v11-game-row{
  display:grid;grid-template-columns:110px 1fr 180px;gap:14px;padding:13px 0;border-bottom:1px solid var(--line);
}
.player-v11-game-row span,.player-v11-game-row em{color:var(--muted);font-style:normal;}
.player-v11-qa{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.player-v11-qa div{padding:14px;border-radius:11px;background:#f4f8fb;}
.player-v11-qa span{
  display:block;color:var(--columbia-dark);font-size:.6rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
}
.player-v11-qa strong{display:block;margin-top:5px;color:var(--navy);}
.player-v11-muted{color:var(--muted);}
.player-v11-media{
  margin-top:24px;padding:30px;border-radius:20px;background:linear-gradient(135deg,#eaf5fc,#dbeef9);
}
.player-v11-media h2{margin:0;color:var(--navy);font-size:2.2rem;}
.player-v11-media-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:20px;}
.player-v11-media-grid>div,.player-v11-media-grid>a{
  min-height:220px;display:grid;place-items:center;overflow:hidden;border-radius:14px;background:#fff;color:var(--navy);text-decoration:none;font-weight:900;
}
.player-v11-media-grid img{width:100%;height:100%;object-fit:cover;}
.player-v11-media-placeholder{color:#8795a1!important;font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;}

@media(max-width:980px){
  .roster-tools{grid-template-columns:1fr 1fr;}
  .roster-search-wrap{grid-column:1/-1;}
  .player-v11-hero{grid-template-columns:330px 1fr;}
  .player-v11-facts{grid-template-columns:repeat(3,1fr);}
  .player-v11-statgrid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:760px){
  .roster-tools,.player-v11-layout{grid-template-columns:1fr;}
  .roster-search-wrap{grid-column:auto;}
  .player-v11-hero{grid-template-columns:1fr;}
  .player-v11-photo{min-height:360px;}
  .player-v11-intro{padding:30px;}
  .player-v11-facts{grid-template-columns:repeat(2,1fr);}
  .player-v11-statgrid{grid-template-columns:repeat(2,1fr);}
  .player-v11-game-row{grid-template-columns:1fr;}
  .player-v11-qa,.player-v11-media-grid{grid-template-columns:1fr;}
}



/* =========================
   Version 12 GameChanger workflow
   ========================= */
.gc-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.gc-hero{
  display:grid;
  grid-template-columns:1fr 320px;
  align-items:center;
  gap:42px;
  padding:48px;
  border-radius:25px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 18%,rgba(108,180,238,.34),transparent 35%),
    linear-gradient(135deg,var(--navy),var(--navy-2));
  box-shadow:0 22px 48px rgba(7,25,45,.2);
}
.gc-hero h1{
  margin:0;
  max-width:760px;
  font-size:clamp(2.8rem,6vw,5.8rem);
  line-height:.94;
}
.gc-hero p{max-width:720px;color:#d9e6ef;line-height:1.7;}
.gc-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:25px;}
.gc-setup-message{font-size:.8rem!important;color:#ffdcde!important;}
.gc-phone-card{
  display:grid;
  gap:12px;
  padding:28px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  background:rgba(255,255,255,.08);
  box-shadow:0 18px 30px rgba(0,0,0,.2);
}
.gc-phone-card span{color:var(--columbia);font-size:.65rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase;}
.gc-phone-card strong{font-size:2rem;}
.gc-phone-card div{padding:12px;border-radius:10px;background:rgba(255,255,255,.07);}
.gc-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:26px;
}
.gc-feature-grid article{
  padding:28px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 25px rgba(7,25,45,.06);
}
.gc-feature-grid article>span{color:var(--columbia-dark);font-size:.65rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.gc-feature-grid h2{margin:8px 0;color:var(--navy);}
.gc-feature-grid p{color:var(--muted);line-height:1.65;}
.gc-workflow{
  margin-top:34px;
  padding:34px;
  border-radius:20px;
  background:linear-gradient(135deg,#eaf5fc,#dceef9);
}
.gc-workflow h2{margin:0;color:var(--navy);font-size:clamp(2rem,4vw,3.2rem);}
.gc-workflow-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin-top:24px;
}
.gc-workflow-steps div{
  min-height:150px;
  padding:18px;
  border-radius:14px;
  background:#fff;
}
.gc-workflow-steps strong{
  display:grid;
  place-items:center;
  width:34px;height:34px;
  border-radius:50%;
  color:#fff;
  background:var(--red);
}
.gc-workflow-steps span{display:block;margin-top:18px;color:var(--navy);font-weight:800;line-height:1.4;}

.admin-form-flat{padding:0;border:0;box-shadow:none;}
.gc-file-label{
  display:grid;
  gap:8px;
  padding:18px;
  border:1px dashed #aebfcb;
  border-radius:12px;
  color:var(--navy);
  font-weight:900;
}
.gc-file-label input{font:inherit;}
.gc-import-summary{
  margin:14px 0;
  padding:12px;
  border-radius:9px;
  color:var(--muted);
  background:#f1f6f9;
}
.gc-mapping-card{margin-top:20px;}
.gc-mapping-table-wrap{overflow-x:auto;}
.gc-mapping-table{width:100%;border-collapse:collapse;}
.gc-mapping-table th,.gc-mapping-table td{padding:12px;border-bottom:1px solid var(--line);text-align:left;}
.gc-mapping-table th{color:#fff;background:var(--navy);font-size:.65rem;letter-spacing:.08em;text-transform:uppercase;}
.gc-match{display:inline-flex;padding:5px 8px;border-radius:999px;font-size:.6rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase;}
.gc-match.matched{color:#155d32;background:#dff4e7;}
.gc-match.unmatched{color:#8a2b31;background:#f8e1e3;}

@media(max-width:900px){
  .gc-hero,.gc-feature-grid{grid-template-columns:1fr;}
  .gc-workflow-steps{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:560px){
  .gc-hero{padding:32px 24px;}
  .gc-hero-actions .button{width:100%;}
  .gc-workflow-steps{grid-template-columns:1fr;}
}



/* =========================
   Version 13 Game Day Central
   ========================= */
.gdc-page{
  width:min(1220px,calc(100% - 28px));
  margin:auto;
  padding:28px 0 80px;
}
.gdc-scoreboard{
  overflow:hidden;
  border-radius:24px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 18%,rgba(108,180,238,.34),transparent 34%),
    linear-gradient(135deg,var(--navy),var(--navy-2));
  box-shadow:0 22px 50px rgba(7,25,45,.2);
}
.gdc-scoreboard.status-live{background:linear-gradient(135deg,#6b1017,#b31f2b);}
.gdc-scoreboard.status-final{background:linear-gradient(135deg,#152b3d,#263f52);}
.gdc-scoreboard.status-postponed,.gdc-scoreboard.status-delayed{background:linear-gradient(135deg,#5b4a19,#92772a);}
.gdc-scoreboard.status-cancelled{background:linear-gradient(135deg,#3e3e3e,#666);}
.gdc-status-row{
  display:flex;justify-content:space-between;gap:20px;
  padding:14px 20px;border-bottom:1px solid rgba(255,255,255,.14);
}
.gdc-status{
  padding:6px 10px;border-radius:999px;color:var(--navy);background:var(--columbia);
  font-size:.63rem;font-weight:950;letter-spacing:.09em;text-transform:uppercase;
}
.status-live .gdc-status{color:#fff;background:#ffcc00;}
.status-final .gdc-status{color:#fff;background:var(--red);}
.gdc-countdown{color:#d8e5ee;font-size:.7rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase;}
.gdc-matchup{
  display:grid;grid-template-columns:1fr 180px 1fr;align-items:center;gap:24px;padding:42px;
}
.gdc-team{text-align:center;}
.gdc-team img{width:160px;height:160px;object-fit:contain;filter:drop-shadow(0 14px 20px rgba(0,0,0,.28));}
.gdc-team h1{margin:12px 0;color:#fff;font-size:clamp(1.5rem,3vw,2.5rem);}
.gdc-score{display:block;font-size:4rem;line-height:1;}
.gdc-center{text-align:center;}
.gdc-center>span{display:block;color:var(--columbia);font-size:2rem;font-weight:950;text-transform:uppercase;}
.gdc-center>div{margin-top:10px;color:#dce7ef;font-size:.7rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase;}
.gdc-meta{
  display:grid;grid-template-columns:repeat(6,1fr);
  border-top:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.gdc-meta div{padding:16px 12px;text-align:center;border-right:1px solid rgba(255,255,255,.12);}
.gdc-meta div:last-child{border-right:0;}
.gdc-meta span{display:block;color:var(--columbia);font-size:.59rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.gdc-meta strong{display:block;margin-top:4px;font-size:.85rem;}
.gdc-primary-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;padding:22px;}
.gdc-primary-actions .button{min-width:180px;}
.gdc-disabled{opacity:.65;pointer-events:none;}

.gdc-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:24px;
}
.gdc-card{
  padding:30px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 10px 25px rgba(7,25,45,.06);
}
.gdc-card-wide{grid-column:1/-1;}
.gdc-card h2,.gdc-card h3{margin-top:0;color:var(--navy);}
.gdc-card p{color:var(--muted);line-height:1.7;}
.gdc-starters{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.gdc-starters div{
  padding:18px;border-radius:12px;background:#f2f7fa;
}
.gdc-starters span,.gdc-info-list span{
  display:block;color:var(--columbia-dark);font-size:.61rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
}
.gdc-starters strong,.gdc-info-list strong{display:block;margin-top:5px;color:var(--navy);}
.gdc-info-list{display:grid;gap:10px;}
.gdc-info-list div{padding:12px 0;border-bottom:1px solid var(--line);}
.gdc-lineup-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.gdc-lineup-grid ol{margin:0;padding-left:24px;}
.gdc-lineup-grid li{
  padding:9px 0;border-bottom:1px solid var(--line);color:var(--ink);
}
.gdc-lineup-grid li span{display:inline-block;min-width:42px;color:var(--muted);font-size:.72rem;}
.gdc-card blockquote{margin:18px 0 0;padding-left:18px;border-left:4px solid var(--columbia);color:var(--ink);font-size:1rem;line-height:1.7;}
.gdc-potg{display:grid;grid-template-columns:140px 1fr;gap:18px;align-items:center;}
.gdc-potg-photo{
  min-height:150px;display:grid;place-items:center;overflow:hidden;border-radius:14px;color:#8795a1;background:#edf5fb;font-size:.68rem;font-weight:900;text-transform:uppercase;
}
.gdc-potg-photo img{width:100%;height:100%;object-fit:cover;}
.gdc-performance-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.gdc-performance-grid>div{
  min-height:130px;padding:18px;border-radius:12px;background:#f4f8fb;
}
.gdc-performance-grid strong{display:block;color:var(--navy);}
.gdc-performance-grid span{display:block;margin-top:6px;color:var(--muted);line-height:1.5;}
.gdc-performance-placeholder{grid-column:1/-1;color:var(--muted);}
.gdc-media-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.gdc-media-grid>div,.gdc-media-grid>a{
  min-height:220px;display:grid;place-items:center;overflow:hidden;border-radius:14px;color:var(--navy);background:#eef4f8;text-decoration:none;font-weight:900;
}
.gdc-media-grid img{width:100%;height:100%;object-fit:cover;}
.gdc-media-placeholder{color:#8795a1!important;font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;}
.gdc-muted{color:var(--muted);}

.gdc-latest-result{
  display:grid;grid-template-columns:1fr 100px 1fr auto;align-items:center;gap:20px;
  margin-top:24px;padding:24px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(7,25,45,.06);
}
.gdc-latest-team{display:grid;grid-template-columns:56px 1fr auto;align-items:center;gap:12px;}
.gdc-latest-team img{width:56px;height:56px;object-fit:contain;}
.gdc-latest-team strong{color:var(--navy);}
.gdc-latest-team span{color:var(--red);font-size:1.8rem;font-weight:950;}
.gdc-latest-final{text-align:center;color:var(--muted);font-size:.7rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.gdc-latest-result>a{color:var(--columbia-dark);text-decoration:none;font-weight:900;}

@media(max-width:900px){
  .gdc-matchup{grid-template-columns:1fr;}
  .gdc-meta{grid-template-columns:repeat(2,1fr);}
  .gdc-grid{grid-template-columns:1fr;}
  .gdc-card-wide{grid-column:auto;}
  .gdc-lineup-grid,.gdc-performance-grid,.gdc-media-grid{grid-template-columns:1fr;}
  .gdc-latest-result{grid-template-columns:1fr;text-align:center;}
  .gdc-latest-team{grid-template-columns:56px 1fr 50px;text-align:left;}
}
@media(max-width:560px){
  .gdc-matchup{padding:28px 20px;}
  .gdc-score{font-size:3rem;}
  .gdc-meta{grid-template-columns:1fr;}
  .gdc-primary-actions .button{width:100%;}
  .gdc-starters{grid-template-columns:1fr;}
  .gdc-potg{grid-template-columns:1fr;}
}



/* =========================
   Version 14 Roster Import Wizard
   ========================= */
.import-wizard-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-bottom:22px;
}
.import-wizard-steps>div{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:11px;
  color:var(--muted);
  background:#fff;
}
.import-wizard-steps strong{
  width:30px;height:30px;display:grid;place-items:center;
  border-radius:50%;color:var(--navy);background:#eaf1f6;
}
.import-wizard-steps .active{color:var(--navy);border-color:var(--columbia);background:#eef8ff;}
.import-wizard-steps .active strong{color:var(--navy);background:var(--columbia);}
.import-wizard-steps .complete strong{color:#fff;background:#2e7d4f;}
.import-step{display:none;}
.import-step.active{display:block;}
.roster-import-dropzone{
  min-height:190px;
  display:grid!important;
  place-content:center;
  gap:7px;
  margin:20px 0;
  border:2px dashed #a9bcc9;
  border-radius:16px;
  color:var(--navy)!important;
  background:#f7fbfd;
  text-align:center;
  cursor:pointer;
}
.roster-import-dropzone strong{font-size:1.25rem;}
.roster-import-dropzone span{color:var(--muted);font-size:.8rem;}
.roster-import-dropzone input{display:none;}
.roster-mapping-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:20px 0;
}
.roster-mapping-grid label{
  display:grid;
  gap:6px;
  color:var(--navy);
  font-size:.67rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.roster-mapping-grid select{
  min-height:42px;
  padding:9px 10px;
  border:1px solid #cfdbe4;
  border-radius:8px;
  background:#fff;
  font:inherit;
  text-transform:none;
}
.roster-review-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}
.roster-review-table-wrap{
  overflow:auto;
  max-height:560px;
  margin:18px 0;
  border:1px solid var(--line);
  border-radius:12px;
}
.roster-review-table{
  width:100%;
  min-width:900px;
  border-collapse:collapse;
}
.roster-review-table th,.roster-review-table td{
  padding:12px;
  border-bottom:1px solid var(--line);
  text-align:left;
}
.roster-review-table th{
  position:sticky;
  top:0;
  z-index:1;
  color:#fff;
  background:var(--navy);
  font-size:.63rem;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.import-error-row{background:#fff2f3;}
.import-warning-row{background:#fff9e8;}
.roster-import-status{
  display:inline-flex;
  padding:5px 8px;
  border-radius:999px;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.roster-import-status.ready{color:#155d32;background:#dff4e7;}
.roster-import-status.review{color:#775600;background:#fff0bd;}
.roster-import-status.error{color:#8a2b31;background:#f8e1e3;}
.roster-import-complete{text-align:center;}
.roster-import-check{
  width:74px;height:74px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  border-radius:50%;
  color:#fff;
  background:#2e7d4f;
  font-size:2.2rem;
  font-weight:950;
}
.roster-import-complete .admin-form-actions{justify-content:center;}

@media(max-width:900px){
  .roster-mapping-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:650px){
  .import-wizard-steps{grid-template-columns:1fr 1fr;}
  .roster-mapping-grid{grid-template-columns:1fr;}
  .roster-review-heading{flex-direction:column;}
}
