:root {
  --navy: #030f2b;
  --navy-mid: #041B4D;
  --navy-light: #0a2660;
  --gold: #D4A62A;
  --gold-light: #F0C84A;
  --gold-dim: rgba(212, 166, 42, 0.15);
  --gold-glow: rgba(212, 166, 42, 0.35);
  --white: #f0f4ff;
  --white-dim: rgba(240, 244, 255, 0.6);
  --white-faint: rgba(240, 244, 255, 0.12);
  --glass: rgba(4, 27, 77, 0.55);
  --glass-border: rgba(212, 166, 42, 0.18);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s;
  mix-blend-mode: normal;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.14s ease, top 0.14s ease, width 0.2s, height 0.2s;
  opacity: 0.5;
}

/* ── STAR PARTICLES CANVAS ── */
#starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 15, 43, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s, transform 0.3s ease-in-out;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 0 16px var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 15, 43, 0.97);
  backdrop-filter: blur(20px);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ── SECTION BASE ── */
section {
  position: relative;
  z-index: 1;
}

/* ── HERO ── */
#hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 60%, rgba(4, 27, 77, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 30% 20%, rgba(212, 166, 42, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212, 166, 42, 0.05) 0%, transparent 60%);
}

.hero-glow-ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212, 166, 42, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-glow-ring:nth-child(2) {
  width: 800px;
  height: 800px;
  animation-delay: 1s;
  border-color: rgba(212, 166, 42, 0.04);
}

.hero-glow-ring:nth-child(3) {
  width: 1000px;
  height: 1000px;
  animation-delay: 2s;
  border-color: rgba(212, 166, 42, 0.025);
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 166, 42, 0.08);
  border: 1px solid rgba(212, 166, 42, 0.25);
  padding: 7px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-logo-img {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  margin: 0 auto 16px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(212, 166, 42, 0.5)) drop-shadow(0 0 80px rgba(212, 166, 42, 0.2));
  animation: fadeUp 0.9s 0.1s ease both, trophyFloat 6s 1.2s ease-in-out infinite;
}

@keyframes trophyFloat {

  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 40px rgba(212, 166, 42, 0.5)) drop-shadow(0 0 80px rgba(212, 166, 42, 0.2));
  }

  50% {
    transform: translateY(-12px);
    filter: drop-shadow(0 0 60px rgba(212, 166, 42, 0.7)) drop-shadow(0 0 120px rgba(212, 166, 42, 0.3));
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--white);
  animation: fadeUp 0.9s 0.3s ease both;
  position: relative;
}

.hero-title .gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212, 166, 42, 0.6);
}

.hero-subtitle {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 16px;
  animation: fadeUp 0.9s 0.45s ease both;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
  animation: fadeUp 0.9s 0.55s ease both;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 14px 44px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
  animation: fadeUp 0.9s 0.65s ease both;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.hero-btn:hover {
  box-shadow: 0 0 40px rgba(212, 166, 42, 0.5), 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.hero-btn:hover::before {
  transform: translateX(100%);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: fadeUp 1s 1s ease both;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION LABEL ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.8;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.section-title .gold {
  color: var(--gold);
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 14px auto 0;
}

/* ── WRAPPER ── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── RESULTADOS ── */
#resultados {
  padding: 110px 0 80px;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(4, 27, 77, 0.3) 100%);
}

.jornada-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.jornada-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--white-dim);
  padding: 8px 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
}

.jornada-btn:hover,
.jornada-btn.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 166, 42, 0.15);
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.match-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 166, 42, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 166, 42, 0.07);
}

.match-card:hover::before {
  opacity: 1;
}

.match-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.match-jornada {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.match-status {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #2ecc71;
}

.match-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.match-team {
  text-align: center;
}

.team-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 10px;
  transition: all 0.3s;
}

.match-card:hover .team-badge {
  border-color: rgba(212, 166, 42, 0.4);
}

.team-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.3;
}

.match-score {
  text-align: center;
}

.score-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 166, 42, 0.4);
  letter-spacing: 4px;
  line-height: 1;
}

.score-dash {
  color: var(--white-faint);
  font-size: 1.4rem;
}

.match-date {
  font-size: 0.62rem;
  color: var(--white-dim);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 18px;
}

/* ── TABLA ── */
#posiciones {
  padding: 100px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(4, 27, 77, 0.6) 0%, transparent 100%);
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.standings-table thead th {
  padding: 16px 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}

