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

:root {
  --bg: #070d1a;
  --bg-raised: #0c1628;
  --bg-card: #111e35;
  --bg-card-hover: #162540;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.15);
  --text: #e8eeff;
  --text-muted: #7a8baa;
  --text-dim: #3a4a6a;
  --green: #22d374;
  --gold: #f5b942;
  --blue: #5b9cf6;
  --purple: #a78bfa;
  --red: #f87171;
  --teal: #2dd4bf;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* TICKER */
.ticker {
  background: var(--green);
  color: #050a10;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  height: 32px;
  overflow: hidden;
}
.ticker-label {
  background: #050a10;
  color: var(--green);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.65rem;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-content .dot { opacity: 0.4; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,13,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  color: #050a10;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--text);
}
.logo-accent { color: var(--green); }
nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--border); }

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 55%, rgba(34,211,116,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(91,156,246,0.09) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 90%, rgba(167,139,250,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: 'TD';
  position: absolute;
  font-family: var(--font-display);
  font-size: 38vw;
  color: rgba(255,255,255,0.02);
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.05em;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--green); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--green); color: #050a10; }
.btn-primary:hover { background: #30e882; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,211,116,0.3); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-bright); }
.btn-ghost:hover { background: var(--border); transform: translateY(-2px); }
.hero-stats { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 130px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* SECTION LABELS */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.badge-blue   { background: rgba(91,156,246,0.15);  color: var(--blue); }
.badge-gold   { background: rgba(245,185,66,0.15);  color: var(--gold); }
.badge-purple { background: rgba(167,139,250,0.15); color: var(--purple); }
.badge-red    { background: rgba(248,113,113,0.15); color: var(--red); }
.badge-green  { background: rgba(34,211,116,0.15);  color: var(--green); }
.badge-teal   { background: rgba(45,212,191,0.15);  color: var(--teal); }

/* ARTICLE CARD */
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.article-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.article-card-meta { display: flex; align-items: center; gap: 0.75rem; }
.article-card-date { font-size: 0.75rem; color: var(--text-muted); }
.article-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; color: var(--text); }
.article-card-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.author-pill { display: flex; align-items: center; gap: 0.5rem; }
.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.read-time { font-size: 0.75rem; color: var(--text-dim); }

/* ARTICLES SECTION */
.articles-section { padding: 4rem 0; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* FEATURED ARTICLE */
.featured-article-section { padding: 3rem 0 1rem; }
.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.featured-card:hover { border-color: var(--border-bright); }
.featured-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 1rem;
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.featured-excerpt { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.featured-author { display: flex; align-items: center; gap: 1rem; }
.featured-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.featured-author-info .name { font-weight: 700; font-size: 0.9rem; }
.featured-author-info .role { font-size: 0.75rem; color: var(--text-muted); }
.featured-visual {
  background: var(--bg-raised);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.featured-visual-bg {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  opacity: 0.07;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.featured-visual-inner { text-align: center; padding: 2rem; position: relative; }
.featured-visual-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}
.featured-visual-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

/* CATEGORY FILTERS */
.category-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--border); color: var(--text); border-color: var(--border-bright); }

/* LEAGUE SECTION */
.league-section { padding: 4rem 0; border-top: 1px solid var(--border); }
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.division-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.division-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.division-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); }
.team-list { padding: 0.5rem 0; }
.team-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  transition: background 0.15s;
}
.team-item:hover { background: var(--bg-raised); }
.team-rank { font-family: var(--font-display); font-size: 0.8rem; color: var(--text-dim); width: 18px; text-align: center; flex-shrink: 0; }
.team-info { flex: 1; min-width: 0; }
.team-name { font-size: 0.875rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-owner { font-size: 0.72rem; color: var(--text-muted); }
.team-record { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); flex-shrink: 0; }
.loading { color: var(--text-muted); padding: 2rem; text-align: center; font-size: 0.875rem; }

/* PAGE HERO (about/contact) */
.page-hero { padding: 6rem 0 3rem; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.page-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; line-height: 1.75; }

/* PERSONAS */
.personas-section { padding: 2rem 0 6rem; }
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.persona-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.persona-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.persona-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.persona-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.15rem; }
.persona-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); }
.persona-bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.persona-covers { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.persona-cover-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  background: var(--border);
  color: var(--text-muted);
}
.persona-catchphrase {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-left: 2px solid var(--border-bright);
  padding-left: 0.75rem;
}

/* LEAGUE HISTORY (about page) */
.league-history { padding: 4rem 0; border-top: 1px solid var(--border); }
.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.history-content h3 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
.history-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
.history-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.history-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.history-stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--green); }
.history-stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 0.25rem; }

