/* ══════════════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:        #05111e;
  --navy2:       #081a2e;
  --navy3:       #0b2340;
  --navy4:       #0e2a4d;
  --green:       #0d7a3e;
  --green2:      #11a353;
  --green-neon:  #00ff87;
  --gold:        #f0b429;
  --gold2:       #ffd000;
  --gold-dark:   #b8860b;
  --cyan:        #00cfff;
  --cyan2:       #009ed4;
  --red:         #e63946;
  --white:       #ffffff;
  --w80:         rgba(255,255,255,0.80);
  --w50:         rgba(255,255,255,0.50);
  --w20:         rgba(255,255,255,0.20);
  --w08:         rgba(255,255,255,0.08);
  --w04:         rgba(255,255,255,0.04);
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  background: rgba(5,17,30,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,207,255,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,207,255,0.3));
}
.nav-logo-text {
  display: flex; align-items: center;
}
.nav-logo em { color: var(--cyan); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--w80); text-decoration: none;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.nav-active { color: var(--cyan) !important; }
.nav-links .btn-nav {
  background: var(--cyan);
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,207,255,0.3);
  transition: transform 0.15s, box-shadow 0.2s !important;
}
.nav-links .btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,207,255,0.45) !important;
  color: var(--navy) !important;
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}

.hero-field {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.012) 80px,
      rgba(255,255,255,0.012) 160px
    ),
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(13,122,62,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(13,122,62,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.field-svg {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 110vw);
  opacity: 0.06;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,207,255,0.05) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.1); opacity: 0.7; }
}

.hero-stripe {
  position: absolute; top: 0; right: 0;
  width: 35%; height: 100%;
  background: linear-gradient(180deg, rgba(0,207,255,0.03) 0%, transparent 60%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,207,255,0.08);
  border: 1px solid rgba(0,207,255,0.25);
  padding: 7px 20px;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2.2rem;
  position: relative; z-index: 2;
  animation: hero-in 0.7s cubic-bezier(.22,.68,0,1.2) both;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 14vw, 10.5rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -1px;
  text-transform: uppercase;
  position: relative; z-index: 2;
  animation: hero-in 0.7s 0.1s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-title .l1 { display: block; color: var(--white); }
.hero-title .l2 {
  display: block;
  -webkit-text-stroke: 2px var(--cyan);
  color: transparent;
  letter-spacing: 4px;
}
.hero-title .l3 {
  display: block;
  background: linear-gradient(95deg, var(--gold) 0%, var(--gold2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite, hero-in 0.7s 0.2s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-sub {
  position: relative; z-index: 2;
  max-width: 560px;
  margin: 2rem auto 0;
  font-size: 1rem;
  color: var(--w80);
  line-height: 1.75;
  animation: hero-in 0.7s 0.3s cubic-bezier(.22,.68,0,1.2) both;
}

.hero-cta {
  position: relative; z-index: 2;
  margin-top: 2.8rem;
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  animation: hero-in 0.7s 0.4s cubic-bezier(.22,.68,0,1.2) both;
}
.btn-primary {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--navy);
  padding: 16px 44px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 24px rgba(0,207,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,207,255,0.5); }
.btn-outline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  background: transparent;
  color: var(--w80);
  padding: 15px 36px;
  border-radius: 4px;
  border: 1px solid var(--w20);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-flags {
  position: relative; z-index: 2;
  margin-top: 3rem;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: hero-in 0.7s 0.5s cubic-bezier(.22,.68,0,1.2) both;
}
.flag-chip {
  display: inline-block;
  width: 50px;
  height: 34px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.flag-chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.hero-countdown {
  position: relative; z-index: 2;
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 0;
  justify-content: center;
  animation: hero-in 0.7s 0.35s cubic-bezier(.22,.68,0,1.2) both;
}
.cd-unit {
  background: rgba(0,207,255,0.06);
  border: 1px solid rgba(0,207,255,0.2);
  border-radius: 10px;
  padding: 14px 20px 10px;
  text-align: center;
  min-width: 80px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.cd-unit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,207,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cd-unit:hover { border-color: rgba(0,207,255,0.5); background: rgba(0,207,255,0.1); }
.cd-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem; font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -1px;
  transition: color 0.2s;
}
.cd-unit:hover .cd-num { color: var(--cyan); }
.cd-lbl {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--w50);
  margin-top: 5px;
}
.cd-sep {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: rgba(0,207,255,0.35);
  padding: 0 8px;
  animation: blink 1.4s ease-in-out infinite;
  margin-bottom: 12px;
}
.cd-label-main {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--w50);
  letter-spacing: 0.5px;
  animation: hero-in 0.7s 0.4s cubic-bezier(.22,.68,0,1.2) both;
}
.cd-label-main svg { color: var(--cyan); flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2;
  animation: fade-in 1s 1.2s both;
}
.scroll-hint span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--w50);
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--w20);
  border-bottom: 2px solid var(--w20);
  transform: rotate(45deg);
  animation: bounce-arrow 1.4s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%,100% { transform: rotate(45deg) translate(0,0); opacity:0.4; }
  50%      { transform: rotate(45deg) translate(4px,4px); opacity:1; }
}

@keyframes hero-in {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fade-in { from { opacity:0; } to { opacity:1; } }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy2);
  border-top: 1px solid rgba(0,207,255,0.1);
  border-bottom: 1px solid rgba(0,207,255,0.1);
}
.stats-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-cell {
  padding: 2.8rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(0,207,255,0.08);
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(0,207,255,0.04); }
.stat-cell::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.stat-cell:hover::after { transform: scaleX(1); }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3.8rem; font-weight: 700;
  line-height: 1; letter-spacing: -1px;
  color: var(--cyan);
}
.stat-num.gold { color: var(--gold2); }
.stat-label {
  display: block; margin-top: 6px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--w50);
}

/* ══════════════════════════════════════════
   SECTION COMMON STYLES
══════════════════════════════════════════ */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan);
  padding: 5px 14px;
  border: 1px solid rgba(0,207,255,0.3);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700; text-transform: uppercase;
  line-height: 0.9; letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.95rem; color: var(--w80);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

