@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ============================================================
   THEME VARIABLES — EMERALD + AMBER
   ============================================================ */
:root {
  --bg: #07120f;
  --bg2: #0b1a16;
  --panel: rgba(16, 34, 29, 0.6);
  --panel2: #102420;
  --panel3: #143029;
  --text: #e8f5f0;
  --muted: #7fa79b;
  --line: rgba(127, 167, 155, 0.18);
  --accent: #10b981;
  --accent2: #34d399;
  --accent3: #6ee7b7;
  --gold: #fbbf24;
  --live: #ef4444;
  --success: #10b981;

  --grad-primary: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
  --grad-live: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --grad-panel: linear-gradient(145deg, rgba(16, 36, 32, 0.9), rgba(11, 26, 22, 0.9));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 15% -5%, rgba(16, 185, 129, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 5%, rgba(251, 191, 36, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #07120f 0%, #0b1a16 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
.container { width: min(1280px, 94%); margin: auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 18, 15, 0.82);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--text);
}
.brand span {
  color: var(--accent);
  font-size: 26px;
  text-shadow: 0 0 22px rgba(16, 185, 129, 0.8);
  animation: pulseBrand 2s ease-in-out infinite;
}
@keyframes pulseBrand {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(0.92); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
  border: 1px solid transparent;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-1px);
}
.nav-link.active {
  color: var(--accent);
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.2);
}

.live-link {
  color: #fff;
  background: var(--grad-live);
  padding: 9px 16px;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.4);
  border: none;
  font-weight: 700;
}
.live-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(239, 68, 68, 0.6);
  background: var(--grad-live);
  border-color: transparent;
}
.live-link.active {
  background: var(--grad-live);
  color: #fff;
}

.live-dot-small {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: livePulseSmall 1.2s infinite;
  box-shadow: 0 0 8px #fff;
}
@keyframes livePulseSmall {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.5); }
}

.menu-toggle {
  display: none;
  background: var(--panel2);
  border: 1px solid var(--line);
  color: white;
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
}
.menu-toggle:hover { background: var(--panel3); }

/* ============================================================
   PAGE TITLE (HERO)
   ============================================================ */
.page-title {
  position: relative;
  overflow: hidden;
  padding: 70px 0 55px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, rgba(16, 185, 129, 0.04) 0%, transparent 100%);
}

.page-title h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0 0 12px;
  line-height: 1.02;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #b8e5d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.25));
}
.page-title h1::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 4px;
  margin: 24px auto 0;
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.7);
}
.page-title p {
  font-size: 14px;
  color: var(--muted);
  margin: 22px 0 0;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.page-title p #heroCount {
  color: var(--gold);
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 44px 0; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.section-heading h2 {
  margin: 0 0 6px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.section-heading h2::before {
  content: '';
  width: 4px;
  height: 26px;
  background: var(--grad-primary);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}
.section-heading span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.tools { display: flex; gap: 10px; }
.tools input, .tools select {
  background: var(--panel2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 10px;
  min-width: 180px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: all .25s;
}
.tools input:focus, .tools select:focus {
  border-color: var(--accent);
  background: var(--panel3);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.tools input::placeholder { color: #5e8579; }

/* ============================================================
   LEAGUE FILTERS
   ============================================================ */
.league-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  -webkit-overflow-scrolling: touch;
}
.league-grid::-webkit-scrollbar { height: 5px; }
.league-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
.league-grid::-webkit-scrollbar-track { background: transparent; }

.league {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel2);
  color: var(--muted);
  cursor: pointer;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  font-family: inherit;
}
.league:hover {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--text);
  background: var(--panel3);
  transform: translateY(-2px);
}
.league.active {
  background: var(--grad-primary);
  color: #04120d;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  font-weight: 700;
  transform: translateY(-2px);
}

/* ============================================================
   EVENT GRID — MODERN SCOREBOARD LAYOUT
   ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 14px;
  width: 100%;
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: var(--grad-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .3s;
}

.event-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px -8px rgba(0, 0, 0, 0.7),
    0 0 32px rgba(16, 185, 129, 0.15);
}
.event-card:hover::before { opacity: 1; }

.event-card.is-live {
  border-color: rgba(239, 68, 68, 0.45);
  background: linear-gradient(145deg, rgba(40, 16, 16, 0.9), rgba(20, 10, 10, 0.9));
}
.event-card.is-live::before {
  background: var(--grad-live);
  opacity: 1;
}
.event-card.is-live:hover {
  box-shadow:
    0 16px 40px -8px rgba(0, 0, 0, 0.7),
    0 0 36px rgba(239, 68, 68, 0.25);
}

/* ---------- EVENT HEAD ---------- */
.event-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  min-height: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent3);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-badge {
  color: #fff;
  background: var(--grad-live);
  font-weight: 800;
  font-size: 9px;
  padding: 4px 9px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  animation: livePulse 1.2s infinite;
  display: inline-block;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.6);
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.ft-badge {
  color: var(--muted);
  background: rgba(127, 167, 155, 0.1);
  font-weight: 800;
  font-size: 9px;
  padding: 4px 9px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: inline-block;
}

.event-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  white-space: nowrap;
  letter-spacing: 0.3px;
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
}
.event-card.is-live .event-time {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
}

/* ---------- TEAMS (SCOREBOARD) ---------- */
.teams {
  padding: 4px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.team {
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, #0d1f1a, #07120f);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 9px;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.event-card:hover .team-icon {
  border-color: var(--accent);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}
.event-card.is-live:hover .team-icon {
  border-color: var(--live);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}
.team-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.team-icon span { font-size: 24px; }

.team-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  letter-spacing: -0.01em;
  max-width: 100%;
}

