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

:root {
  --primary: #6C5CE7;
  --secondary: #00D1B2;
  --accent: #FFB800;
  --bg: #0a0f1c;
  --bg-light: #0f1629;
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.08);
  --text: #e0e0e0;
  --text-muted: #8892b0;
  --text-bright: #ffffff;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-bright);
  line-height: 1.2;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(108, 92, 231, 0.3); }
  50% { box-shadow: 0 0 40px rgba(108, 92, 231, 0.6), 0 0 60px rgba(0, 209, 178, 0.2); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-bright);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-bright);
  background: rgba(108, 92, 231, 0.15);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-bright);
  transition: all var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #8b7cf7);
  color: var(--text-bright);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
  color: var(--text-bright);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text-bright);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  color: var(--text-bright);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 10px 24px;
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--bg);
}

.glow-btn {
  animation: glowPulse 3s infinite;
}

.glow-btn:hover {
  animation: none;
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,28,0.92) 0%, rgba(10,15,28,0.75) 50%, rgba(108,92,231,0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(108, 92, 231, 0.2);
  border: 1px solid rgba(108, 92, 231, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-sm {
  min-height: 350px;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,28,0.93) 0%, rgba(10,15,28,0.8) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 100px 20px 40px;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== HOST SHOWCASE ===== */
.host-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.host-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.host-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.host-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.host-card:hover .host-img {
  transform: scale(1.08);
}

.host-body {
  padding: 24px;
}

.host-flag {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.host-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.host-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== REPORT CARDS ===== */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.featured-report {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.report-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.report-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.report-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.featured-report .report-img-wrap {
  height: 100%;
  min-height: 300px;
}

.report-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.report-card:hover .report-img {
  transform: scale(1.05);
}

.report-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.report-body {
  padding: 24px;
}

.report-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.report-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.report-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.report-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
}

.report-link:hover {
  color: var(--accent);
}

/* ===== INSIGHTS SECTION ===== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}

.insight-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.insight-icon {
  font-size: 1.5rem;
}

.insight-header h3 {
  font-size: 1.2rem;
}

.insight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.team-flag {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.insight-list li strong {
  color: var(--text-bright);
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.insight-list li p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.player-team {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,28,0.92) 0%, rgba(108,92,231,0.25) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px;
  max-width: 600px;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTENT LAYOUT ===== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.content-block h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
}

.content-block p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 20px 0;
  height: 400px;
  object-fit: cover;
}

.content-img-small {
  width: 100%;
  border-radius: var(--radius);
  margin: 16px 0;
  height: 250px;
  object-fit: cover;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== OVERVIEW GRID ===== */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.overview-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}

.overview-item:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.3);
}

.overview-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.overview-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.overview-item p {
  color: var(--text-bright);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* ===== OFFICIAL WC2026 GROUP CARDS (NEW) ===== */
.groups-controls {
  background: linear-gradient(135deg, rgba(108,92,231,0.08), rgba(0,209,178,0.05));
  border: 1px solid rgba(108,92,231,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.search-wrap {
  position: relative;
  margin-bottom: 16px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.6;
  pointer-events: none;
}

.team-search {
  width: 100%;
  padding: 14px 18px 14px 44px;
  background: rgba(10,15,28,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.team-search:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.2);
  background: rgba(10,15,28,0.85);
}

.team-search::placeholder {
  color: var(--text-muted);
}

.group-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  background: rgba(108,92,231,0.15);
  color: var(--text-bright);
  border-color: rgba(108,92,231,0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), #8b7cf7);
  color: var(--text-bright);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(108,92,231,0.35);
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.wc-group-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.wc-group-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0.8;
}

.wc-group-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,92,231,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(108,92,231,0.15);
}

.wc-group-card.wc-group-dim {
  opacity: 0.35;
  filter: grayscale(50%);
}

.wc-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

.wc-group-letter {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-bright);
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(108,92,231,0.35);
  flex-shrink: 0;
}

.wc-group-header h3 {
  font-size: 1.25rem;
  margin: 0;
  flex: 1;
}

.wc-group-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.wc-team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc-team-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.wc-team-row:hover {
  background: rgba(108,92,231,0.1);
  border-color: rgba(108,92,231,0.25);
  transform: translateX(4px);
}

