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

:root {
  --yellow: #f5c518;
  --orange: #ff6b00;
  --bg: #0a0a0f;
  --bg2: #0f0f1a;
  --bg3: #14141f;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8f0;
  --muted: #6b6b80;
  --accent: #f5c518;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a1400 0%, var(--bg) 70%);
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
}

.badge {
  display: inline-block;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -1px;
  color: #fff;
  animation: fadeUp 0.6s 0.1s ease both;
  text-shadow: 0 0 80px rgba(245,197,24,0.2);
}

h1 .accent { color: var(--yellow); }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 40px 0;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.2s ease both;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}

.meta-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.2s;
  animation: fadeUp 0.6s 0.3s ease both;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,197,24,0.4);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 24px;
}

.btn-secondary:hover {
  background: var(--yellow);
  color: #000;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ── COUNTDOWN ── */
.countdown-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 32px;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.count-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  transition: all 0.3s;
}

.count-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 4px;
}

.count-sep {
  font-family: 'Rajdhani', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

/* ── FORMAT ── */
.format-section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 60px;
  text-align: center;
}

.section-title .accent { color: var(--yellow); }

.stages {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.stage-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px 32px;
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  position: relative;
  transition: all 0.3s;
  cursor: default;
}

.stage-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(245,197,24,0.1);
}

.stage-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(245,197,24,0.1);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.stage-card:hover .stage-num {
  color: rgba(245,197,24,0.25);
}

.stage-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.stage-card > p {
  font-size: 13px;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 500;
}

.stage-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-card ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 12px;
  position: relative;
}

.stage-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.stage-card ul li strong {
  color: var(--text);
}

.stage-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 8px;
}

.stage-arrow {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--muted);
  padding: 0 8px;
}

/* ── VENUE ── */
.venue-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.venue-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
}

.venue-desc {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 40px;
}

.venue-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.vstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vstat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.vstat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

.venue-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-card {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
  pointer-events: none;
}

.map-label strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.map-label span {
  font-size: 12px;
  color: var(--muted);
}

/* ── AD ── */
.ad-section {
  padding: 60px 0;
}

.ad-card {
  background: linear-gradient(135deg, #0d0d1f 0%, #141420 100%);
  border: 1px solid rgba(245,197,24,0.2);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}

.ad-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.ad-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}

.ad-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ad-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.ad-text {
  flex: 1;
  min-width: 200px;
}

.ad-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ad-text p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.btn-ad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-ad:hover {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 8px 30px rgba(245,197,24,0.3);
}

/* ── FOOTER ── */
.footer {
  padding: 60px 0 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: var(--yellow); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}


/* ── STADIUM ── */
.stadium-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stadium-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: -40px;
  margin-bottom: 48px;
}

.stadium-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.stadium-svg-wrap {
  width: 100%;
}

#stadium-svg {
  width: 100%;
  height: auto;
  display: block;
}

.seat-section {
  cursor: pointer;
  transition: opacity 0.2s;
}

.seat-section:hover {
  opacity: 0.85;
}

.stadium-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.stadium-tooltip {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 80px;
  transition: all 0.2s;
}

.stadium-tooltip.active {
  border-color: var(--yellow);
  color: var(--text);
}

.tooltip-icon {
  font-size: 20px;
  margin-bottom: 8px;
  opacity: 0.4;
}

.stadium-tooltip.active .tooltip-icon { display: none; }

.tooltip-section-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tooltip-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 6px;
}

/* ── MATCHES ── */
.matches-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.matches-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.matches-header .section-title { margin-bottom: 0; }

.matches-all-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--yellow);
  text-decoration: none;
  transition: opacity 0.2s;
}

.matches-all-link:hover { opacity: 0.7; }

.matches-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.matches-sub a {
  color: var(--yellow);
  text-decoration: none;
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  align-items: stretch;
}

.matches-embed-wrap {
  margin: 16px 0 32px;
}
.matches-embed {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}

.match-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
  position: relative;
}

.match-card:hover { border-color: rgba(245,197,24,0.25); }

