/* ══════════════════════════════════════════════
   ArafSportZ — FIFA World Cup 2026
   Premium CSS · Liquid Glass · Blue Gradient
   Font: Syne
   © Araf Studio
══════════════════════════════════════════════ */

/* ─── ROOT VARIABLES ─────────────────────────── */
:root {
  --bg-base:        #010a18;
  --bg-deep:        #020d1f;
  --bg-mid:         #041529;
  --blue-vivid:     #1464f6;
  --blue-bright:    #2d8fff;
  --cyan:           #00c8f8;
  --cyan-soft:      #4dd9fc;
  --gold:           #f5be42;
  --gold-soft:      #ffe08a;
  --white:          #ffffff;
  --white-80:       rgba(255,255,255,0.80);
  --white-50:       rgba(255,255,255,0.50);
  --white-20:       rgba(255,255,255,0.20);
  --white-08:       rgba(255,255,255,0.08);
  --white-05:       rgba(255,255,255,0.05);

  --glass-bg:       rgba(10, 30, 60, 0.45);
  --glass-bg-s:     rgba(8, 28, 58, 0.65);
  --glass-border:   rgba(100, 180, 255, 0.18);
  --glass-border-s: rgba(100, 200, 255, 0.30);
  --glass-blur:     blur(24px) saturate(160%);
  --glass-blur-s:   blur(32px) saturate(180%);

  --grad-primary:   linear-gradient(135deg, var(--blue-vivid), var(--cyan));
  --grad-gold:      linear-gradient(135deg, #f5be42, #ff9f1c);
  --grad-bg:        linear-gradient(160deg, #0a1e3a 0%, #010d1f 50%, #000a18 100%);

  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-pill:    999px;

  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Syne', sans-serif;
  background: var(--bg-base);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: 'Syne', sans-serif; cursor: pointer; border: none; }

/* ─── ANIMATED BACKGROUND ────────────────────── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #0d2a50 0%, #010d1f 60%);
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: floatOrb 18s ease-in-out infinite alternate;
}
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, #1464f6 0%, transparent 70%); top: -200px; left: -150px; animation-duration: 20s; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #00c8f8 0%, transparent 70%); top: 30%; right: -100px; animation-duration: 16s; animation-delay: -4s; }
.orb-3 { width: 600px; height: 600px; background: radial-gradient(circle, #0a3a80 0%, transparent 70%); bottom: 10%; left: 20%; animation-duration: 22s; animation-delay: -8s; }
.orb-4 { width: 350px; height: 350px; background: radial-gradient(circle, #f5be4220 0%, transparent 70%); top: 50%; right: 30%; animation-duration: 14s; animation-delay: -3s; }
.orb-5 { width: 450px; height: 450px; background: radial-gradient(circle, #1464f640 0%, transparent 70%); bottom: 20%; right: -80px; animation-duration: 19s; animation-delay: -11s; }

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.1); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 180, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ─── GLASS UTILITIES ────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}
.glass-strong {
  background: var(--glass-bg-s);
  backdrop-filter: var(--glass-blur-s);
  -webkit-backdrop-filter: var(--glass-blur-s);
  border: 1px solid var(--glass-border-s);
}

/* ─── GRADIENT TEXT ──────────────────────────── */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(1, 10, 24, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo-link { flex-shrink: 0; }
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 200, 248, 0.4));
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-80);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
}
.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 60px;
}

.hero-glow-ring {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(100, 180, 255, 0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateRing 40s linear infinite;
  pointer-events: none;
}
.ring-2 {
  width: 1100px; height: 1100px;
  border-color: rgba(100, 180, 255, 0.04);
  animation-duration: 60s;
  animation-direction: reverse;
}
@keyframes rotateRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Left */
.hero-left { flex: 1; max-width: 600px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease both;
}
.eyebrow-brand { color: var(--cyan); }
.eyebrow-sep   { color: var(--white-50); }
.eyebrow-event { color: var(--white-80); }

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}
.ht-world {
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 0 60px rgba(100, 180, 255, 0.2);
}
.ht-cup {
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white-80);
}
.ht-year {
  font-size: clamp(68px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 8px;
}

.hero-sub {
  font-size: 16px;
  color: var(--white-50);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  animation: fadeSlideDown 0.8s 0.2s ease both;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 200, 248, 0.4);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 200, 248, 0.06);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: fadeSlideDown 0.8s 0.25s ease both;
}
.coming-soon-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,200,248,0.08), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
.pulse-ring {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: inherit;
  border: 1px solid rgba(0, 200, 248, 0.3);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.06); opacity: 0; }
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  flex-shrink: 0;
}

