/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Barlow', sans-serif;
  background: #ffffff;
  color: #2e2e32;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg:      #ffffff;
  --bg2:     #faf8f4;
  --bg3:     #f3ebe0;
  --gold:    #c48f1a;
  --gold2:   #dba72e;
  --gold-light: #fdf0cc;
  --red:     #c02626;
  --red2:    #d93333;
  --dark:    #1a1a1c;
  --dark2:   #2e2e32;
  --text:    #333336;
  --muted:   #888890;
  --card:    #ffffff;
  --border:  #e8dece;
  --white:   #ffffff;
  /* legacy aliases used in HTML inline styles */
  --navy:    #1a1a1c;
  --navy2:   #2e2e32;
  --navy3:   #f3ebe0;
  --offwhite:#333336;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 0.72rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a:hover { color: var(--red); }
.top-bar-social { display: flex; gap: 16px; }
.top-bar-social a { font-size: 1rem; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-crest {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid var(--border);
}
.logo-crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text { line-height: 1.1; }
.logo-text .team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
}
.logo-text .team-league {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 600;
}

/* Nav */
nav { display: flex; align-items: stretch; gap: 2px; flex: 1; }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--dark2);
  padding: 0 14px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.nav-item > a:hover,
.nav-item > a.active {
  color: var(--red);
  background: rgba(192,38,38,0.06);
  border-bottom-color: var(--red);
}
.nav-item .chevron {
  font-size: 0.6rem;
  margin-left: 4px;
  opacity: 0.6;
}
/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 999;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.dropdown a:hover { background: var(--bg2); color: var(--red); }

/* Tickets CTA */
.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--red);
  color: var(--white);
}
.btn-gold:hover { background: var(--red2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,38,38,0.35); }
.btn-outline {
  background: transparent;
  color: var(--dark2);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(192,38,38,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(10,5,5,0.85) 0%, transparent 70%),
    linear-gradient(160deg, #200a0a 0%, #0f0505 100%);
  z-index: 0;
}
/* Ice rink lines decoration */
.hero-ice {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  z-index: 1;
  overflow: hidden;
}
.hero-ice::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 3px solid #fff;
}
.hero-ice::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
}
.hero-number {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2330px;
  height: 2330px;
  z-index: 1;
  user-select: none;
  opacity: 0.12;
}
.hero-number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-number-sm {
  position: absolute;
  right: -192px;
  bottom: -96px;
  width: 777px;
  height: 777px;
  z-index: 1;
  user-select: none;
  opacity: 0.12;
}
.hero-number-sm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-text { flex: 1; min-width: 0; }
.hero-logo-display {
  flex-shrink: 0;
  width: 749px;
  height: 749px;
}
.hero-logo-display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 1200px) {
  .hero-logo-display { width: 520px; height: 520px; }
}
@media (max-width: 900px) {
  .hero-logo-display { width: 360px; height: 360px; }
}
@media (max-width: 600px) {
  .hero-content { flex-direction: column; align-items: flex-start; }
  .hero-logo-display { width: 240px; height: 240px; align-self: center; }
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  z-index: 2;
}
.hero-scroll span { font-size: 1.2rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #200a0a 0%, #1a1010 60%, #0f0505 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 24px 48px;
  border-bottom: 3px solid var(--red);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 20% 50%, rgba(192,38,38,0.18) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}
.page-hero-ice {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.04);
  z-index: 0;
}
.page-hero-ice::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.03);
}

/* ===== TICKER / SCORE BAR ===== */
.score-bar {
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
  white-space: nowrap;
}
.score-bar-inner {
  display: flex;
  align-items: center;
}
.score-bar-label {
  background: var(--dark);
  color: var(--gold);
  padding: 8px 18px;
  flex-shrink: 0;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker {
  display: inline-flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  padding: 8px 24px;
}
.ticker:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { white-space: nowrap; }
.ticker-item .score { margin: 0 6px; font-weight: 900; }
.ticker-item .status { opacity: 0.7; font-size: 0.72rem; }

/* ===== SECTION COMMON ===== */
section { padding: 72px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.section-title span { color: var(--red); }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 6px;
}
.view-all {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
  white-space: nowrap;
}
.view-all:hover { color: var(--red2); }
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 8px;
  border-radius: 2px;
}

