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

:root {
  --green-light:  #1db954;
  --gold:         #f5c518;
  --white:        #ffffff;
  --gray:         #9a9a9a;
  --dark:         #0a0a0a;
  --card-bg:      rgba(255,255,255,0.04);
  --border:       rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

/* HERO */
.hero {
  text-align: center;
  padding: 5rem 1rem 3.5rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green-light);
  opacity: 0.5;
}

.hero-ball {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 0 0 80px rgba(29,185,84,0.3);
}

.hero h1 span { color: var(--green-light); }

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* COUNTDOWN */
.countdown-wrap {
  margin: 3rem 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.countdown-wrap::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(29,185,84,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}

.countdown-event {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.countdown-event span { color: var(--gold); }

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.timer-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 0.5rem;
  text-align: center;
  transition: border-color 0.3s;
}

.timer-block:hover { border-color: rgba(29,185,84,0.3); }

.timer-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.timer-unit {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-top: 6px;
}

.host-tag {
  text-align: center;
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.host-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 99px;
  font-weight: 500;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 2rem 0;
}

.stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--green-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.4;
}

/* SECTION HEADING */
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin: 3rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* CHAMPIONS */
.champions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.champ {
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.champ:hover {
  border-color: rgba(29,185,84,0.4);
  color: var(--white);
}

.champ.gold {
  border-color: rgba(245,197,24,0.5);
  color: var(--gold);
  background: rgba(245,197,24,0.05);
}

/* FACTS */
.facts { display: grid; gap: 10px; margin-bottom: 2rem; }

.fact {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.fact:hover { border-color: rgba(29,185,84,0.25); }

.fact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }

.fact-body { font-size: 0.88rem; color: #b0b0b0; line-height: 1.6; }
.fact-body strong { color: var(--white); font-weight: 500; }

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.1em;
}

@media (max-width: 540px) {
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.65rem; }
  .timer-num { font-size: 2rem; }
}