/* Countdown */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}
.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  min-width: 80px;
  position: relative;
  overflow: hidden;
}
.cd-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
}
.cd-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 200, 248, 0.4);
}
.cd-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cd-colon {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-20);
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Hero Facts */
.hero-facts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.8s 0.4s ease both;
}
.hf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  min-width: 80px;
}
.hf-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hf-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--white-50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero Right */
.hero-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: fadeSlideDown 0.8s 0.15s ease both;
}
.trophy-halo {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 100, 246, 0.3) 0%, transparent 70%);
  animation: pulse-halo 3s ease-in-out infinite;
}
@keyframes pulse-halo {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.1); opacity: 1; }
}
.hero-trophy {
  position: relative;
  z-index: 2;
  width: 260px;
  filter: drop-shadow(0 20px 60px rgba(20, 100, 246, 0.6))
          drop-shadow(0 0 40px rgba(0, 200, 248, 0.3));
  animation: floatTrophy 4s ease-in-out infinite;
}
@keyframes floatTrophy {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
.trophy-shadow {
  position: relative;
  z-index: 1;
  width: 140px; height: 20px;
  background: radial-gradient(ellipse, rgba(20, 100, 246, 0.5) 0%, transparent 70%);
  filter: blur(10px);
  margin-top: -10px;
  animation: floatTrophy 4s ease-in-out infinite reverse;
}
.host-chips {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.host-chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--white-80);
  transition: var(--transition);
}
.host-chip:hover { color: var(--white); border-color: var(--cyan); }
.host-chip-mid {
  background: rgba(20, 100, 246, 0.2);
  border-color: rgba(20, 100, 246, 0.4);
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(20, 100, 246, 0.15);
  border: 1px solid rgba(20, 100, 246, 0.35);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--white-50);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   STATS / DATA SECTION
══════════════════════════════════════════════ */
.stats-section { background: linear-gradient(180deg, transparent 0%, rgba(10,30,60,0.3) 100%); }

/* Data Ribbon */
.data-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 28px 40px;
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
  gap: 8px;
  flex-wrap: wrap;
}
.dr-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dr-icon { font-size: 22px; }
.dr-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.dr-lbl {
  font-size: 11px;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.dr-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* Info Cards Grid */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.ic {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.ic:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 248, 0.3);
}
.ic-head {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ic-body {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.ic-note {
  font-size: 13px;
  color: var(--white-50);
}

/* ══════════════════════════════════════════════
   TEAMS SECTION
══════════════════════════════════════════════ */
.teams-section {
  position: relative;
}
.teams-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(20, 100, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px 16px;
  border-radius: var(--radius-lg);
  cursor: default;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(20, 100, 246, 0.15);
  border-color: rgba(0, 200, 248, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 200, 248, 0.1);
}
.team-logo-ring {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: var(--transition);
}
.team-card:hover .team-logo-ring {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 200, 248, 0.25);
}
.team-logo {
  width: 50px; height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.team-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--white-80);
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}
.team-card:hover .team-name { color: var(--white); }

/* ══════════════════════════════════════════════
   SCHEDULE SECTION
══════════════════════════════════════════════ */
.schedule-section {
  background: linear-gradient(180deg, rgba(4, 21, 41, 0.4) 0%, transparent 100%);
}

/* Day Tabs */
.day-tabs-scroller {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--glass-border) transparent;
  padding-bottom: 8px;
  margin-bottom: 32px;
}
.day-tabs-scroller::-webkit-scrollbar { height: 4px; }
.day-tabs-scroller::-webkit-scrollbar-track { background: transparent; }
.day-tabs-scroller::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 2px; }

.day-tabs {
  display: flex;
  gap: 10px;
  min-width: max-content;
  padding: 4px;
}
.day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--white-80);
  min-width: 90px;
}
.day-tab:hover {
  background: rgba(20, 100, 246, 0.15);
  border-color: rgba(0, 200, 248, 0.3);
  color: var(--white);
}
.day-tab.active {
  background: linear-gradient(135deg, rgba(20, 100, 246, 0.4), rgba(0, 200, 248, 0.2));
  border-color: var(--cyan);
  color: var(--white);
  box-shadow: 0 0 20px rgba(0, 200, 248, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.day-tab.tba { opacity: 0.55; }
.day-tab.tba.active { opacity: 1; }
.dt-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dt-date {
  font-size: 10px;
  font-weight: 600;
  color: inherit;
  opacity: 0.7;
  letter-spacing: 0.06em;
}

/* Matches Display */
.matches-display { min-height: 240px; }

.match-day-hdr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.mdh-day {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.mdh-date {
  font-size: 14px;
  color: var(--white-50);
  font-weight: 600;
}
.mdh-count {
  margin-left: auto;
  background: rgba(20, 100, 246, 0.2);
  border: 1px solid rgba(20, 100, 246, 0.35);
  color: var(--cyan);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.matches-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.match-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 32px;
  border-radius: var(--radius-xl);
  gap: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.match-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(20, 100, 246, 0.08) 0%,
    transparent 40%,
    transparent 60%,
    rgba(0, 200, 248, 0.08) 100%
  );
  pointer-events: none;
}
.match-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 248, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 200, 248, 0.08);
}

