/* ============================================================
   shl.css — SHL 2026 Single Stylesheet
   Second Half League | NBA-inspired Design
   ============================================================ */

/* ── RESET & VARIABLES ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #17171a;
  --dark:   #1a1a2e;
  --darker: #0d0d14;
  --accent: #e63946;
  --accent2:#f4a261;
  --gold:   #f9c030;
  --white:  #ffffff;
  --gray1:  #f5f5f7;
  --gray2:  #e0e0e6;
  --gray3:  #9999aa;
  --gray4:  #555566;
  --navy:   #1b2a4a;
  --green:  #2a9d8f;
  --radius: 6px;
  --font:   'Inter', system-ui, sans-serif;
  --max:    1280px;
  /* Semantic tokens */
  --card:   #ffffff;
  --border: #e0e0e6;
  --text:   #17171a;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { font-family: var(--font); background: var(--gray1); color: var(--black); font-size: 14px; line-height: 1.5; }
a    { color: inherit; text-decoration: none; }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
ul   { list-style: none; }

/* ── ANIMATION ────────────────────────────────────────── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* ── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar { background: var(--black); color: #ccc; font-size: 11px; border-bottom: 1px solid #333; }
.top-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 6px 20px;
  display: flex; align-items: center; gap: 12px;
}
.top-bar-tag {
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 2px 8px; border-radius: 3px; font-size: 10px; letter-spacing: .5px; white-space: nowrap;
}
.top-bar-msg { flex: 1; color: #aaa; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar { background: var(--black); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--accent); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  height: 56px; display: flex; align-items: center; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-badge {
  background: var(--accent); color: #fff; padding: 4px 10px 4px 8px;
  border-radius: 4px; display: flex; flex-direction: column; line-height: 1;
}
.logo-text { font-size: 18px; font-weight: 900; letter-spacing: -1px; }
.logo-year { font-size: 10px; font-weight: 600; opacity: .85; letter-spacing: 1px; }
.logo-full { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; display: none; }
@media (min-width: 900px) { .logo-full { display: block; } }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; overflow: hidden; }
.nav-links a {
  color: #ccc; font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 4px;
  white-space: nowrap; transition: color .15s, background .15s;
  text-transform: uppercase; letter-spacing: .3px;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-active { color: #fff !important; background: var(--accent) !important; border-radius: 4px; }

.nav-auth { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-hamburger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 4px 8px; margin-left: auto; }
@media (max-width: 768px) { .nav-links, .nav-auth { display: none; } .nav-hamburger { display: block; } }

.nav-mobile { display: none; flex-direction: column; background: var(--darker); border-top: 1px solid #333; padding: 8px 0 12px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: #ccc; font-size: 14px; font-weight: 600; padding: 10px 24px; text-transform: uppercase; letter-spacing: .4px; }
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-mobile-auth {
  display: flex; gap: 8px;
  margin: 12px 16px 0;
}
.nav-mobile-auth a {
  flex: 1; text-align: center;
  padding: 10px 0 !important;
  font-size: .88rem !important;
  background: transparent;
}

/* ============================================================
   SCOREBOARD TICKER
   ============================================================ */