/* ══════════════════════════════════════════
   SCORING SECTION
══════════════════════════════════════════ */
.scoring-section {
  padding: 8rem 2rem;
  background: var(--navy);
  position: relative;
}
.scoring-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,207,255,0.3), transparent);
}
.scoring-grid {
  max-width: 1000px; margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.score-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  cursor: default;
}
.score-card:hover { transform: translateY(-8px); }
.score-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.score-card.exacto { border-color: rgba(240,180,41,0.2); }
.score-card.exacto:hover { border-color: var(--gold); }
.score-card.exacto::before { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.score-card.winner { border-color: rgba(0,255,135,0.2); }
.score-card.winner:hover { border-color: var(--green-neon); }
.score-card.winner::before { background: linear-gradient(90deg, var(--green), var(--green-neon)); }
.score-card.miss { border-color: rgba(255,255,255,0.04); }
.score-card.miss::before { background: rgba(255,255,255,0.1); }

.score-card .watermark {
  position: absolute; top: -10px; right: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 8rem; font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.score-pts {
  font-family: 'Oswald', sans-serif;
  font-size: 5.5rem; font-weight: 700;
  line-height: 1; position: relative; z-index: 1;
}
.score-card.exacto .score-pts { color: var(--gold2); }
.score-card.winner .score-pts { color: var(--green-neon); }
.score-card.miss .score-pts { color: rgba(255,255,255,0.2); }
.score-icon { font-size: 1.6rem; margin: 6px 0 14px; }
.score-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px; color: var(--white);
}
.score-desc { font-size: 0.82rem; color: var(--w50); line-height: 1.5; }

/* ══════════════════════════════════════════
   RANKING SECTION
══════════════════════════════════════════ */
.ranking-section {
  padding: 8rem 2rem;
  background: var(--navy2);
  position: relative;
}
.ranking-inner { max-width: 920px; margin: 0 auto; }
.ranking-table {
  margin-top: 3.5rem;
  background: var(--navy3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden;
}
.ranking-head {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0,207,255,0.12);
  display: flex; align-items: center; gap: 10px;
}
.ranking-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
}
.table-cols {
  display: grid;
  grid-template-columns: 50px 1fr 110px 110px;
  padding: 0.7rem 2rem;
  background: rgba(0,0,0,0.25);
}
.col-lbl {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--w50);
}
.col-lbl:not(:first-child) { text-align: center; }
.table-row {
  display: grid;
  grid-template-columns: 50px 1fr 110px 110px;
  padding: 1.3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.15s;
}
.table-row:hover { background: rgba(0,207,255,0.04); }
.row-rank { font-size: 1.2rem; }
.row-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 500;
  letter-spacing: 0.5px;
}
.row-exactos {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--gold2);
}
.row-pts {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--cyan);
}
.ranking-btns {
  display: flex; gap: 1rem; justify-content: center;
  margin-top: 2.5rem; flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   PLAYER SILHOUETTES SECTION  (scroll-in)
══════════════════════════════════════════ */
.players-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
}

/* Left player */
.player-left {
  position: absolute;
  left: 0; bottom: 0;
  width: clamp(180px, 22vw, 340px);
  transform: translateX(-120%);
  transition: transform 1s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
  z-index: 1;
}
.player-left.visible { transform: translateX(0); }