.match-side {
  display: flex;
  align-items: center;
  gap: 16px;
}
.match-side.home { flex-direction: row; }
.match-side.away { flex-direction: row-reverse; }

.match-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  flex-shrink: 0;
}
.match-team {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.match-side.away .match-team { text-align: right; }
.match-tag {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-50);
  margin-top: 2px;
}
.match-side.away .match-tag { text-align: right; }

.match-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.vs {
  font-size: 16px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}
.match-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--white-80);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  letter-spacing: 0.04em;
}

/* TBA Block */
.tba-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
}
.tba-icon { font-size: 48px; opacity: 0.6; }
.tba-block h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.tba-block p {
  font-size: 14px;
  color: var(--white-50);
}

/* ══════════════════════════════════════════════
   CHAMPIONS SECTION
══════════════════════════════════════════════ */
.champions-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30, 60, 100, 0.2) 0%, transparent 70%);
}

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

.champ-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  min-width: 160px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.champ-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0.5;
  transition: var(--transition);
}
.champ-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 200, 248, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,200,248,0.1);
}
.champ-card:hover::before { opacity: 1; }

.champ-year {
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.champ-badge {
  width: 72px; height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.champ-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.champ-host {
  font-size: 12px;
  color: var(--white-50);
  font-weight: 600;
}

/* Title Count Box */
.title-count-box {
  padding: 40px;
  border-radius: var(--radius-xl);
}
.tcb-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: -0.01em;
}
.tcb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
.tcb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--white-05);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.tcb-item:hover {
  background: rgba(20, 100, 246, 0.15);
  border-color: var(--cyan);
}
.tcb-badge {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.tcb-country {
  font-size: 12px;
  font-weight: 700;
  color: var(--white-80);
  text-align: center;
}
.tcb-count {
  font-size: 14px;
  font-weight: 800;
  color: var(--white-50);
}
.tcb-count.gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(1, 6, 15, 0.95);
  border-top: 1px solid var(--glass-border);
  padding: 60px 40px 32px;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(20, 100, 246, 0.15) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 14px rgba(0, 200, 248, 0.35));
}
.footer-tagline {
  font-size: 14px;
  color: var(--white-50);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-chip {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white-80);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.fn-col { display: flex; flex-direction: column; gap: 10px; }
.fn-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.fn-link {
  font-size: 14px;
  color: var(--white-50);
  font-weight: 600;
  transition: var(--transition);
}
.fn-link:hover { color: var(--white); }

.footer-divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy-left p,
.footer-copy-right p {
  font-size: 13px;
  color: var(--white-50);
  font-weight: 500;
}
.powered-brand {
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    padding: 120px 24px 80px;
    text-align: center;
    align-items: center;
  }
  .hero-left { max-width: 100%; align-items: center; display: flex; flex-direction: column; }
  .hero-right { order: -1; }
  .hero-trophy { width: 200px; }
  .trophy-halo { width: 260px; height: 260px; }
  .nav-links { display: none; }
  .data-ribbon { gap: 20px; }
  .dr-divider { display: none; }
}

@media (max-width: 680px) {
  .section { padding: 70px 20px; }
  .hero { padding: 100px 20px 60px; }
  .countdown-wrap { gap: 8px; }
  .cd-box { min-width: 68px; padding: 12px 14px; }
  .cd-num { font-size: 28px; }
  .match-card { padding: 16px 20px; gap: 12px; }
  .match-logo { width: 48px; height: 48px; }
  .match-team { font-size: 14px; }
  .champions-row { gap: 12px; }
  .champ-card { min-width: 130px; padding: 20px 16px; }
  .footer-top { gap: 36px; }
  .footer { padding: 48px 20px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .teams-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .data-ribbon { padding: 20px; }
  .title-count-box { padding: 24px 20px; }
  .nav-live-badge { display: none; }
}

@media (max-width: 400px) {
  .hero-facts { gap: 8px; }
  .hf-item { min-width: 68px; padding: 12px; }
  .hf-val { font-size: 20px; }
  .ht-world, .ht-cup { font-size: 44px; }
  .ht-year { font-size: 56px; }
}

/* ─── SCROLLBAR GLOBAL ───────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 200, 248, 0.4); }

/* ─── SELECTION ──────────────────────────────── */
::selection { background: rgba(20, 100, 246, 0.4); color: var(--white); }