/* ===== NEWS GRID ===== */
#news { background: var(--bg2); }
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.news-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
}
.news-card:first-child {
  grid-row: 1 / 3;
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.news-card:first-child .news-card-img {
  aspect-ratio: unset;
  height: 100%;
  position: absolute;
  inset: 0;
}
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-img-placeholder {
  width: 100%;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 3rem;
  aspect-ratio: 16/9;
  transition: transform 0.4s;
}
.news-card:first-child .news-card-img-placeholder {
  aspect-ratio: unset;
  height: 100%;
  position: absolute;
  inset: 0;
}
.news-card:hover .news-card-img-placeholder { transform: scale(1.04); }
.news-card-body {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.news-card:first-child .news-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,5,5,0.97) 60%);
  padding: 48px 28px 28px;
}
.news-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.news-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 6px;
}
.news-card:first-child h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--white); }
.news-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.news-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== SCHEDULE ===== */
#schedule { background: var(--bg); }
.schedule-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover { color: var(--red); border-bottom-color: var(--red); }
.schedule-list { display: flex; flex-direction: column; gap: 2px; }
.game-row {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 16px;
  align-items: center;
  background: var(--card);
  padding: 16px 24px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.game-row:hover { border-left-color: var(--red); background: var(--bg2); }
.game-row.next-game { border-left-color: var(--red); background: rgba(192,38,38,0.05); }
.game-date { font-family: 'Barlow Condensed', sans-serif; }
.game-date .month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); }
.game-date .day { font-size: 2rem; font-weight: 900; line-height: 1; color: var(--dark); }
.game-date .year { font-size: 0.7rem; color: var(--muted); }
.game-info .matchup { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--dark); }
.game-info .venue { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.game-info .home-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 2px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted);
  margin-left: 8px;
}
.game-info .home-badge.home { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }
.game-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-align: right;
}
.game-time .tz { font-size: 0.7rem; color: var(--muted); display: block; }
.game-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--dark);
  text-align: right;
  white-space: nowrap;
}
.game-score .win { color: var(--gold); }
.game-score .loss { color: var(--red); }
.game-score .period { font-size: 0.7rem; font-weight: 600; color: var(--muted); display: block; text-align: center; }

/* ===== STANDINGS ===== */
#standings { background: var(--bg2); }
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.standings-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 10px 12px;
  background: var(--red);
  text-align: center;
  border-bottom: 2px solid var(--dark);
}
.standings-table thead th:first-child { text-align: left; }
.standings-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.standings-table tbody tr:hover { background: var(--bg3); }
.standings-table tbody tr.highlight { background: var(--gold-light); }
.standings-table tbody tr.highlight td:first-child { border-left: 3px solid var(--gold); }
.standings-table td {
  padding: 12px 12px;
  text-align: center;
  color: var(--text);
}
.standings-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
}
.standings-table td .rank {
  color: var(--muted);
  font-size: 0.75rem;
  margin-right: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}
.standings-table td .pts {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--red);
}

/* ===== ROSTER SECTION ===== */
#roster { background: var(--bg); }
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
}
.player-card {
  background: var(--card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}
.player-card:hover { transform: translateY(-4px); z-index: 1; }
.player-card-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #f3ebe0 0%, #e8dece 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.player-silhouette {
  font-size: 5rem;
  opacity: 0.25;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.player-number-bg {
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(192,38,38,0.15);
  line-height: 1;
}
.player-card-info {
  padding: 12px;
  border-top: 2px solid var(--border);
}
.player-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.05em;
}
.player-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.1;
  margin: 2px 0;
}
.player-pos {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== COMMUNITY ===== */
#community { background: var(--bg2); }
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.community-card {
  background: var(--card);
  padding: 32px;
  border-top: 3px solid var(--border);
  transition: border-color 0.2s;
  cursor: pointer;
}
.community-card:hover { border-top-color: var(--red); }
.community-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.community-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.community-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.community-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

/* ===== SPONSORS ===== */
#sponsors { background: var(--bg); padding: 48px 24px; }
.sponsors-label {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 28px;
}
.sponsors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
.sponsor-slot {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  min-width: 140px;
}
.sponsor-slot:hover { background: var(--white); border-color: var(--gold); color: var(--dark); }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--red);
  border-top: 3px solid var(--dark);
  padding: 56px 24px;
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.newsletter p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-input:focus { border-color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 56px 24px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-brand .logo-crest {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-color: rgba(255,255,255,0.15);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-brand .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.social-btn:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
}
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--red); }

/* ===== SUB-PAGE SPECIFIC ===== */