/* CONTACT */
.contact-section { padding: 4rem 0 6rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.contact-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.5rem; }
.contact-card p:last-child { margin-bottom: 0; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.site-footer .container { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-left p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 1.5rem; margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-credit { font-size: 0.75rem; color: var(--text-dim); }

/* ── LIVE BADGE ─────────────────────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34,211,116,0.1);
  border: 1px solid rgba(34,211,116,0.3);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,116,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(34,211,116,0); }
}

/* ── ARTICLE CARD VISUAL HEADER ──────────────────────────────── */
.article-card-visual {
  margin: -1.5rem -1.5rem 1rem;
  height: 68px;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.article-card-visual-text {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.06em;
  opacity: 0.18;
  white-space: nowrap;
  line-height: 1;
  color: #fff;
  pointer-events: none;
  user-select: none;
}
.article-card-visual-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.card-v-blue   { background: linear-gradient(135deg, rgba(91,156,246,0.28) 0%, rgba(91,156,246,0.06) 100%); }
.card-v-blue   .article-card-visual-line { background: var(--blue); }
.card-v-gold   { background: linear-gradient(135deg, rgba(245,185,66,0.28) 0%, rgba(245,185,66,0.06) 100%); }
.card-v-gold   .article-card-visual-line { background: var(--gold); }
.card-v-purple { background: linear-gradient(135deg, rgba(167,139,250,0.28) 0%, rgba(167,139,250,0.06) 100%); }
.card-v-purple .article-card-visual-line { background: var(--purple); }
.card-v-red    { background: linear-gradient(135deg, rgba(248,113,113,0.28) 0%, rgba(248,113,113,0.06) 100%); }
.card-v-red    .article-card-visual-line { background: var(--red); }
.card-v-green  { background: linear-gradient(135deg, rgba(34,211,116,0.28) 0%, rgba(34,211,116,0.06) 100%); }
.card-v-green  .article-card-visual-line { background: var(--green); }
.card-v-teal   { background: linear-gradient(135deg, rgba(45,212,191,0.28) 0%, rgba(45,212,191,0.06) 100%); }
.card-v-teal   .article-card-visual-line { background: var(--teal); }

/* ── FEATURED VISUAL (AUTHOR PANEL) ─────────────────────────── */
.featured-author-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.featured-visual-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-top: 0.75rem;
}

/* ── STAT CARD GLOW ──────────────────────────────────────────── */
.stat-card { border-top: 2px solid var(--green); }
.stat-number { text-shadow: 0 0 28px rgba(34,211,116,0.35); }

/* ── HAMBURGER ───────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV OVERLAY ──────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 100px;
  background: rgba(5,10,20,0.98);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 1.25rem 3rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active { color: var(--green); background: rgba(34,211,116,0.06); }
body.nav-open { overflow: hidden; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { flex-direction: row; justify-content: flex-start; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .featured-visual { min-height: 200px; }
  .history-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 2rem); }
  /* Ticker */
  .ticker-label { display: none; }
  /* Header */
  .site-header .container { height: 60px; }
  /* Hero */
  .hero { min-height: auto; padding: 2.5rem 0 2rem; }
  .hero-title { font-size: 3rem; }
  .hero-desc { font-size: 0.925rem; margin-bottom: 1.75rem; }
  .hero-actions { gap: 0.75rem; }
  .btn { padding: 0.75rem 1.4rem; font-size: 0.875rem; }
  .hero-stats { gap: 0.6rem; }
  .stat-card { padding: 1rem 0.75rem; min-width: 0; flex: 1; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.6rem; }
  /* Sections */
  .featured-article-section { padding: 2rem 0 0; }
  .featured-card { padding: 1.25rem; gap: 1.5rem; }
  .featured-title { font-size: 1.6rem; }
  .articles-section { padding: 2.5rem 0; }
  .articles-grid { grid-template-columns: 1fr; }
  .divisions-grid { grid-template-columns: 1fr; }
  .league-section { padding: 2.5rem 0; }
  .section-title { font-size: 1.8rem; }
  /* About / contact */
  .history-stats { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 3.5rem 0 2rem; }
  .page-title { font-size: 2.8rem; }
  /* Footer */
  .site-footer .container { flex-direction: column; gap: 1.5rem; }
  .footer-links { gap: 1rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stat-number { font-size: 1.75rem; }
  .featured-title { font-size: 1.4rem; }
  .mobile-nav a { font-size: 2.8rem; }
}