/* Right player */
.player-right {
  position: absolute;
  right: 0; bottom: 0;
  width: clamp(180px, 22vw, 340px);
  transform: translateX(120%);
  transition: transform 1s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
  z-index: 1;
}
.player-right.visible { transform: translateX(0); }

/* second row players */
.player-left2 {
  position: absolute;
  left: 0; bottom: 0;
  width: clamp(140px, 16vw, 260px);
  transform: translateX(-120%);
  transition: transform 1.1s 0.15s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.player-left2.visible { transform: translateX(90px); }
.player-right2 {
  position: absolute;
  right: 0; bottom: 0;
  width: clamp(140px, 16vw, 260px);
  transform: translateX(120%);
  transition: transform 1.1s 0.15s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.player-right2.visible { transform: translateX(-90px); }

/* SVG Player silhouettes */
.player-svg {
  width: 100%; height: auto;
  display: block;
}

/* Content in the center */
.players-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-section {
  padding: 10rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--navy);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(13,122,62,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(0,207,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-field-lines {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 100vw);
  opacity: 0.05; pointer-events: none;
}
.cta-ball {
  font-size: 4.5rem;
  display: block; margin: 0 auto 2rem;
  animation: float-ball 3s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes float-ball {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(15deg); }
}
.cta-title {
  position: relative; z-index: 1;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; text-transform: uppercase;
  line-height: 0.9; letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.cta-sub {
  position: relative; z-index: 1;
  font-size: 1rem; color: var(--w80);
  margin-bottom: 3rem;
}
.cta-link {
  position: relative; z-index: 1;
  display: block; margin-top: 1.5rem;
  font-size: 0.85rem; color: var(--w50);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-link:hover { color: var(--cyan); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  padding: 1.8rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.8rem; color: var(--w50);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
footer strong { color: var(--w80); }

/* ══════════════════════════════════════════
   SCROLL-REVEAL UTILITY
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal.revealed {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:768px){
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .scoring-grid { grid-template-columns: 1fr; }
  .table-cols, .table-row { grid-template-columns: 40px 1fr 80px 80px; padding: 1rem 1rem; }
  nav { padding: 0 1rem; }
  .nav-links a:not(.btn-nav) { display: none; }

  .players-section { padding: 5rem 1.5rem; }
  .player-left, .player-right { width: clamp(120px, 18vw, 200px); }
  .player-left2, .player-right2 { width: clamp(80px, 12vw, 160px); opacity: 0.3; }
  .player-left2.visible { transform: translateX(40px); }
  .player-right2.visible { transform: translateX(-40px); }
}

@media(max-width:480px){
  .player-left, .player-right { width: 100px; }
  .player-left2, .player-right2 { display: none; }
}

/* ══════════════════════════════════════════
   TEMA CLARO — Landing page
   Paleta idéntica al resto de páginas públicas
══════════════════════════════════════════ */

/* ── Base ──────────────────────────────────────────────────────── */
.theme-light body {
  background: #F4FBF4;
  color: #1A2F1A;
}

/* ── Nav ───────────────────────────────────────────────────────── */
.theme-light nav {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(27,94,32,.18);
}
.theme-light .nav-logo-text          { color: #1A2F1A; }
.theme-light .nav-logo em            { color: #0277BD; }
.theme-light .nav-links a:not(.btn-nav) { color: #4A6A50; }
.theme-light .nav-links a:not(.btn-nav):hover { color: #0277BD; }
.theme-light .nav-burger span        { background: #1A2F1A; }
.theme-light #landingLinks {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(27,94,32,.2);
}
.theme-light #landingLinks a:not(.btn-nav) { color: #1A2F1A; }

/* ── Hero ──────────────────────────────────────────────────────── */
/* Mantiene gradiente oscuro como las demás páginas */
.theme-light .hero { background: #1B5E20; }
.theme-light .hero-field { opacity: .5; }
.theme-light .hero-eyebrow { color: rgba(255,255,255,.8); }
.theme-light .hero-title .l1 { color: #fff; }
.theme-light .hero-sub { color: rgba(255,255,255,.8); }
.theme-light .hero-countdown { background: rgba(0,0,0,.2); }
.theme-light .cd-num  { color: #fff; }
.theme-light .cd-label { color: rgba(255,255,255,.7); }

/* ── Stats bar ─────────────────────────────────────────────────── */
.theme-light .stats-bar {
  background: #fff;
  border-top: 1px solid rgba(27,94,32,.15);
  border-bottom: 1px solid rgba(27,94,32,.15);
}
.theme-light .stat-num        { color: #0277BD; }
.theme-light .stat-num.gold   { color: #C45000; }
.theme-light .stat-label      { color: #4A6A50; }
.theme-light .stats-divider   { background: rgba(27,94,32,.15); }

/* ── Scoring section ───────────────────────────────────────────── */
.theme-light .scoring-section {
  background: #F4FBF4;
}
.theme-light .scoring-section::before {
  background: linear-gradient(90deg, transparent, rgba(27,94,32,.2), transparent);
}
.theme-light .section-tag   { color: #0277BD; border-color: rgba(2,119,189,.3); background: rgba(2,119,189,.06); }
.theme-light .section-title { color: #1A2F1A; }
.theme-light .section-sub   { color: #4A6A50; }

/* Score cards (sistema de puntuación) */
.theme-light .score-card {
  background: #fff;
  border-color: rgba(27,94,32,.18);
  color: #1A2F1A;
}
.theme-light .score-card .watermark { color: rgba(27,94,32,.04); }
.theme-light .score-card.exacto { background: #FFF8F0; border-color: rgba(196,80,0,.3); }
.theme-light .score-card.exacto:hover { border-color: #C45000; }
.theme-light .score-card.exacto .score-pts { color: #C45000; }
.theme-light .score-card.winner { background: #F0FDF4; border-color: rgba(27,124,57,.3); }
.theme-light .score-card.winner:hover { border-color: #1B7C39; }
.theme-light .score-card.winner .score-pts { color: #1B7C39; }
.theme-light .score-card.miss { background: #FAFAFA; border-color: rgba(0,0,0,.08); }
.theme-light .score-card.miss .score-pts { color: rgba(27,47,27,.2); }
.theme-light .score-name { color: #1A2F1A; }
.theme-light .score-desc { color: #4A6A50; }

/* Eliminar overrides incorrectos que usaban .scoring-card (clase inexistente en landing) */
.theme-light .scoring-card { background: #fff; border: 1px solid rgba(27,94,32,.18); color: #1A2F1A; }
.theme-light .scoring-card__pts  { color: #0277BD; }
.theme-light .scoring-card__desc { color: #4A6A50; }
.theme-light .scoring-card--exact  .scoring-card__pts { color: #C45000; }
.theme-light .scoring-card--exact  { border-color: rgba(196,80,0,.25); background: #FFF8F0; }
.theme-light .scoring-card--winner { border-color: rgba(27,124,57,.25); background: #F0FDF4; }
.theme-light .scoring-card--winner .scoring-card__pts { color: #1B7C39; }

/* ── Players section ───────────────────────────────────────────── */
.theme-light .players-section {
  background: linear-gradient(180deg, #E8F5E9 0%, #F4FBF4 100%);
  --w50: rgba(0,0,0,0.50);
}
.theme-light .players-section .section-title { color: #1A2F1A; }
.theme-light .players-section .section-sub   { color: #4A6A50; }

/* ── Leaderboard preview ───────────────────────────────────────── */
.theme-light .ranking-section {
  background: #F4FBF4;
}
.theme-light .lb-section { background: #F4FBF4; }
.theme-light .ranking-table {
  background: #fff;
  border-color: rgba(27,94,32,.18);
}
.theme-light .ranking-head {
  border-bottom-color: rgba(27,94,32,.18);
  background: rgba(27,94,32,.05);
}
.theme-light .ranking-head h3 { color: #1A2F1A; }
.theme-light .table-cols {
  background: rgba(27,94,32,.06);
}
.theme-light .col-lbl { color: #4A6A50; }
.theme-light .table-row {
  border-top-color: rgba(27,94,32,.08);
  color: #1A2F1A;
}
.theme-light .table-row:hover { background: rgba(2,119,189,.05); }
.theme-light .row-name    { color: #1A2F1A; }
.theme-light .row-exactos { color: #C45000; }
.theme-light .row-pts     { color: #0277BD; }
.theme-light .table-header { background: rgba(27,94,32,.08); color: #1A2F1A; border-bottom: 2px solid rgba(27,94,32,.18); }
.theme-light .table-pts  { color: #0277BD; }
.theme-light .table-pos  { color: #4A6A50; }
.theme-light .table-name { color: #1A2F1A; }

/* ── Buttons ───────────────────────────────────────────────────── */
.theme-light .btn-outline {
  color: #1A2F1A;
  border-color: rgba(27,94,32,.45);
}
.theme-light .btn-outline:hover {
  border-color: #0277BD;
  color: #0277BD;
}

/* ── CTA section ───────────────────────────────────────────────── */
.theme-light .cta-section {
  background: linear-gradient(160deg, #1B5E20 0%, #2E7D32 50%, #1565C0 100%);
}
.theme-light .cta-section::before { opacity: 0; }

/* ── Footer ────────────────────────────────────────────────────── */
.theme-light footer {
  background: #fff;
  border-top: 1px solid rgba(27,94,32,.15);
  color: #4A6A50;
}
.theme-light footer strong { color: #1A2F1A; }
.theme-light footer a      { color: #0277BD; }