/* Roster table */
.roster-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.roster-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 10px 16px;
  background: var(--dark);
  text-align: left;
}
.roster-table thead th:first-child { width: 60px; text-align: center; }
.roster-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.roster-table tbody tr:hover { background: var(--bg2); }
.roster-table td {
  padding: 14px 16px;
  color: var(--text);
  vertical-align: middle;
}
.roster-table td:first-child {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--red);
}
.roster-table .player-name-cell {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
}
.roster-table .pos-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
}
.pos-badge.g { background: #e8f4fd; color: #1a6fa8; }
.pos-badge.d { background: var(--gold-light); color: #8a6000; }
.pos-badge.f { background: rgba(192,38,38,0.08); color: var(--red); }
.status-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 2px 8px;
  border-radius: 2px;
  border: 1.5px solid;
}
.status-badge.c { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }
.status-badge.a { border-color: var(--muted); color: var(--muted); background: var(--bg2); }

/* Filter buttons */
.filter-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* Staff cards */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.staff-card {
  background: var(--card);
  padding: 32px;
  border-top: 3px solid var(--border);
  transition: border-top-color 0.2s;
}
.staff-card:hover { border-top-color: var(--red); }
.staff-card.featured { border-top-color: var(--red); }
.staff-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.staff-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.staff-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 10px;
}
.staff-phone {
  font-size: 0.88rem;
  color: var(--muted);
}
.staff-phone a { color: var(--dark); font-weight: 600; }
.staff-phone a:hover { color: var(--red); }

/* Fan Zone cards */
.fanzone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.fanzone-card {
  background: var(--card);
  padding: 36px 32px;
  border-top: 3px solid var(--border);
  transition: border-top-color 0.2s;
}
.fanzone-card:hover { border-top-color: var(--red); }
.fanzone-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}
.fanzone-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.fanzone-icon { font-size: 2.6rem; margin-bottom: 16px; }

/* Admission pricing */
.admission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 720px;
}
.admission-card {
  padding: 32px 20px;
  text-align: center;
}
.admission-card .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 8px;
}
.admission-card .tier {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}
.admission-card .note {
  font-size: 0.68rem;
  opacity: 0.75;
}
.admission-card.red-card { background: var(--red); color: #fff; }
.admission-card.dark-card { background: var(--dark); color: #fff; }
.admission-card.gold-card { background: var(--gold); color: var(--dark); }

/* About page */
.about-history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.about-history-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 10px 16px;
  background: var(--red);
  text-align: center;
}
.about-history-table thead th:first-child { text-align: left; }
.about-history-table tbody tr { border-bottom: 1px solid var(--border); }
.about-history-table tbody tr:hover { background: var(--bg2); }
.about-history-table tbody tr.highlight-row { background: var(--gold-light); font-weight: 600; }
.about-history-table td {
  padding: 12px 16px;
  text-align: center;
  color: var(--text);
}
.about-history-table td:first-child { text-align: left; font-weight: 600; color: var(--dark); }

/* Info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.info-card {
  background: var(--card);
  padding: 32px;
  border-left: 3px solid var(--border);
  transition: border-left-color 0.2s;
}
.info-card:hover { border-left-color: var(--red); }
.info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}
.info-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* Arena cards */
.arena-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.arena-card {
  background: var(--card);
  padding: 28px;
  border-top: 3px solid var(--border);
}
.arena-card.primary { border-top-color: var(--red); }
.arena-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.arena-card .arena-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 4px;
}
.arena-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* Schedule page playoff bracket rows */
.playoff-round-header {
  background: var(--dark);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  margin-top: 8px;
}
.playoff-round-header:first-child { margin-top: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn-outline { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:first-child { grid-column: 1 / 3; grid-row: 1; }
  .standings-table .hide-md { display: none; }
  .roster-table .hide-md { display: none; }
  .admission-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero { min-height: 440px; }
  .hero-number { width: 360px; height: 360px; right: 0; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:first-child { grid-column: 1; }
  .game-row { grid-template-columns: 70px 1fr; }
  .game-time, .game-score { display: none; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .roster-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .staff-grid { grid-template-columns: 1fr; }
  .fanzone-grid { grid-template-columns: 1fr; }
  .admission-grid { grid-template-columns: repeat(2, 1fr); }
  .arena-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-actions .btn { padding: 10px 16px; font-size: 0.82rem; }
  .admission-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .game-row { grid-template-columns: 60px 1fr; gap: 10px; padding: 12px 16px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .logo-text .team-name { font-size: 1.05rem; }
  .logo-crest { width: 44px; height: 44px; }
}