.wc-team-flag {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.wc-team-name {
  flex: 1;
  color: var(--text-bright);
  font-weight: 600;
  font-size: 0.92rem;
}

.wc-team-tag {
  background: linear-gradient(135deg, rgba(255,184,0,0.2), rgba(255,184,0,0.1));
  border: 1px solid rgba(255,184,0,0.3);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wc-team-row.wc-team-highlight {
  background: linear-gradient(135deg, rgba(0,209,178,0.15), rgba(108,92,231,0.1));
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(0,209,178,0.2);
  transform: translateX(4px);
}

.wc-team-row.wc-team-highlight .wc-team-name {
  color: var(--secondary);
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  background: var(--card-bg);
  border: 1px dashed var(--card-border);
  border-radius: var(--radius);
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ===== LEGACY GROUP CARDS (kept for compatibility) ===== */
.group-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
}

.group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}

.group-header h3 {
  font-size: 1.5rem;
}

.group-tag {
  background: rgba(255, 184, 0, 0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.group-teams {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.group-team {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.group-team .team-flag {
  font-size: 1.8rem;
  margin-top: 4px;
}

.group-team strong {
  color: var(--text-bright);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 8px;
}

.group-team p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.group-prediction {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(108, 92, 231, 0.1);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
  font-size: 0.92rem;
}

/* ===== KNOCKOUT SECTIONS ===== */
.knockout-section {
  margin-bottom: 28px;
}

.knockout-section h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.knockout-list {
  list-style: none;
  padding: 0;
}

.knockout-list li {
  padding: 12px 16px;
  background: var(--card-bg);
  border-left: 3px solid var(--secondary);
  margin-bottom: 8px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.final-prediction {
  margin-top: 32px;
}

.final-box {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 209, 178, 0.1));
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.final-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.final-team {
  text-align: center;
}

.team-flag-large {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}

.final-team strong {
  color: var(--text-bright);
  font-size: 1.2rem;
}

.vs-large {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.final-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PLAYER CARDS ===== */
.players-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.player-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.player-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.player-card:hover .player-img {
  transform: scale(1.05);
}

.player-info {
  padding: 20px;
}

.player-info h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.player-nation {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.player-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.player-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-stats span {
  background: rgba(108, 92, 231, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-ranking {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text);
}

.rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-articles {
  list-style: none;
}

.sidebar-articles li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.sidebar-articles li:last-child {
  border-bottom: none;
}

.sidebar-articles a {
  font-size: 0.88rem;
  color: var(--secondary);
}

.sidebar-articles a:hover {
  color: var(--accent);
}

/* ===== ARTICLE PAGE ===== */
.article-page {
  padding-top: 0;
}

.article-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,28,1) 0%, rgba(10,15,28,0.5) 50%, rgba(10,15,28,0.3) 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.article-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-hero-content h1 {
  font-size: 2.5rem;
  max-width: 800px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 48px 0;
  align-items: start;
}

.article-content .content-block {
  margin-bottom: 36px;
}

.article-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
  color: var(--accent);
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.article-list li {
  padding: 10px 0 10px 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.article-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.about-feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: all var(--transition);
}

.about-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(108, 92, 231, 0.3);
}

.feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px;
}

.about-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.about-benefits {
  list-style: none;
  padding: 0;
}

.about-benefits li {
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-benefits li:last-child {
  border-bottom: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.value-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 20px 0 10px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
}

.legal-list li {
  padding: 8px 0 8px 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-bright);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #8b7cf7;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }
  
  .sidebar,
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .host-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--card-border);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .reports-grid {
    grid-template-columns: 1fr;
  }

  .featured-report {
    grid-template-columns: 1fr;
  }

  .featured-report .report-img-wrap {
    height: 200px;
    min-height: auto;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .players-grid {
    grid-template-columns: 1fr;
  }

  .about-features,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .sidebar,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-hero-content h1 {
    font-size: 1.8rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .final-teams {
    flex-direction: column;
    gap: 16px;
  }

  .group-team {
    flex-direction: column;
    gap: 8px;
  }

  .content-img {
    height: 250px;
  }

  .section {
    padding: 48px 0;
  }

  .content-block h2 {
    font-size: 1.6rem;
  }

  .groups-grid {
    grid-template-columns: 1fr;
  }

  .wc-group-letter {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .wc-group-header h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 350px;
  }

  .page-hero-sm {
    min-height: 280px;
  }

  .wc-group-card {
    padding: 18px;
  }

  .team-search {
    font-size: 0.88rem;
  }
}