.versus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0d1f1a, #07120f);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: all .3s;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.05);
}
.event-card:hover .versus {
  border-color: var(--accent);
  color: var(--accent3);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
  transform: rotate(360deg);
}
.event-card.is-live .versus {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

/* ---------- LEAGUE + VIEW ---------- */
.event-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.league-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  min-width: 0;
}
.league-name::before {
  content: '🏆';
  font-size: 11px;
  opacity: 0.7;
  flex-shrink: 0;
}

.event-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #04120d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--grad-primary);
  border: none;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
}
.event-link:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.55);
  filter: brightness(1.1);
}
.event-card.is-live .event-link {
  background: var(--grad-live);
  color: #fff;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}
.event-card.is-live .event-link:hover {
  box-shadow: 0 6px 22px rgba(239, 68, 68, 0.6);
}

/* ---------- EMPTY ---------- */
.empty {
  text-align: center;
  padding: 60px 40px;
  color: var(--muted);
  border: 1px dashed rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  font-size: 14px;
  background: var(--panel2);
  grid-column: 1 / -1;
}
.empty strong { color: var(--accent); font-weight: 800; }
.hidden { display: none; }

/* ============================================================
   ABOUT / FOOTER
   ============================================================ */
.about {
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
  padding: 60px 0;
}
.about h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about h2::before {
  content: '';
  width: 4px;
  height: 26px;
  background: var(--grad-primary);
  border-radius: 4px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 12px;
  background: rgba(7, 18, 15, 0.7);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   PLAYER PAGE
   ============================================================ */
.player-page { padding: 52px 0; }

.player-top h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.5vw, 50px);
  margin: 18px 0 12px;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text);
}
.player-top p { color: var(--muted); font-size: 15px; font-weight: 500; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.player-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-top: 36px;
}

.video-shell, .side-panel {
  background: var(--grad-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: #04100c;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.video-placeholder iframe {
  width: 100%; height: 100%; border: 0;
}
.video-placeholder h2 { margin: 0; font-size: 20px; font-weight: 800; }
.video-placeholder p { color: var(--muted); font-size: 13px; margin-top: 8px; }

.play-symbol {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 12px;
  animation: pulsePlay 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}
@keyframes pulsePlay {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.1); opacity: 0.85; }
}

.server-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.server {
  background: var(--panel2);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.server:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--panel3);
}
.server.active {
  border-color: transparent;
  color: #04120d;
  background: var(--grad-primary);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.side-panel h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.side-panel h3::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--grad-primary);
  border-radius: 3px;
}
.side-panel p {
  font-size: 13px;
  color: var(--muted);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.side-panel p strong {
  color: var(--text);
  font-weight: 700;
  min-width: 70px;
}
.side-panel p:last-of-type { border-bottom: none; }

.full { width: 100%; text-align: center; margin-top: 14px; }

.btn {
  display: inline-block;
  background: var(--grad-primary);
  color: #04120d;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
  filter: brightness(1.08);
}

/* ============================================================
   ARTICLE SECTION
   ============================================================ */
.article-section {
  border-top: 1px solid var(--line);
  padding-top: 60px;
  margin-top: 20px;
}

.article-header {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.article-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 18px auto 24px;
  max-width: 900px;
  color: var(--text);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 12px;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  color: #c9ddd6;
  font-size: 16px;
  line-height: 1.85;
}
.article-body .lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  padding: 24px 26px;
  background: var(--panel2);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  margin: 50px 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.article-body h2::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}
.article-body h3 {
  color: var(--accent2);
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}
.article-body ul,
.article-body ol {
  margin: 0 0 26px 24px;
  color: #c9ddd6;
}
.article-body li {
  margin-bottom: 12px;
  line-height: 1.75;
  padding-left: 6px;
}
.article-body li::marker {
  color: var(--accent);
  font-weight: 800;
}
.article-body strong { color: #ffffff; font-weight: 700; }

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--panel2);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all .25s;
}
.tag-pill:hover {
  background: var(--grad-primary);
  color: #04120d;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-link { padding: 8px 11px; font-size: 12px; }
  .event-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

@media (max-width: 900px) {
  .player-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: #0b1a16;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
  }
  .main-nav.open { display: flex; }
  .nav-link { justify-content: flex-start; padding: 13px 16px; font-size: 14px; }
  .live-link { justify-content: center; }
}

@media (max-width: 700px) {
  .event-grid { grid-template-columns: 1fr; }

  .article-section { padding-top: 40px; }
  .article-header h1 { font-size: 26px; }
  .article-body { font-size: 15px; }
  .article-body .lead { font-size: 16px; padding: 18px; }
  .article-body h2 { font-size: 22px; margin-top: 40px; }
  .article-body h3 { font-size: 17px; }
  .article-meta { gap: 8px; font-size: 12px; }
  .article-meta span { padding: 5px 10px; }
}

@media (max-width: 600px) {
  .page-title { padding: 44px 0 36px; }
  .page-title h1 { font-size: 34px; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .tools { flex-direction: column; }
  .tools input, .tools select { width: 100%; min-width: unset; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .player-top h1 { font-size: 28px; }
  .video-shell, .side-panel { padding: 16px; }
  .team-icon { width: 50px; height: 50px; }
  .event-card { padding: 16px; }
}