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

:root {
  --wc-red: #c8102e;
  --wc-blue: #003da5;
  --wc-gold: #f5a623;
  --wc-white: #f8f8f6;
  --nv-red: #e8001c;
  --dark: #09090f;
  --mid: #111827;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--wc-white);
  overflow-x: hidden;
}

/* ── TOP NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(9, 9, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo .wc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.nav-logo .fifa-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wc-gold);
  text-transform: uppercase;
  line-height: 1;
}

.divider-v {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

.nv-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.nv-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--nv-red);
  text-decoration: none;
}

.nv-link:hover {
  text-decoration: underline;
}

.nav-cta {
  background: var(--wc-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.nav-cta:hover {
  background: #a00c25;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Pitch lines background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 80% 60% at 50% 60%,
      rgba(0, 61, 165, 0.18) 0%,
      transparent 70%
    ),
    linear-gradient(180deg, #0a1628 0%, #09090f 100%);
}

/* SVG pitch overlay */
.pitch-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
}

/* Trophy silhouette glow */
.trophy-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.22) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.4);
  border-radius: 2px;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--wc-red);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--wc-red);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 13vw, 10.5rem);
  line-height: 0.88;
  letter-spacing: 2px;
  background: linear-gradient(160deg, #ffffff 30%, #c0c8d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.hero h1 span.year {
  display: block;
  background: linear-gradient(135deg, var(--wc-gold) 0%, #ffcc55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 18px 0 42px;
}

.hero-sub strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

/* Flags strip */
.flags-strip {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.flag-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.flag-chip .fi {
  font-size: 1rem;
}

/* CTA */
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--wc-red) 0%, #9b0a20 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.45);
}

.btn-watch:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 16, 46, 0.6);
}

.btn-watch .play-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-watch .play-icon::after {
  content: "";
  border: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #fff;
  margin-left: 2px;
}

.btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-schedule:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Host badge */
.host-badge {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.host-badge span {
  color: rgba(255, 255, 255, 0.85);
}

.host-sep {
  opacity: 0.25;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--wc-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── GROUPS SECTION ── */
.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eye {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--wc-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  margin-bottom: 40px;
}

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

.group-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 22px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.group-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.group-letter {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  color: var(--wc-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.group-teams {
  list-style: none;
}

.group-teams li {
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.group-teams li:last-child {
  border-bottom: none;
}

.team-flag {
  font-size: 1.05rem;
}

/* ── SPONSOR STRIP ── */
.sponsor-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 40px;
  text-align: center;
}

.sponsor-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sponsor-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 0, 28, 0.25);
  border-radius: 8px;
  padding: 20px 36px;
}

.nv-logo-big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

.nv-logo-big span {
  color: var(--nv-red);
}

.nv-desc {
  text-align: left;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.nv-desc strong {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  font-size: 0.85rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

footer a {
  color: var(--nv-red);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav {
    padding: 14px 20px;
  }

  .nav-logo .fifa-tag {
    display: none;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .section {
    padding: 60px 20px;
  }

  .btn-watch {
    padding: 16px 28px;
    font-size: 0.95rem;
  }

  .btn-schedule {
    padding: 16px 22px;
    font-size: 0.82rem;
  }

  .sponsor-card {
    flex-direction: column;
    text-align: center;
  }

  .nv-desc {
    text-align: center;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