.standings-table thead th:nth-child(2) {
  text-align: left;
}

.standings-table tbody tr {
  transition: background 0.2s;
  border-bottom: 1px solid rgba(240, 244, 255, 0.04);
}

.standings-table tbody tr:hover {
  background: rgba(212, 166, 42, 0.04);
}

.standings-table tbody tr:last-child {
  border-bottom: none;
}

.standings-table tbody td {
  padding: 16px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  color: var(--white-dim);
}

.standings-table tbody td:nth-child(2) {
  text-align: left;
}

.pos-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.pos-1 {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.pos-2 {
  background: rgba(192, 192, 192, 0.15);
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: #c0c0c0;
}

.pos-3 {
  background: rgba(205, 127, 50, 0.15);
  border: 1px solid rgba(205, 127, 50, 0.3);
  color: #cd7f32;
}

.pos-other {
  background: rgba(240, 244, 255, 0.05);
  color: var(--white-dim);
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-cell-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.team-cell-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
}

.pts-cell {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
}

.top3 {
  background: rgba(212, 166, 42, 0.03);
}

/* ── GALERÍA ── */
#galeria {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 27, 77, 0.3) 50%, transparent 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:nth-child(1) {
  grid-column: 1/6;
  grid-row: 1/3;
}

.gallery-item:nth-child(2) {
  grid-column: 6/9;
  grid-row: 1/2;
}

.gallery-item:nth-child(3) {
  grid-column: 9/13;
  grid-row: 1/2;
}

.gallery-item:nth-child(4) {
  grid-column: 6/9;
  grid-row: 2/3;
}

.gallery-item:nth-child(5) {
  grid-column: 9/13;
  grid-row: 2/3;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(4, 27, 77, 0.8), rgba(3, 15, 43, 0.95));
}

.gallery-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.gallery-caption {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.7;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 166, 42, 0.12);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.gallery-overlay span {
  font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover {
  border-color: rgba(212, 166, 42, 0.4);
}

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(3, 15, 43, 0.96);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: 700px;
  width: 90%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white-dim);
  transition: color 0.2s;
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-emoji {
  font-size: 5rem;
  margin-bottom: 20px;
  display: block;
}

.lightbox-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}

.lightbox-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ── CAMPEÓN ── */
#campeon {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.champion-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212, 166, 42, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(4, 27, 77, 0.5) 0%, transparent 70%);
}

.champion-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.champion-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.champion-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
  display: block;
}

.champion-trophy {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 50px rgba(212, 166, 42, 0.7)) drop-shadow(0 0 100px rgba(212, 166, 42, 0.3));
  animation: trophyFloat 5s ease-in-out infinite;
  display: block;
}

.champion-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.champion-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(212, 166, 42, 0.5), 0 0 100px rgba(212, 166, 42, 0.25);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 32px;
}

.champion-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.champion-stat {
  text-align: center;
  padding: 20px 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  min-width: 120px;
}

.champion-stat-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.champion-stat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.7;
}

.mvp-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 20px 32px;
  backdrop-filter: blur(12px);
}

.mvp-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
  display: inline-block;
}

.mvp-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.mvp-info {}

.mvp-title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 4px;
}

.mvp-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.mvp-pos {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
}

/* ── FLOATING PARTICLES for champion ── */
@keyframes particleFly {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-200px) translateX(var(--dx)) scale(0);
    opacity: 0;
  }
}

.cp {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFly 3s ease-out infinite;
}

/* ── FOOTER ── */
footer {
  background: rgba(3, 15, 43, 0.95);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(4, 27, 77, 0.8);
  border: 1px solid rgba(212, 166, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.social-btn:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 166, 42, 0.2);
}

.footer-divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-tagline {
  font-style: normal;
  color: var(--white-dim);
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.footer-tagline em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(240, 244, 255, 0.4);
  letter-spacing: 1px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  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:900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-logo-img {
    width: clamp(140px, 40vw, 200px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    grid-column: unset !important;
    grid-row: unset !important;
    height: 200px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-links,
  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .matches-grid {
    grid-template-columns: 1fr;
  }

  .champion-stats {
    gap: 16px;
  }

  .champion-stat {
    padding: 16px 20px;
    min-width: 90px;
  }

  .mvp-card {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 180px;
  }

  .champion-name {
    font-size: clamp(1.8rem, 12vw, 3rem);
  }
}