/* ===========================
   SUNDAY HOOPS COCHRANE
   Base Stylesheet
   =========================== */

:root {
  --maroon: #7B1A1A;
  --red: #C0272D;
  --orange: #E8651A;
  --gold: #F0B429;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --dark-4: #2E2E2E;
  --text: #E8E8E8;
  --text-muted: #9A9A9A;
  --white: #FFFFFF;
  --radius: 10px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }

.gold { color: var(--gold); }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: #d45a14; border-color: #d45a14; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: #d9a020; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.85rem; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--dark-2);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.logo-icon { font-size: 1.8rem; }
.logo-main {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.logo-sub { display: block; font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--orange); }
.nav-fb { color: #5890FF !important; }
.nav-fb:hover { background: rgba(88,144,255,0.1) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.3rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.9rem 1.25rem;
  color: var(--text);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:hover { color: var(--orange); background: rgba(255,255,255,0.04); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0505 0%, #3a0a0a 30%, #1a0a00 60%, #0d0d0d 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,39,45,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232,101,26,0.1) 0%, transparent 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  padding: 5rem 1.25rem;
}
.season-pill {
  display: inline-block;
  background: rgba(240,180,41,0.15);
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1a0505 0%, #3a0a0a 40%, #0d0d0d 100%);
  padding: 3.5rem 1.25rem;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }
.page-hero .season-pill { margin-bottom: 1rem; }

/* ── LEAGUE BAR ─────────────────────────────────────────── */
.league-bar {
  background: var(--maroon);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.league-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ── CARDS ──────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.card {
  display: block;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--orange);
  background: var(--dark-4);
  transform: translateY(-2px);
}
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.25rem; }
.card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.card-cta { color: var(--orange); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.card-fb:hover { border-color: #5890FF; }
.card-fb .card-cta { color: #5890FF; }

/* ── NEXT GAME ──────────────────────────────────────────── */
.next-game-section { background: var(--dark-2); }
.game-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
}
.game-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}
.gd-month { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.gd-day { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--white); line-height: 1; }
.game-matchups { flex: 1; }
.matchup { display: flex; align-items: center; gap: 1rem; padding: 0.4rem 0; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.matchup span:first-child, .matchup span:last-child { color: var(--white); }
.vs { color: var(--gold); font-size: 0.85rem; font-weight: 900; }
.matchup-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 0.3rem 0; }

/* ── COMMUNITY SECTION ──────────────────────────────────── */
.community-section { background: linear-gradient(135deg, #1a0505 0%, #0d0d0d 100%); }
.community-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.community-copy h2 { color: var(--white); margin-bottom: 1rem; }
.community-copy p { color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.community-copy a { margin-top: 0.5rem; }
.community-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  min-width: 220px;
}
.stat {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.stat-n {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-l { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* ── SCHEDULE LIST ──────────────────────────────────────── */
.schedule-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; margin: 0 auto; }
.schedule-week {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}
.week-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--maroon);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  min-width: 58px;
  text-align: center;
  flex-shrink: 0;
}
.wd-month { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.wd-day { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.week-games { flex: 1; }
.sg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.team-a, .team-b { color: var(--white); }
.vs { color: var(--gold); font-size: 0.8rem; }
.week-status {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  flex-shrink: 0;
}
.status-upcoming { background: rgba(232,101,26,0.15); color: var(--orange); border: 1px solid rgba(232,101,26,0.3); }
.status-nogame { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1); }
.status-charity { background: rgba(231,76,60,0.15); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }
.status-playoffs { background: rgba(240,180,41,0.15); color: var(--gold); border: 1px solid rgba(240,180,41,0.3); }
.status-champ { background: rgba(240,180,41,0.25); color: var(--gold); border: 1px solid rgba(240,180,41,0.5); }
.week-champ { border-color: var(--gold) !important; }
.week-champ .week-date { background: #7a6000; }
.week-special { border-color: rgba(240,180,41,0.2); }
.week-nogame { opacity: 0.55; }
.nogame-text { color: var(--text-muted); font-style: italic; font-size: 1rem; }
.charity-label { color: #e74c3c; font-size: 0.9rem; font-weight: 600; font-family: 'Barlow', sans-serif; text-transform: none; letter-spacing: 0; }
.playoff-label { color: var(--gold); font-size: 0.9rem; font-weight: 600; font-family: 'Barlow', sans-serif; text-transform: none; letter-spacing: 0; }
.champ-text { color: var(--gold); font-size: 1.4rem; font-weight: 900; }

/* ── STANDINGS TABLE ────────────────────────────────────── */
.standings-wrap { max-width: 760px; margin: 0 auto; }
.standings-note {
  background: rgba(240,180,41,0.08);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.standings-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.standings-table th {
  background: var(--maroon);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 1rem;
  text-align: center;
  color: rgba(255,255,255,0.8);
  border-bottom: 2px solid var(--red);
}
.th-team { text-align: left !important; }
.standings-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: var(--text);
}
.standings-table tr:last-child td { border-bottom: none; }
.standings-table tr:hover td { background: rgba(255,255,255,0.03); }
.rank-cell { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--text-muted); font-size: 1.1rem; }
.team-cell { text-align: left !important; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); }
.rank-1 td { background: rgba(240,180,41,0.05); }
.rank-1 .team-cell { color: var(--gold); }
.rank-2 td { background: rgba(232,101,26,0.03); }
.standings-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.team-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-1 { background: var(--gold); }
.dot-2 { background: #e74c3c; }
.dot-3 { background: var(--orange); }
.dot-4 { background: #27ae60; }
.dot-5 { background: #8e44ad; }
.dot-6 { background: #2980b9; }

/* ── TEAM CARDS ─────────────────────────────────────────── */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.team-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ── WEEKLY RUN ─────────────────────────────────────────── */
.run-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.run-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.run-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.run-card h3 { color: var(--gold); margin-bottom: 0.5rem; }
.run-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.run-card small { color: var(--text-muted); font-size: 0.8rem; }
.run-note {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.run-note h2 { color: var(--white); margin-bottom: 1rem; }
.run-note p { color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.run-note a:not(.btn) { color: var(--orange); text-decoration: none; }
.run-note a:not(.btn):hover { text-decoration: underline; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  border-top: 3px solid var(--maroon);
  padding: 2.5rem 0;
  margin-top: 4rem;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-sub { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.3rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .community-inner { grid-template-columns: 1fr; gap: 2rem; }
  .community-stats { grid-template-columns: repeat(2, 1fr); min-width: unset; }
  .game-card { flex-direction: column; align-items: flex-start; }
  .schedule-week { gap: 1rem; }
  .footer-inner { flex-direction: column; }
  .hero { min-height: 60vh; }
  .league-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cards { grid-template-columns: 1fr; }
  .matchup { flex-wrap: wrap; }
}

/* ── Roster Cards ─────────────────────────────────── */
.team-card--roster {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 200px;
}
.team-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}
.team-nickname {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.roster-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.roster-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9rem;
  color: #cdd5e0;
}
.roster-list li:last-child {
  border-bottom: none;
}

/* ── Roster Button (in table) ─────────────────────── */
.roster-btn {
  background: none;
  border: none;
  color: #e2e8f0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
  vertical-align: middle;
}
.roster-btn:hover { color: var(--gold); }

/* ── Roster hint ──────────────────────────────────── */
.roster-hint {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ── Team card clickable ──────────────────────────── */
.team-card {
  cursor: pointer;
  justify-content: space-between;
  transition: background 0.2s, transform 0.15s;
}
.team-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.roster-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  margin-left: auto;
  padding-left: 0.5rem;
  opacity: 0.7;
}

/* ── Modal ────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: #0f1e30;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-team-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.modal-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.modal-team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.modal-team-sub {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.modal-roster {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-roster li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #cbd5e1;
  font-size: 0.95rem;
}
.modal-roster li:last-child { border-bottom: none; }
.player-num {
  width: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  flex-shrink: 0;
}

.team-cell .roster-btn .team-dot { display: inline-block; vertical-align: middle; margin-right: 0.4rem; }

/* ── Game Time Badge ──────────────────────────────── */
.game-time {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-right: 0.4rem;
  white-space: nowrap;
}

/* ── Site Logo Image ──────────────────────────────── */
.site-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

/* ── Facebook SVG Icons ───────────────────────────── */
.nav-fb .fb-icon {
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-right: 0.3rem;
  color: #1877f2;
  display: inline-block;
  position: relative;
  top: -1px;
}
.fb-icon-lg {
  width: 2rem;
  height: 2rem;
  color: #1877f2;
  display: block;
  margin: 0 auto;
}