.match-tournament {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.match-team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.match-team-right {
  align-items: flex-end;
  text-align: right;
}

.team-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  padding: 2px 6px;
  display: inline-block;
}

.team-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.match-vs {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
}

.match-prediction { display: flex; flex-direction: column; gap: 8px; }

.pred-nums {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pred-num-left {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.pred-num-right {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
}

.pred-bar-wrap {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  gap: 2px;
}

.pred-bar {
  background: var(--yellow);
  width: var(--pct);
  border-radius: 4px 0 0 4px;
}

.pred-bar-right {
  background: rgba(255,255,255,0.1);
  flex: 1;
  border-radius: 0 4px 4px 0;
}

.pred-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.match-cta {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--yellow);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}

.match-cta:hover { opacity: 0.7; }

.match-card-locked { overflow: hidden; }

.match-locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
}

.lock-icon { font-size: 28px; }

.match-locked-overlay p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.matches-cta-wrap {
  text-align: center;
}

/* ── MODELS ── */
.models-section {
  padding: 80px 0 100px;
}

.models-table {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.models-table .acc-bar-wrap { display: none; }

.models-thead {
  display: grid;
  grid-template-columns: 48px 1fr 100px 90px 60px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}

.model-row {
  display: grid;
  grid-template-columns: 48px 1fr 100px 90px 60px;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.model-row:last-of-type { border-bottom: none; }
.model-row:hover { background: rgba(255,255,255,0.02); }

.model-row-top { background: rgba(245,197,24,0.04); }
.model-row-top:hover { background: rgba(245,197,24,0.07); }

.model-rank {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

.model-row-top .model-rank { color: var(--yellow); }

.model-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
}

.model-row-top .model-name { color: var(--yellow); }

.model-acc {
  display: flex;
  align-items: center;
  gap: 10px;
}

.acc-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  min-width: 52px;
  text-align: left;
  flex-shrink: 0;
}

.top-acc { color: var(--yellow); }

.acc-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.acc-bar {
  height: 100%;
  background: rgba(245,197,24,0.4);
  border-radius: 2px;
  transition: width 1s ease;
}

.model-row-top .acc-bar { background: var(--yellow); }

.model-tier {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  display: inline-block;
  align-self: center;
  justify-self: start;
  width: fit-content;
}

.tier-pro { background: rgba(245,197,24,0.15); color: var(--yellow); }
.tier-basic { background: rgba(74,127,193,0.15); color: #4a7fc1; }
.tier-free { background: rgba(255,255,255,0.06); color: var(--muted); }

.model-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.model-link:hover { opacity: 1; }

.models-more {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.models-more a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: 1px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.models-more a:hover { opacity: 1; }

/* ── CS2PREDICT SECTION ── */
.predict-section {
  padding: 100px 0;
}

.predict-header {
  text-align: center;
  margin-bottom: 60px;
}

.predict-sub {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

.predict-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.predict-feature {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.predict-feature:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-3px);
}

.predict-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.predict-feature h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.predict-feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.predict-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.plan-card.plan-popular {
  border-color: var(--yellow);
  background: linear-gradient(135deg, #141420, #1a1a10);
}

.plan-badge-top {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

.plan-price span {
  font-size: 16px;
  color: var(--muted);
}

.plan-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-card ul li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.plan-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 12px;
}

.btn-plan {
  display: block;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-plan-free {
  border: 1px solid var(--border);
  color: var(--muted);
}

.btn-plan-free:hover { border-color: var(--text); color: var(--text); }

.btn-plan-basic {
  background: var(--yellow);
  color: #000;
}

.btn-plan-basic:hover { background: #fff; }

.btn-plan-pro {
  border: 1px solid var(--yellow);
  color: var(--yellow);
}

.btn-plan-pro:hover { background: var(--yellow); color: #000; }

.predict-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}

/* ── TEAMS ── */
.teams-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.teams-tier {
  margin-bottom: 48px;
}
.teams-tier:last-child { margin-bottom: 0; }

.teams-tier-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.teams-tier-label span { letter-spacing: 0; font-weight: 400; }

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.team-card:hover {
  border-color: rgba(245,197,24,0.4);
  background: rgba(245,197,24,0.04);
  transform: translateY(-1px);
}

.team-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.team-flag { font-size: 16px; line-height: 1; flex-shrink: 0; }

.team-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.team-card.tbd { opacity: 0.35; pointer-events: none; }
.team-card.tbd .team-name { color: var(--muted); }

/* ── TEAM DETAIL PAGE ── */
.page-nav {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg2);
}
.page-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-nav-home,
.page-nav-back {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.page-nav-home:hover,
.page-nav-back:hover { color: var(--yellow); }

.team-hero {
  padding: 80px 0 40px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245,197,24,0.06) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
}
.team-hero-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.team-hero-logo {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.team-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.team-hero-tier {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-hero-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 14px;
}
.team-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.team-hero-meta a { color: var(--yellow); text-decoration: none; }
.team-hero-meta a:hover { opacity: 0.8; }
.team-hero-dot { opacity: 0.5; }

/* ── FAQ ── */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 24px;
  transition: border-color 0.15s, background 0.15s;
}
.faq-item[open] { border-color: rgba(245,197,24,0.25); }
.faq-item summary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--yellow);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 0 22px;
}
.faq-item p a { color: var(--yellow); text-decoration: none; }
.faq-item p a:hover { opacity: 0.8; }

/* ── NEWS PAGES ── */
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-article {
  padding: 60px 0 80px;
}

.news-article-header { margin-bottom: 32px; }

.news-article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.news-article-dot { opacity: 0.5; }

.news-article-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.news-article-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.news-article-image {
  margin: 32px 0;
}
.news-article-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.news-article-body p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--text);
}

.news-article-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.news-article-footer a { color: var(--yellow); text-decoration: none; }
.news-article-footer a:hover { opacity: 0.8; }

/* news index page */
.news-list-section { padding: 60px 0 100px; }
.news-list-sub {
  text-align: center;
  color: var(--muted);
  margin-top: -40px;
  margin-bottom: 48px;
  font-size: 14px;
}
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news-list-card {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.news-list-card:hover {
  border-color: rgba(245,197,24,0.35);
  transform: translateY(-2px);
}
.news-list-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.news-list-body { padding: 22px 24px 26px; }
.news-list-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.news-list-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 8px 0 12px;
}
.news-list-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── EDITOR'S CONTEXT (news pages) ── */
.editor-context {
  margin: 32px 0 0;
  padding: 20px 24px;
  background: rgba(245,197,24,0.04);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
}
.editor-context-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 10px;
}
.editor-context p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 10px !important;
  color: var(--muted);
}
.editor-context p:last-child { margin-bottom: 0 !important; }
.editor-context a { color: var(--yellow); text-decoration: none; }
.editor-context a:hover { opacity: 0.8; }