.scoreboard-bar { background: var(--navy); border-bottom: 1px solid #2a3d5e; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.scoreboard-inner { max-width: var(--max); margin: 0 auto; padding: 0 20px; display: flex; min-width: max-content; }
.score-card {
  padding: 10px 20px; border-right: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: pointer; transition: background .15s; min-width: 180px;
}
.score-card:hover { background: rgba(255,255,255,.05); }
.score-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.score-teams { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 12px; font-weight: 700; }
.score-num { color: #fff; font-size: 16px; font-weight: 900; }
.score-status { font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 2px 6px; border-radius: 3px; }
.score-status.final   { color: #888; }
.score-status.live    { background: var(--accent); color: #fff; animation: pulse 1.5s infinite; }
.score-status.upcoming{ color: var(--accent2); }

/* ============================================================
   PAGE HERO  (all inner pages share this)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1b2a4a 60%, #0d1b33 100%);
  border-bottom: 3px solid var(--accent);
  padding: 40px 0 32px;
}

.page-hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.page-hero-tag {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px; margin-bottom: 10px;
}
.page-hero-text h1 { color: #fff; font-size: clamp(24px,4vw,38px); font-weight: 900; margin-bottom: 8px; line-height: 1.15; }
.page-hero-text p  { color: #99a; font-size: 14px; max-width: 520px; line-height: 1.6; }
.page-hero-stats   { display: flex; gap: 32px; flex-shrink: 0; }
.hero-stat         { text-align: center; }
.hero-stat span    { display: block; font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat p       { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #666; margin-top: 4px; }
.gold-text         { color: var(--gold) !important; font-size: 26px !important; }

/* ============================================================
   TAB BAR  (shared by all inner pages)
   ============================================================ */
.tab-bar {
  background: transparent;
  position: sticky; top: 58px; z-index: 90;
  padding: 12px 0 4px;
}
.tab-bar-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex;
}
.tab-bar-inner-wrap {
  display: flex;
  background: var(--gray2, #f1f5f9);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
}
.hsl-tabs { display: flex; }

.tab-btn {
  background: none; border: none; font-family: var(--font);
  font-size: 13px; font-weight: 600; color: var(--gray3);
  padding: 8px 18px; cursor: pointer;
  border-radius: 7px;
  letter-spacing: .2px; white-space: nowrap;
  transition: background .15s, color .15s, box-shadow .15s;
}
.tab-btn:hover  { color: var(--black); background: rgba(255,255,255,.5); }
.tab-btn.active {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  font-weight: 700;
}

.tab-link {
  background: none; border: none; font-family: var(--font);
  font-size: 11px; font-weight: 700; color: var(--accent);
  cursor: pointer; text-transform: uppercase; letter-spacing: .4px; padding: 0;
}
.tab-link:hover { opacity: .75; }

.tab-content        { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   FILTER BAR  (pemain + hasil)
   ============================================================ */
.filter-bar {
  background: #fff; border-bottom: 1px solid var(--gray2);
  position: sticky; top: 58px; z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.filter-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.filter-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray1); border: 1.5px solid var(--gray2); border-radius: 5px;
  padding: 0 12px; flex: 1; min-width: 180px; max-width: 320px;
  transition: border-color .15s;
}
.filter-search:focus-within { border-color: var(--accent); }
.search-icon { color: var(--gray3); font-size: 14px; }
.filter-search input {
  border: none; background: none; font-family: var(--font);
  font-size: 13px; color: var(--black); padding: 9px 0; outline: none; width: 100%;
}
.filter-search input::placeholder { color: var(--gray3); }
.filter-selects { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.filter-selects select {
  font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--black);
  background: var(--gray1); border: 1.5px solid var(--gray2); border-radius: 5px;
  padding: 8px 12px; cursor: pointer; outline: none; transition: border-color .15s;
}
.filter-selects select:focus { border-color: var(--accent); }
.filter-reset {
  font-family: var(--font); font-size: 12px; font-weight: 700; color: var(--gray3);
  background: none; border: 1.5px solid var(--gray2); border-radius: 5px;
  padding: 8px 14px; cursor: pointer; text-transform: uppercase; letter-spacing: .4px;
  transition: color .15s, border-color .15s;
}
.filter-reset:hover { color: var(--accent); border-color: var(--accent); }
.filter-count { font-size: 12px; font-weight: 700; color: var(--gray3); margin-left: auto; white-space: nowrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--accent); color: #fff; font-weight: 700; font-size: 12px;
  padding: 8px 16px; border-radius: 4px; transition: background .15s;
  white-space: nowrap; text-transform: uppercase; letter-spacing: .4px; display: inline-block;
}
.btn-primary:hover { background: #c0293a; }
.btn-primary.large { font-size: 15px; padding: 14px 32px; border-radius: 6px; }

.btn-outline {
  display: inline-block; border: 2px solid var(--accent); color: var(--accent);
  font-size: 11px; font-weight: 800; padding: 7px 18px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .4px; transition: background .15s, color .15s;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* Match/result action buttons */
.mc-btn {
  font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .4px; display: inline-block;
  transition: background .15s, color .15s; cursor: pointer; border: none; font-family: var(--font);
}
.live-btn       { background: var(--accent); color: #fff; }
.live-btn:hover { background: #c0293a; }
.recap-btn      { background: var(--gray2); color: var(--black); }
.recap-btn:hover{ background: #ccc; }

/* ============================================================
   BADGES
   ============================================================ */
/* Position badges */
.pos-badge { display: inline-block; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: .4px; white-space: nowrap; }
.pos-gk    { background: #fff3cd; color: #856404; }
.pos-def   { background: #d1ecf1; color: #0c5460; }
.pos-mid   { background: #d4edda; color: #155724; }
.pos-wing  { background: #e2d9f3; color: #432874; }
.pos-fwd   { background: #f8d7da; color: #721c24; }
.pos-other { background: var(--gray2); color: var(--gray4); }

/* Group badges (klasemen) */
.group-badge { font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.group-badge.a { background: var(--accent); color: #fff; }
.group-badge.b { background: var(--navy); color: #fff; }

/* Story badges (homepage) */
.story-badge { position: absolute; top: 8px; left: 8px; font-size: 8px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; padding: 3px 7px; border-radius: 3px; color: #fff; }
.story-badge.new       { background: var(--accent); }
.story-badge.access    { background: #3a86ff; }
.story-badge.recap     { background: var(--green); }
.story-badge.milestone { background: var(--gold); color: #333; }

/* Round badges (hasil) */
.rb-badge { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; padding: 3px 8px; border-radius: 3px; }
.rb-playoff { background: var(--black); color: var(--gold); }
.rb-a       { background: var(--accent); color: #fff; }
.rb-b       { background: var(--navy); color: #fff; }

/* Phase badges (fixtures) */
.dg-phase { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; background: var(--gray2); color: var(--black); }
.playoff-phase { background: var(--black); color: var(--gold); }
.grupa-phase   { background: var(--accent); color: #fff; }
.grupb-phase   { background: var(--navy); color: #fff; }

/* Live badge */
.badge-live { background: var(--accent); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 3px; letter-spacing: .5px; animation: pulse 1.5s infinite; }

/* Team group tags (tim) */
.tc-group-tag { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 2px 7px; border-radius: 3px; }
.group-a, .grup-a { background: #ffe8ea; color: var(--accent); }
.group-b, .grup-b { background: #ddeaf4; color: var(--navy); }
.tc-playoff-tag { font-size: 9px; font-weight: 800; color: var(--gold); background: #fffbea; padding: 2px 7px; border-radius: 3px; }

/* ============================================================
   FORM RESULT BADGES  (.f.w/.f.l/.f.d)
   ============================================================ */
.f { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 3px; font-size: 10px; font-weight: 800; margin: 0 1px; }
.f.w { background: var(--green); color: #fff; }
.f.l { background: var(--accent); color: #fff; }
.f.d { background: var(--gold); color: #333; }
.f.sm { width: 16px; height: 16px; font-size: 9px; border-radius: 2px; }

/* ============================================================
   TEAM DOTS & AVATARS
   ============================================================ */
.team-dot    { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.team-dot.sm { width: 8px; height: 8px; }
.klub-dot    { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; vertical-align: middle; flex-shrink: 0; }

.player-avatar { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; color: #fff; flex-shrink: 0; letter-spacing: .5px; }
.sq-avatar     { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; font-size: 9px; font-weight: 900; color: #fff; margin-right: 6px; vertical-align: middle; }

/* ============================================================
   SHARED PAGE LAYOUT WRAPPERS
   ============================================================ */
.kls-main, .fix-main, .pmn-main, .tim-main, .hsl-main, .stat-main {
  max-width: 1100px; margin: 0 auto; padding: 16px 24px 80px;
}

/* Shared stat chip row (used in fixtures, tim, etc.) */
.stat-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 1100px; margin: 24px auto 0; padding: 0 24px;
}
.stat-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1.5px solid #cbd5e1;
  border-radius: 8px; padding: 8px 16px;
  border-left: 3px solid var(--comp-color, var(--accent));
}
.chip-value { font-size: 1.15rem; font-weight: 900; }
.chip-label { font-size: .75rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .04em; }

/* Shared empty state */
.empty-state-box { text-align: center; padding: 80px 0; color: #64748b; }
.empty-state-box span { font-size: 3rem; display: block; margin-bottom: 12px; }
.empty-state-box.in-grid { grid-column: 1/-1; }

/* Grids with sidebar */
.kls-grid, .fix-grid {
  display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start;
}
.pmn-grid, .hsl-grid {
  display: grid; grid-template-columns: 1fr 260px; gap: 24px; align-items: start;
}
.kls-grid.one-col { grid-template-columns: 1fr; }

@media (max-width: 1024px) {
  .kls-grid, .fix-grid, .pmn-grid, .hsl-grid { grid-template-columns: 1fr; }
  .kls-sidebar, .fix-sidebar, .pmn-sidebar, .hsl-sidebar { display: none; }
}

.kls-tables { display: flex; flex-direction: column; gap: 24px; }
.fix-col    { display: flex; flex-direction: column; gap: 0; }

/* ============================================================
   SHARED SIDEBAR CONTAINERS
   ============================================================ */
.kls-sidebar, .fix-sidebar, .pmn-sidebar, .hsl-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* Widget card */
.kls-widget, .fix-widget, .pmn-widget, .hsl-widget, .sidebar-widget {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray2);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.sidebar-widget { padding: 18px; }

/* Widget header */
.kls-widget .widget-header,
.fw-header, .pw-header, .hw-header, .widget-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--black);
}
.kls-widget .widget-header h3,
.fw-header h3, .pw-header h3, .hw-header h3, .widget-header h3,
.sidebar-widget h3 {
  font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .3px;
}
.sidebar-widget h3 { margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--black); }
.sidebar-widget .widget-header h3 { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* Widget links */
.fw-link, .pw-link, .hw-link, .see-all-sm {
  font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px;
}

/* Section headers (homepage) */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; border-bottom: 2px solid var(--black); padding-bottom: 8px; }
.section-header h2 { font-size: 18px; font-weight: 900; letter-spacing: -.3px; text-transform: uppercase; }
.section-header.light h2 { color: #fff; }
.see-all { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; transition: opacity .15s; }
.see-all:hover { opacity: .75; }
.see-all.white { color: #fff; }

/* ============================================================
   SCORER LISTS  (klasemen / pemain / hasil share this)
   ============================================================ */
.mini-scorer-list, .hs-scorer-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.mini-scorer-list li, .hs-scorer-list li { display: flex; align-items: center; gap: 8px; font-size: 12px; }

.scorer-rank, .sr-rank {
  width: 20px; height: 20px; border-radius: 50%; background: var(--gray1);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: var(--gray3); flex-shrink: 0;
}
.mini-scorer-list li:first-child .scorer-rank,
.sr-rank.gold, .gold-rank { background: var(--gold); color: #333; }

.scorer-info, .sr-info { flex: 1; }
.scorer-info strong, .sr-info strong { display: block; font-size: 12px; font-weight: 800; }
.scorer-info span, .sr-info span     { font-size: 10px; color: var(--gray3); }
.scorer-goals, .sr-goals { font-size: 13px; font-weight: 800; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   TABLE UTILITIES
   ============================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray2); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }

.positive { color: var(--green); font-weight: 700; }
.negative { color: var(--accent); font-weight: 700; }
.neutral  { color: var(--gray3); }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 60px 20px; text-align: center; gap: 12px;
}
.empty-state span { font-size: 40px; }
.empty-state p    { font-size: 14px; color: var(--gray3); }
.empty-state button {
  font-family: var(--font); font-size: 12px; font-weight: 700; color: var(--accent);
  background: none; border: 1.5px solid var(--accent); border-radius: 4px;
  padding: 8px 20px; cursor: pointer; text-transform: uppercase; letter-spacing: .4px;
  transition: background .15s, color .15s;
}
.empty-state button:hover { background: var(--accent); color: #fff; }

/* ============================================================
   HOMEPAGE — MAIN LAYOUT
   ============================================================ */
.main-content { max-width: var(--max); margin: 24px auto; padding: 0 20px; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
@media (max-width: 1024px) { .content-grid { grid-template-columns: 1fr; } .sidebar { display: none; } }

/* HERO ARTICLE */
.hero-article { border-radius: var(--radius); overflow: hidden; background: var(--black); margin-bottom: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.hero-img-wrap { position: relative; overflow: hidden; height: 480px; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.hero-tag { display: inline-block; background: var(--accent); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 3px; margin-bottom: 12px; width: fit-content; text-transform: uppercase; }
.hero-title { color: #fff; font-size: clamp(20px,3vw,32px); font-weight: 900; line-height: 1.2; margin-bottom: 12px; max-width: 680px; }
.hero-sub   { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 20px; max-width: 560px; }

.hero-related { padding: 16px 20px; background: var(--black); }
.related-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray3); margin-bottom: 10px; }
.hero-related ul { display: flex; flex-direction: column; gap: 7px; }
.hero-related li a { color: #ddd; font-size: 12px; transition: color .15s; }
.hero-related li a:hover { color: var(--accent); }

/* PREVIEW CARDS */
.preview-section { margin-bottom: 24px; }
.preview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
@media (max-width: 700px) { .preview-grid { grid-template-columns: 1fr 1fr; } }
.preview-card { background: var(--black); color: #fff; padding: 16px; border-radius: var(--radius); border-left: 3px solid var(--accent); }
.prev-label { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.preview-card h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.preview-card p  { font-size: 11px; color: #aaa; }

/* SECTION BLOCK */
.section-block { margin-bottom: 28px; }

/* STORIES */
.stories-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
@media (max-width: 900px) { .stories-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 550px) { .stories-grid { grid-template-columns: repeat(2,1fr); } }
.story-card { cursor: pointer; }
.story-thumb { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; margin-bottom: 8px; }
.story-thumb img { transition: transform .3s; }
.story-card:hover .story-thumb img { transform: scale(1.05); }
.story-card p { font-size: 12px; font-weight: 600; line-height: 1.4; color: var(--black); }

/* TRENDING */
.trending-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
@media (max-width: 700px) { .trending-grid { grid-template-columns: 1fr 1fr; } }
.trend-card { cursor: pointer; }
.trend-card img { border-radius: var(--radius); aspect-ratio: 16/10; height: auto; margin-bottom: 8px; transition: transform .3s; }
.trend-card:hover img { transform: scale(1.02); }
.trend-card p { font-size: 12px; font-weight: 700; line-height: 1.4; }

/* LEAGUE PASS BANNER */
.league-pass-banner { background: linear-gradient(135deg, var(--navy) 0%, #0d1b33 100%); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 28px; border: 1px solid #2a3d5e; }
.lp-content { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.lp-logo { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; background: var(--accent); padding: 8px 14px; border-radius: 6px; flex-shrink: 0; }
.lp-logo span { font-size: 12px; display: block; letter-spacing: 2px; margin-top: 2px; }
.lp-text { flex: 1; }
.lp-text h3 { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.lp-text p  { color: #99a; font-size: 13px; }

/* POSTSEASON */
.postseason-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
@media (max-width: 700px) { .postseason-grid { grid-template-columns: 1fr 1fr; } }
.post-card { cursor: pointer; position: relative; }
.post-card img { border-radius: var(--radius); aspect-ratio: 4/3; height: auto; margin-bottom: 8px; transition: transform .3s; }
.post-card:hover img { transform: scale(1.02); }
.post-card .story-badge { position: static; display: inline-block; margin-bottom: 6px; }
.post-card p { font-size: 12px; font-weight: 700; line-height: 1.4; }

/* GAME RECAPS */
.recaps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
@media (max-width: 700px) { .recaps-grid { grid-template-columns: 1fr 1fr; } }
.recap-card { cursor: pointer; }
.recap-score-header { background: var(--black); color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; text-align: center; padding: 5px; border-radius: var(--radius) var(--radius) 0 0; }
.recap-card img { aspect-ratio: 16/10; height: auto; transition: transform .3s; }
.recap-card:hover img { transform: scale(1.02); }
.recap-title { font-size: 11px; font-weight: 700; padding: 8px 6px 4px; background: #fff; border-radius: 0 0 var(--radius) var(--radius); }

/* NEWS LIST */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item { display: grid; grid-template-columns: 100px 1fr; gap: 14px; cursor: pointer; }
.news-item img { aspect-ratio: 4/3; height: auto; border-radius: 4px; }
.news-text h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; line-height: 1.35; }
.news-text p  { font-size: 12px; color: var(--gray4); line-height: 1.5; margin-bottom: 4px; }
.news-date    { font-size: 11px; color: var(--gray3); }
.news-item:hover .news-text h4 { color: var(--accent); }

/* REGISTRATION CTA */
.reg-cta-section { background: linear-gradient(135deg, var(--accent) 0%, #8b0000 100%); border-radius: var(--radius); margin-bottom: 24px; overflow: hidden; }
.reg-cta-inner { text-align: center; padding: 48px 32px; color: #fff; }
.reg-icon { font-size: 48px; margin-bottom: 16px; }
.reg-cta-inner h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.reg-cta-inner p  { font-size: 15px; opacity: .9; max-width: 500px; margin: 0 auto 24px; line-height: 1.6; }

/* HOMEPAGE SIDEBAR EXTRAS */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.app-widget { background: linear-gradient(135deg, var(--navy) 0%, var(--darker) 100%); color: #fff; text-align: center; }
.app-widget h3 { color: #fff; border-bottom-color: rgba(255,255,255,.2); }
.app-badge { display: inline-block; background: var(--accent); color: #fff; font-size: 22px; font-weight: 900; padding: 8px 14px 4px; border-radius: 6px; margin: 8px auto 14px; letter-spacing: -1px; }
.app-badge span { font-size: 10px; display: block; letter-spacing: 2px; font-weight: 600; }
.app-widget p { color: #aab; font-size: 12px; margin-bottom: 14px; }
.lp-widget { text-align: center; }
.lp-icon   { font-size: 32px; margin-bottom: 10px; }
.lp-widget p { font-size: 12px; color: var(--gray4); margin-bottom: 14px; }
.social-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; }
.social-btn { display: flex; align-items: center; justify-content: center; height: 38px; border-radius: 4px; font-size: 13px; font-weight: 800; color: #fff; transition: opacity .15s; }
.social-btn:hover { opacity: .8; }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(45deg,#f09433,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888); }
.social-btn.tw { background: #000; }
.social-btn.yt { background: #ff0000; }
.social-btn.wa { background: #25d366; }
.social-btn.tk { background: #010101; }
.quick-links { display: flex; flex-direction: column; gap: 7px; }
.quick-links a { font-size: 12px; font-weight: 600; color: var(--black); padding: 4px 0; border-bottom: 1px solid var(--gray2); transition: color .15s; display: flex; align-items: center; justify-content: space-between; }
.quick-links a::after { content: '›'; color: var(--gray3); }
.quick-links a:hover { color: var(--accent); }
.sponsor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sponsor-box { background: var(--gray1); border: 1.5px dashed var(--gray2); border-radius: 4px; height: 52px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: var(--gray3); }
.headline-list { display: flex; flex-direction: column; gap: 8px; }
.headline-list li a { font-size: 12px; font-weight: 600; color: var(--black); line-height: 1.4; transition: color .15s; }
.headline-list li a:hover { color: var(--accent); }

/* HOMEPAGE STANDINGS SECTION */
.standings-section { background: linear-gradient(135deg, var(--black) 0%, var(--navy) 100%); padding: 40px 0; }
.standings-inner   { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.standings-cols    { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .standings-cols { grid-template-columns: 1fr; } }
.standings-group h4 { color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.standings-table { width: 100%; border-collapse: collapse; }
.standings-table th { color: #888; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 6px 10px; text-align: left; border-bottom: 1px solid #2a3d5e; }
.standings-table th:not(:first-child) { text-align: center; }
.standings-table td { color: #ddd; font-size: 13px; font-weight: 600; padding: 10px; border-bottom: 1px solid rgba(255,255,255,.05); }
.standings-table td:not(:first-child) { text-align: center; color: #aaa; }
.standings-table tr.leader td { color: #fff; font-weight: 800; }
.standings-table tr.leader td:first-child { color: var(--gold); }
.standings-table tr:hover td { background: rgba(255,255,255,.04); }

/* HOMEPAGE TEAMS SECTION */
.teams-section { background: var(--gray1); padding: 40px 0; }
.teams-inner   { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.teams-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 12px; }
@media (max-width: 900px) { .teams-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 480px) { .teams-grid { grid-template-columns: repeat(3,1fr); } }
.team-card { background: #fff; border-radius: var(--radius); padding: 16px 8px; text-align: center; border: 2px solid transparent; transition: border-color .15s, transform .15s; cursor: pointer; border-bottom: 3px solid var(--team-color, var(--accent)); }
.team-card:hover { border-color: var(--team-color, var(--accent)); transform: translateY(-3px); }
.team-icon { width: 52px; height: 52px; background: var(--team-color, var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #fff; margin: 0 auto 10px; letter-spacing: .5px; overflow: hidden; }

/* Team logo image badge — used when a real logo replaces the text abbreviation */
.team-icon-logo { background: transparent !important; padding: 0; }
.team-icon-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.tc-badge-logo { background: transparent !important; overflow: hidden; }
.tc-badge-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.td-badge-logo { background: transparent !important; overflow: hidden; border-radius: 50%; }
.td-badge-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.team-card p   { font-size: 11px; font-weight: 800; color: var(--black); margin-bottom: 2px; line-height: 1.3; }
.team-card span{ font-size: 10px; color: var(--gray3); }

/* ABOUT SECTION */
.about-section { background: #fff; padding: 60px 0; }
.about-inner   { max-width: var(--max); margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; } }
.about-text h2 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.about-text h3 { font-size: 28px; font-weight: 900; line-height: 1.25; margin-bottom: 20px; color: var(--black); }
.about-text p  { font-size: 14px; color: var(--gray4); line-height: 1.7; margin-bottom: 14px; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray2); }
.astat      { text-align: center; }
.astat span { display: block; font-size: 32px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.astat p    { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray3); }
.about-img  { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 20px 60px rgba(0,0,0,.15); }

/* TRIVIA BANNER */
.trivia-banner { background: var(--black); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.trivia-inner  { max-width: var(--max); margin: 0 auto; padding: 18px 20px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trivia-icon   { font-size: 36px; }
.trivia-text   { flex: 1; }
.trivia-tag    { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 2px; }
.trivia-text strong { color: #fff; font-size: 16px; font-weight: 800; }

/* ============================================================
   KLASEMEN PAGE
   ============================================================ */
.kls-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray2); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.kls-card-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 14px; border-bottom: 1px solid var(--gray2); gap: 12px; }
.kls-card-header h2 { font-size: 16px; font-weight: 900; color: var(--black); margin-bottom: 3px; }
.kls-subtitle { font-size: 11px; color: var(--gray3); }

.full-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.full-table th { background: var(--gray1); color: var(--gray3); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; padding: 9px 10px; text-align: center; border-bottom: 1px solid var(--gray2); white-space: nowrap; }
.full-table th.pos-col  { width: 36px; }
.full-table th.team-col { text-align: left; min-width: 180px; }
.full-table th.pts-col  { color: var(--black); }
.full-table th.form-col { min-width: 110px; }
.full-table td { padding: 11px 10px; font-size: 13px; font-weight: 600; color: var(--black); text-align: center; border-bottom: 1px solid var(--gray2); }
.full-table tr:last-child td { border-bottom: none; }
.full-table tr:hover td { background: #fafafa; }
.full-table tr.playoff-zone td { background: rgba(230,57,70,.04); }
.full-table tr.playoff-zone:hover td { background: rgba(230,57,70,.08); }

.pos { font-size: 13px; font-weight: 700; color: var(--gray3); }
.playoff-pos { color: var(--accent); font-weight: 900; }
.team-name-cell-td { text-align: left; }
.team-name-cell { display: flex; align-items: center; gap: 8px; }
.city-tag { display: block; font-size: 10px; color: var(--gray3); font-weight: 500; margin-top: 1px; }
.pts-num  { font-size: 14px; font-weight: 900; color: var(--black); }

.form-col { text-align: center; }
.table-legend { padding: 10px 20px; font-size: 11px; color: var(--gray3); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; border-top: 1px solid var(--gray2); background: var(--gray1); }
.legend-item.playoff { color: var(--accent); font-weight: 700; }
.legend-sep { color: var(--gray2); }
.f-key { display: flex; align-items: center; gap: 4px; }

.scorer-table th, .scorer-table td { text-align: center; }
.scorer-table th:nth-child(2), .scorer-table td:nth-child(2) { text-align: left; }
.scorer-table th:nth-child(3), .scorer-table td:nth-child(3) { text-align: left; }
.team-tag { display: inline-block; font-size: 11px; font-weight: 700; border-left: 3px solid; padding: 1px 6px; background: var(--gray1); border-radius: 2px; white-space: nowrap; }

.form-table th:nth-child(2), .form-table td:nth-child(2) { text-align: left; }
.form-table th:nth-child(5),
.form-table th:nth-child(6),
.form-table th:nth-child(7),
.form-table th:nth-child(8),
.form-table th:nth-child(9) { width: 36px; }
.trend { font-size: 11px; font-weight: 800; }
.trend.up     { color: var(--green); }
.trend.down   { color: var(--accent); }
.trend.stable { color: var(--gray3); }

/* Playoff teams list */
.playoff-teams-list { display: flex; flex-direction: column; gap: 10px; }
.pt-item { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.pt-seed { background: var(--gray1); font-size: 9px; font-weight: 800; padding: 2px 5px; border-radius: 3px; color: var(--gray4); flex-shrink: 0; }
.pt-info { flex: 1; }
.pt-info strong { display: block; font-size: 12px; font-weight: 800; }
.pt-info span   { font-size: 10px; color: var(--gray3); }
.pt-status { font-size: 10px; font-weight: 800; flex-shrink: 0; }
.pt-status.win  { color: var(--green); }
.pt-status.lose { color: var(--accent); }
.pt-status.live-badge { background: var(--accent); color: #fff; padding: 2px 6px; border-radius: 3px; animation: pulse 1.5s infinite; }
.pt-divider { height: 1px; background: var(--gray2); margin: 4px 0; }

/* Next match widget */
.next-match-widget h3 { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--black); }
.nm-label { display: block; font-size: 10px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.nm-teams { display: flex; align-items: center; justify-content: space-around; margin-bottom: 12px; }
.nm-team  { text-align: center; }
.nm-icon  { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; margin: 0 auto 6px; }
.nm-team span { font-size: 11px; font-weight: 700; }
.nm-vs    { font-size: 18px; font-weight: 900; color: var(--gray2); }
.nm-venue { font-size: 11px; color: var(--gray3); display: block; }

/* MVP */
.mvp-list { display: flex; flex-direction: column; gap: 12px; }
.mvp-item { display: flex; align-items: center; gap: 10px; }
.mvp-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; flex-shrink: 0; }
.mvp-info { flex: 1; }
.mvp-info strong { display: block; font-size: 12px; font-weight: 800; }
.mvp-info span   { display: block; font-size: 10px; color: var(--gray3); }
.mvp-stat  { color: var(--accent) !important; font-weight: 700 !important; margin-top: 2px; }
.mvp-badge { font-size: 18px; color: var(--gold); }

/* Team stat list */
.team-stat-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.team-stat-list li { display: flex; flex-direction: column; gap: 3px; padding-bottom: 10px; border-bottom: 1px solid var(--gray2); font-size: 12px; }
.team-stat-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ts-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray3); }
.ts-val   { font-weight: 700; display: flex; align-items: center; gap: 5px; }

/* Bracket */
.bracket-page { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray2); padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.bracket-intro { margin-bottom: 28px; }
.bracket-intro h2 { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.bracket-intro p  { font-size: 13px; color: var(--gray3); }
.bracket-wrap { display: flex; align-items: center; gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 12px; }
.bracket-round { flex-shrink: 0; min-width: 240px; }
.round-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gray3); margin-bottom: 12px; }
.round-title.gold { color: var(--gold); }
.bracket-matches { display: flex; flex-direction: column; gap: 16px; }
.bracket-match { background: var(--gray1); border-radius: var(--radius); padding: 14px 16px; border: 1.5px solid var(--gray2); }
.bracket-match.done         { border-color: var(--green); }
.bracket-match.live         { border-color: var(--accent); }
.bracket-match.upcoming-match{ border-color: var(--gold); border-style: dashed; }
.bracket-match.champ-match  { border-color: var(--gold); background: linear-gradient(135deg,#fffbea 0%,#fff 100%); text-align: center; padding: 24px; }
.bracket-match.sm { max-width: 300px; }
.bm-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--gray3); margin-bottom: 10px; display: block; }
.live-dot { color: var(--accent); animation: pulse 1.5s infinite; }
.bm-team { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--gray2); font-size: 13px; font-weight: 700; }
.bm-team:last-of-type { border-bottom: none; }
.bm-team.winner { color: var(--black); }
.bm-team.loser  { color: var(--gray3); }
.bm-team.tbd    { color: var(--gray3); font-style: italic; }
.bm-seed  { background: var(--black); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 5px; border-radius: 2px; flex-shrink: 0; }
.bm-name  { flex: 1; }
.bm-score { font-size: 16px; font-weight: 900; min-width: 24px; text-align: right; }
.bm-team.winner .bm-score { color: var(--accent); }
.bm-venue { font-size: 10px; color: var(--gray3); margin-top: 8px; display: block; }
.bracket-arrow { font-size: 24px; color: var(--gray2); flex-shrink: 0; }
.final-round { min-width: 240px; }
.champ-round { min-width: 180px; }
.champ-trophy { font-size: 40px; margin-bottom: 8px; }
.champ-label  { font-size: 14px; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.champ-tbd    { font-size: 11px; color: var(--gray3); }
.third-place  { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray2); }
.third-place h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--gray3); margin-bottom: 14px; }

/* ============================================================
   FIXTURES PAGE
   ============================================================ */
.date-group { margin-bottom: 24px; }
.date-group-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; margin-bottom: 10px; border-bottom: 2px solid var(--gray2); }
.dg-left  { display: flex; align-items: center; gap: 10px; }
.dg-date  { font-size: 13px; font-weight: 700; color: var(--black); }

.match-card { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--gray2); margin-bottom: 10px; overflow: hidden; transition: box-shadow .15s; }
.match-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.done-card     { border-left: 3px solid var(--gray2); }
.live-card     { border-left: 3px solid var(--accent); box-shadow: 0 0 0 1px rgba(230,57,70,.2); }
.upcoming-card { border-left: 3px solid var(--gold); }
.highlight-card{ background: linear-gradient(to right,#fffbea 0%,#fff 60%); border-color: var(--gold); border-width: 2px; }

.mc-meta { display: flex; align-items: center; gap: 10px; padding: 8px 14px; background: var(--gray1); border-bottom: 1px solid var(--gray2); font-size: 11px; }
.mc-round { font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: .4px; }
.playoff-round { color: var(--accent); }
.mc-date  { color: var(--gray3); }
.mc-time  { color: var(--gray4); margin-left: auto; }
.mc-body  { display: flex; align-items: center; padding: 14px 16px; gap: 12px; }
.mc-team  { flex: 1; display: flex; align-items: center; gap: 8px; }
.mc-team.away { flex-direction: row-reverse; text-align: right; }
.mc-team-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mc-team-name { font-size: 14px; font-weight: 800; }
.done-card .mc-team:not(.winner) .mc-team-name { color: var(--gray3); }
.mc-team-city { font-size: 10px; color: var(--gray3); display: block; margin-top: 2px; }
.mc-score     { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0; min-width: 100px; }
.mc-score-num { font-size: 26px; font-weight: 900; color: var(--gray3); line-height: 1; }
.mc-score-ft  { font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--gray3); }
.live-score   { gap: 6px; }
.mc-score-live{ display: flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 800; color: var(--accent); letter-spacing: .5px; text-transform: uppercase; }
.live-pulse   { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; display: inline-block; animation: pulse 1.2s infinite; }
.tbd-score    { flex-direction: column; gap: 2px; }
.mc-vs-text   { font-size: 18px; font-weight: 900; color: var(--gray2); }
.mc-kickoff   { font-size: 12px; font-weight: 700; color: var(--gold); }
.mc-footer    { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; background: var(--gray1); border-top: 1px solid var(--gray2); }
.mc-venue     { font-size: 11px; color: var(--gray3); }

/* Season progress */
.season-progress { display: flex; flex-direction: column; gap: 0; }
.sp-phase { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.sp-icon  { width: 22px; height: 22px; border-radius: 50%; background: var(--gray2); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; color: var(--gray3); }
.done-phase .sp-icon   { background: var(--green); color: #fff; }
.active-phase .sp-icon { background: var(--accent); color: #fff; animation: pulse 1.5s infinite; }
.upcoming-icon { background: var(--gray2); color: var(--gray3); }
.gold-icon     { background: var(--gold) !important; color: #333 !important; }
.sp-info { flex: 1; }
.sp-info strong { display: block; font-size: 12px; font-weight: 800; }
.sp-info span   { font-size: 10px; color: var(--gray3); }
.sp-badge { font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 3px; text-transform: uppercase; letter-spacing: .4px; flex-shrink: 0; }
.done-badge     { background: #e8f8f5; color: var(--green); }
.live-badge-sm  { background: var(--accent); color: #fff; animation: pulse 1.5s infinite; }
.upcoming-badge { background: var(--gray1); color: var(--gray3); }
.sp-connector   { width: 2px; height: 16px; background: var(--gray2); margin-left: 10px; }
.done-conn      { background: var(--green); }

.venue-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.venue-list li { font-size: 12px; border-left: 3px solid var(--accent); padding-left: 8px; }
.venue-list li strong { display: block; font-weight: 800; }
.venue-list li span   { color: var(--gray3); font-size: 11px; }

.mini-standing    { font-size: 12px; }
.ms-group-label   { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--gray3); padding: 8px 0 4px; border-bottom: 1px solid var(--gray2); margin-bottom: 4px; }
.ms-row           { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; color: var(--gray4); font-weight: 600; border-bottom: 1px solid var(--gray2); }
.ms-row:last-of-type { border-bottom: none; }
.ms-row.leader    { color: var(--black); font-weight: 800; }
.ms-pts           { font-weight: 900; color: var(--accent); }

/* ============================================================
   PEMAIN PAGE
   ============================================================ */
.player-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.col-no     { width: 48px; }
.col-pemain { min-width: 200px; }
.col-klub   { min-width: 160px; }
.col-posisi { width: 130px; }
.col-usia   { width: 70px; }
.player-table thead tr { background: var(--black); }
.player-table th { padding: 12px 14px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: #aaa; text-align: left; white-space: nowrap; cursor: pointer; user-select: none; transition: color .15s; }
.player-table th:hover { color: #fff; }
.player-table th.col-no, .player-table th.col-usia { text-align: center; }
.sort-icon { font-size: 10px; opacity: .5; margin-left: 3px; }
.player-table tbody tr { border-bottom: 1px solid var(--gray2); transition: background .1s; }
.player-table tbody tr:last-child { border-bottom: none; }
.player-table tbody tr:hover { background: #f8f8fb; }
.player-table td { padding: 11px 14px; font-size: 13px; color: var(--black); vertical-align: middle; }
.player-table td.col-no, .player-table td.col-usia { text-align: center; color: var(--gray3); font-weight: 600; }
.col-pemain { display: flex; align-items: center; gap: 10px; font-weight: 700; }

/* Position breakdown bars */
.pos-breakdown { display: flex; flex-direction: column; gap: 10px; }
.pb-row { display: flex; align-items: center; gap: 8px; }
.pb-row .pos-badge { width: 80px; text-align: center; flex-shrink: 0; font-size: 10px; }
.pb-bar-wrap { flex: 1; height: 6px; background: var(--gray2); border-radius: 3px; overflow: hidden; }
.pb-bar  { height: 100%; background: var(--accent); border-radius: 3px; transition: width .4s ease; }
.age-bar { background: #457b9d; }
.pb-count{ font-size: 11px; font-weight: 800; color: var(--black); width: 24px; text-align: right; flex-shrink: 0; }
.age-bars  { display: flex; flex-direction: column; gap: 10px; }
.age-row   { display: flex; align-items: center; gap: 8px; }
.age-label { font-size: 11px; font-weight: 700; color: var(--gray4); width: 48px; flex-shrink: 0; }

/* ============================================================
   TIM PAGE
   ============================================================ */
.tim-grid-wrap { margin-bottom: 24px; }
.tim-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 900px) { .tim-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .tim-cards { grid-template-columns: 1fr; } }

.team-card-lg { background: #fff; border-radius: var(--radius); border: 2px solid var(--gray2); overflow: hidden; cursor: pointer; transition: transform .15s, box-shadow .15s, border-color .15s; }
.team-card-lg:hover   { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.team-card-lg.selected{ border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230,57,70,.15), 0 8px 24px rgba(0,0,0,.12); }
.tc-accent { height: 4px; width: 100%; }
.tc-body   { display: flex; align-items: center; gap: 12px; padding: 14px 16px 10px; }
.tc-badge  { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; flex-shrink: 0; letter-spacing: .5px; }
.tc-info   { flex: 1; min-width: 0; }
.tc-info h3{ font-size: 15px; font-weight: 900; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-city   { font-size: 11px; color: var(--gray3); }
.tc-tags   { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; flex-shrink: 0; }
.tc-stats  { display: flex; border-top: 1px solid var(--gray2); border-bottom: 1px solid var(--gray2); }
.tc-stat   { flex: 1; text-align: center; padding: 8px 4px; border-right: 1px solid var(--gray2); }
.tc-stat:last-child { border-right: none; }
.tc-stat span { display: block; font-size: 13px; font-weight: 900; color: var(--black); }
.tc-stat p    { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray3); margin-top: 1px; }
.tc-form { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 8px 12px; }

/* Team detail modal */
.team-modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  align-items: center; justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
.team-modal-backdrop.open { display: flex; }
.td-inner {
  background: #fff; border-radius: 14px;
  box-shadow: 0 16px 64px rgba(0,0,0,.28);
  width: 100%; max-width: 900px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 24px;
  position: relative;
}
.td-close { float: right; background: none; border: 1.5px solid var(--gray2); font-family: var(--font); font-size: 11px; font-weight: 700; color: var(--gray3); padding: 5px 12px; border-radius: 4px; cursor: pointer; text-transform: uppercase; letter-spacing: .4px; transition: color .15s, border-color .15s; margin-bottom: 12px; }
.td-close:hover { color: var(--accent); border-color: var(--accent); }
.td-header { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--gray1); border-radius: var(--radius); border-left: 5px solid var(--accent); margin-bottom: 20px; clear: both; flex-wrap: wrap; }
.td-badge  { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: #fff; flex-shrink: 0; letter-spacing: .5px; }
.td-hinfo  { flex: 1; }
.td-hinfo h2 { font-size: 20px; font-weight: 900; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.td-hinfo span { font-size: 12px; color: var(--gray3); }
.td-playoff-badge { font-size: 11px; font-weight: 800; color: var(--gold); background: #fffbea; padding: 2px 8px; border-radius: 3px; }
.td-form-inline { display: flex; gap: 4px; flex-shrink: 0; }
.td-stats-row { display: flex; gap: 0; background: var(--black); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.tds-item { flex: 1; text-align: center; padding: 14px 8px; border-right: 1px solid rgba(255,255,255,.06); }
.tds-item:last-child { border-right: none; }
.tds-item span { display: block; font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
.tds-item p    { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #555; margin-top: 4px; }
.tds-item.positive span { color: var(--green); }
.tds-item.negative span { color: var(--accent); }
.td-body { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
@media (max-width: 800px) { .td-body { grid-template-columns: 1fr; } }
.td-section { margin-bottom: 20px; }
.td-section-title { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; color: var(--gray3); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 2px solid var(--black); }
.squad-table { width: 100%; border-collapse: collapse; }
.squad-table th { background: var(--gray1); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--gray3); padding: 7px 10px; text-align: left; border-bottom: 1px solid var(--gray2); }
.squad-table td { padding: 9px 10px; font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--gray2); vertical-align: middle; }
.squad-table tr:last-child td { border-bottom: none; }
.squad-table tr:hover td { background: #fafafa; }
.clickable-row { cursor: pointer; }
.clickable-row:hover td { background: #f0f4ff !important; }
.sq-arrow { font-size: 11px; color: #94a3b8; margin-left: 4px; opacity: 0; transition: opacity .15s; }
.clickable-row:hover .sq-arrow { opacity: 1; }
.td-squad-link { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--accent); transition: opacity .15s; }
.td-squad-link:hover { opacity: .7; }
.tdf-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--gray2); font-size: 12px; }
.tdf-row:last-child { border-bottom: none; }
.tdf-date  { color: var(--gray3); width: 48px; flex-shrink: 0; }
.tdf-lawan { flex: 1; font-weight: 600; }
.tdf-skor  { font-weight: 800; color: var(--black); }
.tdn-inner { background: var(--gray1); border-radius: var(--radius); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; border-left: 3px solid var(--gold); }
.tdn-date  { font-size: 11px; color: var(--gold); font-weight: 700; }
.tdn-inner strong { font-size: 14px; font-weight: 800; }
.tdn-venue { font-size: 11px; color: var(--gray3); }
.live-badge-inline { font-size: 11px; font-weight: 800; color: var(--accent); animation: pulse 1.2s infinite; }
.mini-std-table { width: 100%; border-collapse: collapse; }
.mini-std-table th { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--gray3); padding: 6px 8px; text-align: left; border-bottom: 1px solid var(--gray2); background: var(--gray1); }
.mini-std-table th:last-child { text-align: right; }
.mini-std-table td { padding: 8px; font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--gray2); color: var(--gray4); }
.mini-std-table td:last-child { text-align: right; font-weight: 900; color: var(--black); }
.mini-std-table tr.std-highlight td { color: var(--black); font-weight: 800; background: rgba(230,57,70,.05); }
.mini-std-table tr.std-highlight td:first-child { color: var(--accent); }

/* ============================================================
   HASIL PAGE
   ============================================================ */
.result-group { margin-bottom: 28px; }
.rg-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; margin-bottom: 10px; border-bottom: 2px solid var(--black); }
.rg-left   { display: flex; align-items: center; gap: 10px; }
.rg-round  { font-size: 14px; font-weight: 800; color: var(--black); }
.rg-date   { font-size: 12px; color: var(--gray3); font-weight: 600; }

.result-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray2); margin-bottom: 10px; overflow: hidden; transition: box-shadow .15s; }
.result-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.09); }
.rc-body { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 16px 20px; }
.rc-team  { display: flex; align-items: center; gap: 10px; }
.rc-away  { justify-content: flex-end; text-align: right; }
.rc-badge { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; color: #fff; flex-shrink: 0; letter-spacing: .3px; }
.rc-name  { font-size: 15px; font-weight: 800; color: var(--black); }
.rc-loser .rc-name { color: var(--gray3); }
.rc-score { display: flex; align-items: center; gap: 6px; padding: 0 24px; flex-shrink: 0; }
.rc-score span { font-size: 28px; font-weight: 900; color: var(--gray3); min-width: 24px; text-align: center; }
.rc-score .sc-win, .rc-score .sc-draw { color: var(--black); }
.rc-sep   { font-size: 20px; color: var(--gray2); }
.rc-footer{ display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 8px 20px 10px; background: var(--gray1); border-top: 1px solid var(--gray2); flex-wrap: wrap; }
.rc-venue { font-size: 11px; color: var(--gray3); flex-shrink: 0; }
.rc-scorers { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.sc-goals { font-size: 11px; font-weight: 600; }

/* Hasil sidebar extras */
.hs-stat-list { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.hs-stat-list li { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--gray2); gap: 8px; }
.hs-stat-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hs-stat-list li span  { color: var(--gray3); }
.hs-stat-list li strong{ font-weight: 800; color: var(--black); text-align: right; }
.hw-next { display: flex; flex-direction: column; gap: 6px; }
.hw-next-label  { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.hw-next-date   { font-size: 11px; color: var(--gray3); }
.hw-next-teams  { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 800; margin: 4px 0; }
.hw-vs          { font-size: 11px; color: var(--gray2); font-weight: 900; }
.hw-fixture-link{ font-size: 12px; font-weight: 700; color: var(--accent); margin-top: 4px; display: inline-block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--darker); color: #aaa; padding-top: 48px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid #222; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 550px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.brand-col .footer-logo { display: flex; align-items: baseline; gap: 2px; margin-bottom: 12px; }
.footer-logo .logo-text { font-size: 28px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
.footer-logo .logo-year { font-size: 16px; font-weight: 700; color: #fff; }
.brand-col p { font-size: 12px; line-height: 1.7; color: #666; margin-bottom: 14px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: #222; border-radius: 4px; font-size: 12px; font-weight: 800; color: #aaa; transition: background .15s, color .15s; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: #666; transition: color .15s; }
.footer-col ul li a:hover { color: #ccc; }
.footer-bottom { padding: 16px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: #444; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 11px; color: #444; transition: color .15s; }
.footer-links a:hover { color: #aaa; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .rc-body    { padding: 12px 14px; }
  .rc-score   { padding: 0 12px; }
  .rc-score span { font-size: 22px; }
  .rc-name    { font-size: 13px; }
  .rc-badge   { width: 30px; height: 30px; font-size: 8px; }
}
@media (max-width: 600px) {
  .page-hero-stats  { gap: 16px; }
  .hero-stat span   { font-size: 26px; }
  .tab-btn          { padding: 12px 12px; font-size: 11px; }
  .bracket-wrap     { flex-direction: column; align-items: stretch; }
  .bracket-arrow    { transform: rotate(90deg); text-align: center; }
  .mc-team-city     { display: none; }
  .mc-score-num     { font-size: 20px; }
  .filter-search    { max-width: 100%; }
  .filter-count     { display: none; }
  .td-inner         { padding: 16px; }
  .td-stats-row     { flex-wrap: wrap; }
  .tds-item         { min-width: 33%; border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 480px) {
  .hero-overlay  { padding: 20px; }
  .hero-title    { font-size: 18px; }
  .hero-sub      { display: none; }
  .lp-content    { flex-direction: column; text-align: center; }
  .about-stats   { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .news-item     { grid-template-columns: 80px 1fr; }
}

/* ============================================================
   BERITA PAGE
   ============================================================ */
.brt-main { max-width: var(--max); margin: 24px auto; padding: 0 20px; }
.brt-grid {
  display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start;
}
@media (max-width: 1024px) { .brt-grid { grid-template-columns: 1fr; } .brt-sidebar { display: none; } }
.brt-col { display: flex; flex-direction: column; gap: 0; }
.brt-sidebar { display: flex; flex-direction: column; gap: 20px; }

.brt-articles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px;
}
@media (max-width: 640px) { .brt-articles { grid-template-columns: 1fr; } }

/* News card */
.news-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--gray2);
  overflow: hidden; cursor: pointer; transition: transform .15s, box-shadow .15s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.10); }

/* Featured card spans full width */
.news-card-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 2px solid var(--gray2);
}
@media (max-width: 700px) { .news-card-featured { grid-template-columns: 1fr; } }

.nc-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.news-card-featured .nc-img-wrap { aspect-ratio: unset; height: 100%; min-height: 260px; }
.nc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-card:hover .nc-img-wrap img { transform: scale(1.04); }

/* Category pill on image */
.nc-cat {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px; color: #fff;
}
.tl-cat {
  position: static; display: inline-block; margin-bottom: 4px; font-size: 9px; padding: 2px 7px;
}
.cat-berita    { background: var(--accent); }
.cat-rekap     { background: var(--green); }
.cat-wawancara { background: #3a86ff; }
.cat-komunitas { background: #533483; }

/* Card body */
.nc-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card-featured .nc-body { padding: 24px; justify-content: center; }

.nc-title {
  font-size: 15px; font-weight: 800; line-height: 1.35; color: var(--black);
}
.news-card-featured .nc-title { font-size: 20px; }

.nc-excerpt { font-size: 13px; color: var(--gray4); line-height: 1.6; flex: 1; }

.nc-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--gray3); gap: 8px; flex-wrap: wrap;
  padding-top: 8px; border-top: 1px solid var(--gray2); margin-top: auto;
}
.nc-author { font-weight: 600; }

.nc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.nc-tag {
  font-size: 10px; font-weight: 600; color: var(--gray3);
  background: var(--gray1); padding: 2px 7px; border-radius: 3px;
  transition: color .15s, background .15s;
}
.nc-tag:hover { background: var(--gray2); color: var(--black); }

/* Trending list */
.trending-list { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.tl-item { display: flex; align-items: flex-start; gap: 10px; }
.tl-num {
  font-size: 18px; font-weight: 900; color: var(--gray2);
  line-height: 1; min-width: 22px; flex-shrink: 0;
}
.tl-item:first-child .tl-num { color: var(--accent); }
.tl-info { flex: 1; }
.tl-info strong { display: block; font-size: 12px; font-weight: 700; line-height: 1.4; margin-bottom: 2px; }
.tl-info span   { font-size: 10px; color: var(--gray3); }

/* Category list */
.cat-list { display: flex; flex-direction: column; gap: 2px; }
.cat-list li button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none; font-family: var(--font);
  font-size: 13px; font-weight: 600; color: var(--black);
  padding: 8px 4px; cursor: pointer; border-bottom: 1px solid var(--gray2);
  transition: color .15s; text-align: left;
}
.cat-list li:last-child button { border-bottom: none; }
.cat-list li button:hover { color: var(--accent); }
.cat-count {
  background: var(--gray1); color: var(--gray3);
  font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 10px;
}

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-btn {
  font-family: var(--font); font-size: 11px; font-weight: 600;
  color: var(--gray4); background: var(--gray1);
  border: 1px solid var(--gray2); border-radius: 3px;
  padding: 4px 9px; cursor: pointer; transition: background .15s, color .15s;
}
.tag-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Newsletter */
.newsletter-widget p { font-size: 12px; color: var(--gray4); margin-bottom: 12px; }
.nl-form { display: flex; gap: 6px; }
.nl-form input {
  flex: 1; font-family: var(--font); font-size: 12px; color: var(--black);
  background: var(--gray1); border: 1.5px solid var(--gray2); border-radius: 4px;
  padding: 8px 10px; outline: none; transition: border-color .15s;
}
.nl-form input:focus { border-color: var(--accent); }
.nl-form button {
  font-family: var(--font); font-size: 11px; font-weight: 800;
  background: var(--accent); color: #fff; border: none;
  border-radius: 4px; padding: 8px 12px; cursor: pointer;
  text-transform: uppercase; letter-spacing: .4px; transition: background .15s;
}
.nl-form button:hover { background: #c0293a; }

/* ============================================================
   STATISTIK PAGE
   ============================================================ */
.stat-grid {
  display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start;
}
@media (max-width: 1024px) { .stat-grid { grid-template-columns: 1fr; } .stat-sidebar { display: none; } }
.stat-col    { display: flex; flex-direction: column; gap: 24px; }
.stat-sidebar{ display: flex; flex-direction: column; gap: 20px; }

/* Stat card */
.stat-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--gray2); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.stat-card-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px; border-bottom: 1px solid var(--gray2); gap: 12px;
}
.stat-card-hd h2  { font-size: 16px; font-weight: 900; margin-bottom: 2px; }
.stat-sub         { font-size: 11px; color: var(--gray3); }
.stat-badge {
  font-size: 11px; font-weight: 800; color: #fff; padding: 4px 12px;
  border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}

/* Stat table */
.stat-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.stat-table thead tr { background: var(--black); }
.stat-table th {
  padding: 11px 12px; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .7px; color: #aaa; text-align: center; white-space: nowrap;
  cursor: pointer; user-select: none; transition: color .15s;
}
.stat-table th:hover { color: #fff; }
.stat-table th.col-name { text-align: left; min-width: 160px; }
.stat-table th.col-rank { width: 36px; }
.stat-table th.col-hi   { color: var(--gold); }
.stat-table tbody tr { border-bottom: 1px solid var(--gray2); transition: background .1s; }
.stat-table tbody tr:last-child { border-bottom: none; }
.stat-table tbody tr:hover { background: #f8f8fb; }
.stat-table td { padding: 10px 12px; font-size: 13px; font-weight: 600; color: var(--black); text-align: center; vertical-align: middle; }
.stat-table td.col-name { text-align: left; display: flex; align-items: center; gap: 8px; }
.pl-link { color: inherit; font-weight: 700; text-decoration: none; transition: color .15s; }
.pl-link:hover { color: var(--accent); }
.td-empty { text-align: center; color: #64748b; padding: 24px; font-size: .85rem; }
.stat-table td.col-rank { color: var(--gray3); font-size: 12px; text-align: center; }
.stat-table td.col-hi   { }
.stat-table td.stat-hi  { font-size: 15px; font-weight: 900; color: var(--black); }

.col-rank.top-rank { color: var(--gold) !important; font-weight: 900; }

.squad-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.squad-dot.sm { width: 7px; height: 7px; }

.team-chip {
  display: inline-block; font-size: 11px; font-weight: 700;
  border-left: 3px solid; padding: 1px 6px; background: var(--gray1);
  border-radius: 2px; white-space: nowrap;
}
.grup-chip { font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* Side-by-side mini stat cards */
.two-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .two-stat-cards { grid-template-columns: 1fr; } }
.mini-stat-card {}

/* Team bar list */
.team-bar-list { padding: 14px 20px; display: flex; flex-direction: column; gap: 10px; }
.tb-row { display: flex; align-items: center; gap: 8px; }
.tb-name { font-size: 12px; font-weight: 600; width: 110px; flex-shrink: 0; display: flex; align-items: center; gap: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Sidebar widgets */
.best-player { display: flex; gap: 14px; align-items: flex-start; padding: 4px 0; }
.bp-avatar   { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: #fff; flex-shrink: 0; }
.bp-info     { flex: 1; }
.bp-info strong { display: block; font-size: 14px; font-weight: 900; margin-bottom: 2px; }
.bp-info > span { font-size: 11px; color: var(--gray3); }
.bp-stats    { display: flex; gap: 16px; margin-top: 10px; }
.bp-stats div { text-align: center; }
.bp-stats span{ display: block; font-size: 20px; font-weight: 900; color: var(--accent); line-height: 1; }
.bp-stats p   { font-size: 10px; color: var(--gray3); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

.record-list { display: flex; flex-direction: column; gap: 0; list-style: none; }
.record-list li { display: flex; flex-direction: column; gap: 2px; padding: 9px 0; border-bottom: 1px solid var(--gray2); font-size: 12px; }
.record-list li:last-child { border-bottom: none; }
.rec-label { font-size: 10px; color: var(--gray3); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.record-list li strong { font-size: 13px; font-weight: 800; }

.pos-goals-bars { display: flex; flex-direction: column; gap: 10px; padding: 4px 0; }
.pgb-row { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; }
.pgb-row > span:first-child { width: 72px; flex-shrink: 0; }

/* Award list */
.award-list { display: flex; flex-direction: column; gap: 12px; }
.award-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; }
.award-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.award-item div { flex: 1; }
.award-item strong { display: block; font-weight: 800; margin-bottom: 2px; }
.award-item span   { color: var(--gray3); font-size: 11px; }

/* H2H */
.h2h-list  { display: flex; flex-direction: column; gap: 10px; }
.h2h-item  { background: var(--gray1); border-radius: 4px; padding: 10px 12px; }
.h2h-teams { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.h2h-score { font-size: 16px; font-weight: 900; }
.live-score-h2h { color: var(--accent); }
.h2h-round { font-size: 10px; color: var(--gray3); }

/* ── TURNAMEN TAB ─────────────────────────────────── */
.tournament-stat-grid { display: flex; flex-direction: column; gap: 24px; }

.big-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .big-numbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .big-numbers { grid-template-columns: 1fr 1fr; } }

.bn-card {
  background: #fff; border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--gray2); border-top: 3px solid var(--bnc,var(--accent));
  text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.bn-num   { display: block; font-size: 38px; font-weight: 900; color: var(--bnc,var(--accent)); line-height: 1; margin-bottom: 6px; }
.bn-label { display: block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--black); margin-bottom: 3px; }
.bn-sub   { display: block; font-size: 11px; color: var(--gray3); }

/* Goals by round bars */
.round-goals { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.rg-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.rg-label { width: 90px; flex-shrink: 0; font-weight: 600; color: var(--gray4); }
.rg-bar-wrap { flex: 1; height: 8px; background: var(--gray2); border-radius: 4px; overflow: hidden; }
.rg-bar { height: 100%; background: var(--accent); border-radius: 4px; transition: width .4s ease; }
.rg-num { font-size: 13px; font-weight: 800; width: 28px; text-align: right; flex-shrink: 0; }
.playoff-row .rg-label { color: var(--gold); font-weight: 800; }

/* Result distribution */
.result-dist { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.rd-item { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.rd-num  { font-size: 18px; font-weight: 900; width: 32px; flex-shrink: 0; }
.rd-item.win  .rd-num { color: var(--green); }
.rd-item.draw .rd-num { color: var(--gold); }
.rd-item.lose .rd-num { color: var(--accent); }
.rd-bar-wrap { flex: 1; height: 10px; background: var(--gray2); border-radius: 5px; overflow: hidden; }
.rd-bar { height: 100%; background: var(--green); border-radius: 5px; }
.draw-bar { background: var(--gold); }
.lose-bar { background: var(--accent); }
.rd-label { font-size: 11px; color: var(--gray4); width: 160px; flex-shrink: 0; }

/* Goals by half */
.half-goals {
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0;
  padding: 16px 20px; align-items: center;
}
.hg-divider { background: var(--gray2); height: 80px; align-self: center; }
.hg-half { display: flex; flex-direction: column; gap: 6px; padding: 0 16px; }
.hg-half.right { align-items: flex-end; }
.hg-label { font-size: 11px; font-weight: 700; color: var(--gray4); }
.hg-num   { font-size: 32px; font-weight: 900; color: var(--black); line-height: 1; }
.hg-bar-wrap { width: 100%; height: 6px; background: var(--gray2); border-radius: 3px; overflow: hidden; }
.hg-bar  { height: 100%; background: var(--green); border-radius: 3px; }
.right-bar { background: var(--accent); }
.hg-bar-wrap.right { display: flex; justify-content: flex-end; }
.hg-pct  { font-size: 13px; font-weight: 800; color: var(--gray3); }
.hg-note { font-size: 11px; color: var(--gray3); padding: 8px 20px 14px; font-style: italic; }

/* Milestones */
.milestone-card .stat-card-hd { border-bottom: 1px solid var(--gray2); }
.milestone-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
@media (max-width: 640px) { .milestone-grid { grid-template-columns: repeat(2,1fr); } }
.ms-item {
  padding: 18px 16px; border-right: 1px solid var(--gray2); border-bottom: 1px solid var(--gray2);
  display: flex; flex-direction: column; gap: 4px;
}
.ms-item:nth-child(3n) { border-right: none; }
.ms-item:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 640px) {
  .ms-item:nth-child(3n)  { border-right: 1px solid var(--gray2); }
  .ms-item:nth-child(2n)  { border-right: none; }
  .ms-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--gray2); }
  .ms-item:nth-last-child(-n+2) { border-bottom: none; }
}
.ms-icon { font-size: 24px; margin-bottom: 4px; }
.ms-item strong { font-size: 13px; font-weight: 800; }
.ms-item span   { font-size: 11px; color: var(--gray3); line-height: 1.4; }

/* ============================================================
   TENTANG PAGE
   ============================================================ */

/* Hero */
.ttg-hero {
  position: relative; height: 520px; display: flex; align-items: flex-end;
  overflow: hidden;
}
.ttg-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.ttg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.2) 100%);
}
.ttg-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; padding: 0 20px 48px;
  width: 100%;
}
.ttg-hero-inner h1 {
  color: #fff; font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  line-height: 1.1; margin: 10px 0 14px;
}
.ttg-hero-inner p {
  color: rgba(255,255,255,.8); font-size: 16px; max-width: 560px;
  line-height: 1.6; margin-bottom: 28px;
}
.ttg-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats strip */
.ttg-stats-strip { background: var(--black); border-bottom: 2px solid var(--accent); }
.ttg-stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.ttg-stat {
  flex: 1; min-width: 120px; text-align: center;
  padding: 20px 16px; border-right: 1px solid rgba(255,255,255,.07);
}
.ttg-stat:last-child { border-right: none; }
.ttg-stat span { display: block; font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.ttg-stat p    { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #555; }

/* Generic section */
.ttg-section { padding: 72px 0; }
.ttg-story-section { background: var(--gray1); }
.ttg-section-inner { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.ttg-eyebrow {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.ttg-eyebrow.center { text-align: center; }

.ttg-section-inner h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 900; line-height: 1.2;
  margin-bottom: 20px; color: var(--black);
}
.ttg-section-inner h2.center { text-align: center; }

.ttg-section-inner p {
  font-size: 15px; color: var(--gray4); line-height: 1.75; margin-bottom: 16px;
}

/* Two-column layout */
.ttg-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.ttg-two-col.reverse { direction: rtl; }
.ttg-two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .ttg-two-col, .ttg-two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}
.ttg-img-col { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.ttg-img-col img { width: 100%; height: 100%; object-fit: cover; }

/* Timeline */
.ttg-timeline { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.ttg-tl-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--gray2); font-size: 13px;
}
.ttg-tl-item:last-child { border-bottom: none; }
.ttg-tl-date {
  font-size: 11px; font-weight: 800; color: var(--accent);
  text-transform: uppercase; letter-spacing: .5px; width: 70px; flex-shrink: 0;
}
.ttg-tl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray2); border: 2px solid var(--gray3); flex-shrink: 0;
}
.ttg-tl-dot.active { background: var(--accent); border-color: var(--accent); }
.ttg-tl-text { font-weight: 600; color: var(--black); }

/* Values */
.ttg-values-section { background: var(--black); padding: 72px 0; }
.ttg-values-section .ttg-eyebrow { color: var(--gold); }
.ttg-values-section h2 { color: #fff; text-align: center; }
.ttg-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); overflow: hidden; margin-top: 40px;
}
@media (max-width: 768px) { .ttg-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ttg-values-grid { grid-template-columns: 1fr; } }
.ttg-value-card {
  padding: 28px 24px; background: var(--black);
  transition: background .2s;
}
.ttg-value-card:hover { background: #1a1a2e; }
.ttg-value-icon { font-size: 32px; display: block; margin-bottom: 14px; }
.ttg-value-card h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.ttg-value-card p  { font-size: 13px; color: #777; line-height: 1.65; margin: 0; }

/* Committee */
.ttg-committee-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
@media (max-width: 768px) { .ttg-committee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ttg-committee-grid { grid-template-columns: 1fr; } }
.ttg-committee-card {
  background: #fff; border-radius: var(--radius); padding: 24px 20px;
  border: 1px solid var(--gray2); text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .15s, box-shadow .15s;
}
.ttg-committee-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.ttg-committee-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
}
.ttg-committee-card h3    { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.ttg-committee-role       { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); margin-bottom: 10px; }
.ttg-committee-card p     { font-size: 12px; color: var(--gray4); line-height: 1.6; margin: 0; }

/* FAQ */
.ttg-faq-section { background: var(--gray1); padding: 72px 0; }
.ttg-faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
@media (max-width: 768px) { .ttg-faq-grid { grid-template-columns: 1fr; } }
.ttg-faq-col { display: flex; flex-direction: column; gap: 8px; }

.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray2); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; font-family: var(--font);
  font-size: 14px; font-weight: 700; color: var(--black);
  padding: 16px 20px; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background .15s;
}
.faq-q:hover { background: var(--gray1); }
.faq-arrow { font-size: 20px; color: var(--accent); transition: transform .2s; flex-shrink: 0; }
.faq-a { display: none; padding: 0 20px 16px; }
.faq-a p { font-size: 13px; color: var(--gray4); line-height: 1.7; margin: 0; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-item.open .faq-q { background: var(--gray1); color: var(--accent); }

/* Kontak */
.ttg-kontak-section { background: #fff; padding: 72px 0; }
.ttg-kontak-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; margin-top: 40px; align-items: start;
}
@media (max-width: 768px) { .ttg-kontak-grid { grid-template-columns: 1fr; gap: 32px; } }
.ttg-kontak-info { display: flex; flex-direction: column; gap: 20px; }
.ttg-kontak-item { display: flex; align-items: flex-start; gap: 14px; font-size: 13px; }
.ttg-kontak-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.ttg-kontak-item strong { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--gray3); margin-bottom: 3px; }
.ttg-kontak-item span, .ttg-kontak-item a { font-size: 14px; font-weight: 600; color: var(--black); }
.ttg-kontak-item a:hover { color: var(--accent); }
.ttg-kontak-socials { display: flex; gap: 8px; margin-top: 8px; }

/* Contact form */
.ttg-kontak-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--gray4); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font); font-size: 13px; color: var(--black);
  background: var(--gray1); border: 1.5px solid var(--gray2);
  border-radius: 5px; padding: 10px 14px; outline: none;
  transition: border-color .15s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: #fff; }
.form-success {
  display: none; background: #d4edda; color: #155724;
  border: 1px solid #c3e6cb; border-radius: 5px;
  padding: 12px 16px; font-size: 13px; font-weight: 700;
}

/* CTA section */
.ttg-cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #8b0000 100%);
  padding: 80px 20px; text-align: center;
}
.ttg-cta-inner { max-width: 640px; margin: 0 auto; }
.ttg-cta-inner h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin: 12px 0 16px; }
.ttg-cta-inner p  { color: rgba(255,255,255,.85); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.ttg-cta-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 480px) {
  .ttg-hero { height: 420px; }
  .ttg-hero-inner h1 { font-size: 28px; }
  .ttg-section { padding: 48px 0; }
  .ttg-values-section { padding: 48px 0; }
  .ttg-faq-section { padding: 48px 0; }
  .ttg-kontak-section { padding: 48px 0; }
  .ttg-cta-section { padding: 56px 20px; }
}

/* ── Leaderboard shared (players + coaches pages) ─────────────────────── */
.lb-page { max-width: 1100px; margin: 0 auto; padding: 32px 24px 80px; }
.lb-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.lb-title-group { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.lb-title { font-size: 1.8rem; font-weight: 900; }
.lb-beta  { background: #f59e0b; color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 4px; letter-spacing: .5px; text-transform: uppercase; }
.lb-sub   { font-size: 13px; color: #64748b; margin-top: 2px; }
.lb-filters     { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lb-filter-form { display: flex; align-items: center; gap: 8px; }
.lb-select { border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 32px 8px 12px; font-size: 13px; font-weight: 600; background: var(--card); color: var(--text); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.lb-select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.lb-clear { font-size: 12px; color: #64748b; text-decoration: none; padding: 4px 8px; border-radius: 4px; transition: background .1s; }
.lb-clear:hover { background: #f1f5f9; }
.lb-tabs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 16px; }
.lb-tabs { display: flex; gap: 8px; min-width: max-content; padding-bottom: 4px; }
.lb-tab { padding: 8px 18px; border-radius: 99px; border: 1.5px solid var(--border); background: var(--card); font-size: 13px; font-weight: 700; color: #64748b; cursor: pointer; white-space: nowrap; transition: all .15s; }
.lb-tab:hover  { border-color: #94a3b8; color: var(--text); }
.lb-tab.active { background: var(--black); border-color: var(--black); color: #fff; }
.lb-metric-info { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #64748b; margin-bottom: 28px; padding: 8px 14px; background: #f8fafc; border-radius: 8px; border: 1px solid var(--border); }
.lb-metric-icon { font-size: 16px; }
.lb-podium { display: flex; justify-content: center; align-items: flex-end; gap: 12px; margin-bottom: 40px; flex-wrap: nowrap; }
.lb-pod-card { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: inherit; border: 2px solid var(--border); border-radius: 16px; padding: 20px 16px 16px; background: var(--card); transition: transform .15s, box-shadow .15s; position: relative; width: 200px; flex-shrink: 0; }
.lb-pod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.lb-pod-card.first  { border-color: #f9c030; box-shadow: 0 4px 24px rgba(249,192,48,.2); padding-top: 32px; width: 220px; }
.lb-pod-card.second { order: -1; }
.lb-pod-card.third  { order: 1; }
.lb-pod-crown { font-size: 24px; margin-bottom: 8px; }
.lb-pod-av-wrap { position: relative; margin-bottom: 12px; }
.lb-av-img  { border-radius: 50%; border: 2px solid rgba(0,0,0,.08); object-fit: cover; }
.lb-av-init { border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.lb-pod-rank { position: absolute; bottom: -4px; right: -4px; width: 22px; height: 22px; border-radius: 50%; background: var(--black); color: #fff; font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center; border: 2px solid var(--card); }
.lb-pod-card.first  .lb-pod-rank { background: #f9c030; color: #7a5800; }
.lb-pod-card.second .lb-pod-rank { background: #94a3b8; }
.lb-pod-card.third  .lb-pod-rank { background: #cd7c3a; }
.lb-pod-name { font-size: 15px; font-weight: 800; color: var(--text); text-align: center; margin-bottom: 4px; }
.lb-pod-sub  { font-size: 11px; color: #64748b; margin-bottom: 12px; text-align: center; }
.lb-pod-stat-box { background: #f8fafc; border: 1px solid var(--border); border-radius: 8px; padding: 8px 16px; text-align: center; width: 100%; }
.lb-pod-stat-label { display: block; font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.lb-pod-stat-val   { display: block; font-size: 1.5rem; font-weight: 900; color: var(--text); }
.lb-table-wrap { overflow-x: auto; border: 1.5px solid var(--border); border-radius: 12px; }
.lb-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.lb-table thead th { background: #f8fafc; padding: 12px 16px; font-size: 11px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border); text-align: left; }
.lb-table thead th.col-stat { text-align: right; }
.lb-tr { cursor: pointer; border-bottom: 1px solid #f1f5f9; transition: background .1s; }
.lb-tr:last-child { border-bottom: none; }
.lb-tr:hover { background: #f8fafc; }
.lb-tr td { padding: 12px 16px; vertical-align: middle; }
.col-rank { width: 80px; text-align: center; }
.col-team { width: 140px; }
.col-stat { width: 120px; text-align: right; }
.lb-rank-num { font-size: 15px; font-weight: 800; color: #94a3b8; }
.lb-tr-player { display: flex; align-items: center; gap: 10px; }
.lb-tr-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.lb-tr-info span   { font-size: 11px; color: #94a3b8; }
.lb-team-chip { font-size: 11px; font-weight: 700; border: 1.5px solid; padding: 2px 8px; border-radius: 4px; white-space: nowrap; }
.lb-stat-val  { font-size: 1.2rem; font-weight: 900; color: var(--text); text-align: right; }
.lb-td-empty  { text-align: center; padding: 40px; color: #64748b; font-size: .875rem; }
.lb-empty { text-align: center; padding: 80px 0; color: #64748b; }
.lb-empty span { font-size: 3rem; display: block; margin-bottom: 12px; }
.lb-empty-sub { font-size: .85rem; margin-top: 6px; color: #94a3b8; }
@media (max-width: 640px) {
  .lb-page   { padding: 20px 16px 60px; }
  .lb-title  { font-size: 1.4rem; }
  .lb-pod-card { width: 140px; padding: 14px 10px 12px; }
  .lb-pod-card.first { width: 160px; }
  .lb-pod-name { font-size: 13px; }
  .col-team { display: none; }
}