/* ── COMPARE (HEAD-TO-HEAD) ── */
.compare-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245,197,24,0.06) 0%, var(--bg) 60%);
}
.compare-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.compare-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s;
}
.compare-side:hover { transform: translateY(-2px); }
.compare-logo { width: 110px; height: 110px; object-fit: contain; }
.compare-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 16px;
  text-align: center;
}
.compare-meta { color: var(--muted); font-size: 14px; margin-top: 6px; }
.compare-vs {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
}

.compare-section { padding: 48px 0 80px; }

.compare-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}
.compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 14px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row-head {
  background: rgba(245,197,24,0.05);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.compare-label { color: var(--muted); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.compare-a, .compare-b { color: var(--text); }

.compare-rosters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.compare-roster-col {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.compare-roster-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--yellow);
  margin-bottom: 14px;
}
.compare-roster-list { list-style: none; padding: 0; }
.compare-roster-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.compare-roster-list li:last-child { border-bottom: none; }
.compare-roster-list a { color: var(--text); text-decoration: none; }
.compare-roster-list a:hover { color: var(--yellow); }
.compare-flag { font-size: 16px; }

.compare-trophy {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}
.compare-trophy:last-child { border-bottom: none; }
.compare-trophy-date { color: var(--muted); font-variant-numeric: tabular-nums; }
.compare-trophy-name { color: var(--text); font-weight: 600; }
.compare-empty { color: var(--muted); font-size: 13px; }

/* ── BRACKET ── */
.bracket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 48px;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.bracket-round { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.bracket-round-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.bracket-match {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bracket-match.bracket-final { border-color: rgba(245,197,24,0.4); background: rgba(245,197,24,0.04); }
.bracket-team {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.bracket-team.tbd { color: var(--muted); }
.bracket-seed { font-size: 10px; letter-spacing: 1px; color: var(--muted); font-weight: 500; }
.bracket-trophy {
  text-align: center;
  margin-top: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--yellow);
}

/* ── TROPHY CABINET ── */
.team-trophies-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.trophies-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: -32px;
  margin-bottom: 28px;
  text-align: center;
}
.trophies-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.trophy-row {
  display: grid;
  grid-template-columns: 110px 50px 80px 1fr 80px;
  gap: 14px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.trophy-row:last-child { border-bottom: none; }
.trophy-row:hover { background: rgba(255,255,255,0.02); }
.trophy-date { color: var(--muted); font-variant-numeric: tabular-nums; }
.trophy-place {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}
.trophy-place-1st { color: var(--yellow); }
.trophy-place-2nd { color: #c0c0c8; }
.trophy-tier {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 600;
}
.trophy-tournament {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}
.trophy-result {
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}

/* ── ROSTER MOVES TIMELINE ── */
.rm-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.rm-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.rm-date {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}
.rm-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.rm-title:hover { color: var(--yellow); }
.rm-source { color: var(--muted); font-size: 12px; font-weight: 500; }
.rm-summary {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.55;
}
.rm-empty { color: var(--muted); padding: 32px 0; }

/* ── PLAYER PAGE ── */
.player-hero {
  padding: 60px 0 40px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245,197,24,0.06) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
}
.player-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.player-hero-photo {
  width: 200px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245,197,24,0.08) 0%, rgba(20,20,31,0.4) 100%);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.player-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.player-hero-role {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 8px;
}
.player-hero-nick {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}
.player-hero-realname {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 14px;
}
.player-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.player-hero-meta a { color: var(--yellow); text-decoration: none; }
.player-hero-meta a:hover { opacity: 0.8; }
.player-hero-dot { opacity: 0.5; }
.player-team-link { font-weight: 600; }

.player-about-section { padding: 60px 0 100px; }

.team-about-section {
  padding: 40px 0 100px;
}

.team-about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.team-about-prose p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}
.team-about-prose p:last-of-type { margin-bottom: 24px; }

.about-source {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.about-source a { color: var(--yellow); text-decoration: none; }
.about-source a:hover { opacity: 0.8; }

.team-about-facts {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 20px;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.fact-row:last-child { border-bottom: none; }

.fact-k {
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 500;
  flex-shrink: 0;
}

.fact-v {
  color: var(--text);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.team-roster-section { padding: 60px 0 40px; }

.section-title-sub {
  margin-top: 60px !important;
  font-size: clamp(24px, 3vw, 32px) !important;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.player-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.player-card:hover { border-color: rgba(245,197,24,0.35); transform: translateY(-2px); }

.player-photo-wrap {
  background: linear-gradient(180deg, rgba(245,197,24,0.08) 0%, rgba(20,20,31,0.4) 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.player-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.player-card:hover .player-photo { transform: scale(1.03); transition: transform 0.2s; }

.player-role {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--yellow);
  font-weight: 700;
  padding: 16px 20px 0;
}

.player-nick {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 8px 20px 10px;
}

.player-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 0 20px 20px;
}
.player-flag { font-size: 18px; line-height: 1; }

.team-hero-logo img { image-rendering: auto; }

/* ── ARTICLES ── */
.articles-section {
  padding: 100px 0;
}

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
}
.articles-header .section-title { margin-bottom: 0; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.article-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.15s, transform 0.15s;
}
.article-card:hover { border-color: rgba(245,197,24,0.3); transform: translateY(-2px); }

.article-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  border: 1px solid rgba(245,197,24,0.4);
  border-radius: 4px;
  padding: 3px 8px;
  width: fit-content;
}

.article-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: var(--text);
}

.article-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.article-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.article-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--yellow);
  text-decoration: none;
  transition: opacity 0.15s;
}
.article-link:hover { opacity: 0.75; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .predict-grid { grid-template-columns: repeat(2, 1fr); }
  .predict-plans { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .stadium-wrap { grid-template-columns: 1fr; }
  .matches-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .models-thead, .model-row { grid-template-columns: 36px 1fr 90px 80px 50px; padding: 12px 16px; }
}

@media (max-width: 768px) {
  /* sections */
  .format-section,
  .teams-section,
  .venue-section,
  .stadium-section,
  .predict-section,
  .matches-section,
  .models-section,
  .articles-section { padding: 64px 0; }

  /* hero */
  .hero-meta { gap: 16px; }
  .divider { display: none; }
  .scroll-hint { display: none; }

  /* countdown */
  .count-block { min-width: 72px; }

  /* format */
  .stage-arrow { transform: rotate(90deg); }
  .stages { flex-direction: column; align-items: center; }
  .stage-card { max-width: 100%; width: 100%; }

  /* venue */
  .venue-grid { grid-template-columns: 1fr; gap: 32px; }

  /* predict */
  .predict-grid { grid-template-columns: 1fr 1fr; }
  .predict-plans { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  /* matches */
  .matches-grid { max-width: 100%; }
  .matches-header { flex-direction: column; gap: 8px; }

  /* models */
  .models-thead, .model-row { grid-template-columns: 36px 1fr 80px 60px 40px; padding: 10px 12px; font-size: 12px; }
  .models-thead { letter-spacing: 0.5px; }

  /* teams */
  .teams-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

  /* team detail */
  .team-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .trophy-row { grid-template-columns: 90px 40px 1fr; gap: 8px; padding: 10px 12px; font-size: 12px; }
  .trophy-row .trophy-tier, .trophy-row .trophy-result { display: none; }

  /* compare */
  .compare-hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-vs { font-size: 28px; }
  .compare-rosters { grid-template-columns: 1fr; gap: 16px; }
  .compare-row { grid-template-columns: 1fr; gap: 4px; }
  .compare-label { font-size: 11px; }

  /* bracket */
  .bracket { grid-template-columns: 1fr; padding: 16px; }
  .team-hero-inner { flex-direction: column; text-align: center; align-items: center; gap: 20px; }
  .team-hero-logo { width: 120px; height: 120px; }
  .team-hero-meta { flex-wrap: wrap; justify-content: center; }

  /* player detail */
  .player-hero-inner { flex-direction: column; text-align: center; align-items: center; gap: 20px; }
  .player-hero-photo { width: 160px; height: 200px; }
  .player-hero-meta { justify-content: center; }

  /* news list */
  .news-list-grid { grid-template-columns: 1fr; }

  /* articles */
  .articles-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* ad */
  .ad-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  /* teams */
  .teams-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
  .team-card { padding: 10px 12px; }
  .team-name { font-size: 13px; }

  /* hide less important columns */
  .models-thead span:nth-child(5),
  .model-row .model-link { display: none; }
  .models-thead, .model-row { grid-template-columns: 30px 1fr 70px 60px; padding: 10px 12px; }

  /* predict features → single col */
  .predict-grid { grid-template-columns: 1fr; }

  /* compress countdown */
  .count-block { min-width: 60px; }
  .count-sep { font-size: 40px; }

  /* hero */
  .btn-primary { padding: 14px 24px; font-size: 14px; }

  /* match cards */
  .match-card { padding: 20px; }
  .team-name { font-size: 18px; }

  /* plan cards full width */
  .predict-plans { max-width: 100%; }
}
