/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ===== COLOR TOKENS ===== */
:root {
  --bg:       #07070f;
  --bg2:      #0e0e1c;
  --bg3:      #161628;
  --red:      #CF142B;
  --red-dim:  #8a0e1c;
  --gold:     #F4C430;
  --gold-dim: #a8881f;
  --blue:     #1a3a8f;
  --white:    #F5F0E8;
  --muted:    #5a5870;
  --border:   #1e1e32;
  --tricolor-grad: linear-gradient(90deg, var(--gold) 0%, var(--blue) 50%, var(--red) 100%);
  --tricolor-glow: 0 0 20px rgba(244, 196, 48, 0.2), 0 0 40px rgba(26, 58, 143, 0.2), 0 0 60px rgba(207, 20, 43, 0.2);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: crosshair;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TRICOLOR PARTICLE FIELD ===== */
#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* Content wrapper sits above particles but below noise */
.content-layer {
  position: relative;
  z-index: 1;
}
#particles-bg canvas {
  display: block;
}

/* ===== NOISE OVERLAY ===== */
.noise {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== TRICOLOR BAR ===== */
.tricolor-bar {
  height: 2px;
  width: 100%;
  background: var(--tricolor-grad);
  opacity: 0.8;
}

/* ===== 8-STAR ARCH (Tricolor, prominent) ===== */
.stars-arch {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 50px;
  gap: 8px;
}
.stars-arch svg {
  width: 18px; height: 18px;
  opacity: 1;
  filter: drop-shadow(0 0 6px currentColor);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.stars-arch svg:hover {
  filter: drop-shadow(0 0 12px currentColor);
}
/* All 8 stars in white — like the Venezuelan flag */
.stars-arch svg:nth-child(1) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(0px) rotate(-25deg); }
.stars-arch svg:nth-child(2) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(-10px) rotate(-15deg); }
.stars-arch svg:nth-child(3) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(-18px) rotate(-5deg); }
.stars-arch svg:nth-child(4) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(-22px) rotate(2deg); }
.stars-arch svg:nth-child(5) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(-22px) rotate(-2deg); }
.stars-arch svg:nth-child(6) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(-18px) rotate(5deg); }
.stars-arch svg:nth-child(7) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(-10px) rotate(15deg); }
.stars-arch svg:nth-child(8) { fill: #FFFFFF; color: #FFFFFF; transform: translateY(0px) rotate(25deg); }

/* Subtle pulsing glow animation */
@keyframes starPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.stars-arch svg:nth-child(odd) { animation: starPulse 3s ease-in-out infinite; }
.stars-arch svg:nth-child(even) { animation: starPulse 3s ease-in-out 1.5s infinite; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Bebas Neue', cursive; }
.font-serif   { font-family: 'Libre Baskerville', serif; }
.font-body    { font-family: 'Plus Jakarta Sans', sans-serif; }

.text-muted { color: var(--muted); }
.text-red   { color: var(--red); }
.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue); }

/* ===== LAYOUT ===== */
.section {
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 3rem;
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
}

.section-header .section-title {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: var(--white);
}

.section-header .section-desc {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1rem;
  max-width: 400px;
  margin-top: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-header .section-desc .eng {
  font-size: 0.7em;
  opacity: 0.5;
  display: block;
  margin-top: 4px;
  font-style: normal;
}

/* ===== VEN DIVIDER ===== */
.ven-divider {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}
.ven-divider::before,
.ven-divider span,
.ven-divider::after {
  flex: 1;
}
.ven-divider::before {
  content: '';
  background: var(--red);
}
.ven-divider span {
  background: var(--gold);
}
.ven-divider::after {
  content: '';
  background: var(--blue);
}
/* Simple 3-part divider using only pseudo-elements + background gradient */
.ven-divider {
  background: linear-gradient(to right, var(--red) 0%, var(--red) 33.33%, var(--gold) 33.33%, var(--gold) 66.66%, var(--blue) 66.66%, var(--blue) 100%);
  height: 4px;
  border-radius: 2px;
}

/* ===== STARS BACKGROUND ===== */
.stars-bg {
  position: relative;
}
.stars-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1.5px 1.5px at 10% 15%, var(--gold) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 8%, var(--gold) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 75%, var(--gold) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 60%, var(--gold) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 40%, var(--gold) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 85%, var(--gold) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5% 55%, var(--gold) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 92%, var(--gold) 50%, transparent 100%);
  opacity: 0.3;
  z-index: 0;
}

/* ===== EDITORIAL GRID ===== */
.editorial-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
.editorial-grid > * {
  background: var(--bg2);
}

/* ===== BUTTONS ===== */
.btn-primary {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.75em 2em;
  border-radius: 4px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  box-shadow: 0 0 20px rgba(207, 20, 43, 0.4);
  transform: translateY(-1px);
}

/* ===== FORM FIELDS ===== */
.field {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--bg3);
  color: var(--white);
  border: 1px solid var(--border);
  padding: 0.75em 1em;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.field:focus {
  border-color: var(--gold-dim);
}
.field::placeholder {
  color: var(--muted);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 4px var(--gold), 0 0 12px rgba(244, 196, 48, 0.3); }
  50% { box-shadow: 0 0 8px var(--gold), 0 0 24px rgba(244, 196, 48, 0.5); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes draw-line {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== ANIMATION UTILITIES ===== */
.animate-fadeUp {
  animation: fadeUp 0.8s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ===== HERO (Variant-inspired bottom-aligned) ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  background: rgba(7, 7, 15, 0.55);
}

.hero-reflection {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50vh;
  background-image: url('https://images.pexels.com/photos/159490/baseball-field-stadium-night-lights-159490.jpeg?auto=compress&cs=tinysrgb&w=2000');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.12;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  filter: contrast(1.5) sepia(1) hue-rotate(180deg) saturate(2);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(207,20,43,0.15) 0%, transparent 70%);
  border-radius: 50%;
  will-change: transform;
}

.hero-stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 12% 18%, var(--gold) 50%, transparent 100%),
    radial-gradient(2px 2px at 82% 12%, var(--gold) 50%, transparent 100%),
    radial-gradient(2px 2px at 28% 72%, var(--gold) 50%, transparent 100%),
    radial-gradient(2px 2px at 68% 58%, var(--gold) 50%, transparent 100%),
    radial-gradient(2px 2px at 48% 38%, var(--gold) 50%, transparent 100%),
    radial-gradient(2px 2px at 88% 82%, var(--gold) 50%, transparent 100%),
    radial-gradient(2px 2px at 8% 52%, var(--gold) 50%, transparent 100%),
    radial-gradient(2px 2px at 58% 90%, var(--gold) 50%, transparent 100%);
  opacity: 0.4;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero-divider {
  margin: 0 auto 2rem;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(6rem, 15vw, 18rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 240, 232, 0.15);
}

.hero-word {
  display: block;
  position: relative;
  padding: 0.05em 0;
}

.hero-word--hasta { color: var(--gold); -webkit-text-stroke: 0; }
.hero-word--la { color: var(--blue); -webkit-text-stroke: 0; }
.hero-word--final { color: var(--red); -webkit-text-stroke: 0; }

.hero-word--hasta { text-shadow: 0 0 80px rgba(244, 196, 48, 0.25); }
.hero-word--la { text-shadow: 0 0 60px rgba(26, 58, 143, 0.3); }
.hero-word--final { text-shadow: 0 0 60px rgba(207, 20, 43, 0.35); }

.matchup-badge {
  position: absolute;
  right: 0;
  bottom: 20%;
  text-align: right;
  z-index: 2;
}

.matchup-badge .teams {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--white);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.hero-matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--white);
}

.hero-vs {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.5em;
  color: var(--red);
}

.hero-date {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-top: 0.5rem;
  color: var(--muted);
}

.hero-pill {
  background: var(--red);
  color: var(--white);
  padding: 0.2em 0.75em;
  border-radius: 4px;
  font-size: 0.65em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  margin: 0.5rem auto 0;
  animation: fadeDown 2s ease infinite;
}

/* ===== LA RUTA ===== */
#la-ruta {
  background: var(--bg2);
  position: relative;
  z-index: 10;
}

#la-ruta .section-inner {
  position: relative;
  z-index: 2;
}

.ruta-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}
.ruta-hero img {
  width: 100%;
  height: 40vh;
  min-height: 300px;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.1) saturate(1.1);
  display: block;
}
.ruta-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 14, 28, 0.3) 0%,
    rgba(14, 14, 28, 0.0) 30%,
    rgba(14, 14, 28, 0.0) 60%,
    rgba(14, 14, 28, 0.9) 100%
  );
  pointer-events: none;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 2rem;
  position: relative;
  z-index: 5;
}

@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

.journey-card {
  background: #0e0e1c;
  padding: 2rem;
  border-top: 3px solid var(--red);
  position: relative;
  overflow: hidden;
  z-index: 5;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--tricolor-grad);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.journey-card:hover::before { opacity: 1; }
.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(244, 196, 48, 0.2), 0 0 40px rgba(26, 58, 143, 0.2), 0 0 60px rgba(207, 20, 43, 0.2);
}

.journey-card--final {
  border-top-color: var(--gold);
  background-image: linear-gradient(135deg, transparent 60%, rgba(244, 196, 48, 0.03) 100%);
}

.journey-card__round {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.journey-card__opponent {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.journey-card__score {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.journey-card__status {
  display: inline-block;
  padding: 0.2em 0.7em;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.status--win {
  background: rgba(207, 20, 43, 0.15);
  color: var(--red);
}

.status--live {
  background: rgba(244, 196, 48, 0.15);
  color: var(--gold);
  position: relative;
  padding-left: 1.5em;
}

.status--live::before {
  content: '';
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-gold 2s infinite;
}

.journey-card__highlight {
  margin-top: 0.75rem;
  line-height: 1.5;
}

.journey-card__highlight-es {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--white);
}

.journey-card__highlight-en {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.journey-footer {
  text-align: center;
  padding: 2.5rem 2rem;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.journey-footer .ven-divider {
  width: 60px;
  margin: 1rem auto 0;
}

/* ===== EL LINEUP ===== */
#el-lineup {
  background: var(--bg);
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.player-card {
  perspective: 600px;
  cursor: pointer;
  height: 340px;
}

.player-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.player-card.flipped .player-card__inner {
  transform: rotateY(180deg);
}

@media (hover: hover) {
  .player-card:not(.flipped):hover .player-card__inner {
    transform: translateY(-4px);
  }
  .player-card:not(.flipped):hover {
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  }
}

.player-card__front,
.player-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.player-card__front {
  background: var(--bg3);
  justify-content: flex-end;
}

.player-card__back {
  background: var(--bg3);
  transform: rotateY(180deg);
  justify-content: center;
}

.player-card__position {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.player-card__number {
  position: absolute;
  right: 0.75rem;
  top: 0.25rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 6rem;
  opacity: 0.06;
  color: var(--white);
  line-height: 1;
  pointer-events: none;
}

.player-card__name {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.player-card__team {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.player-card__stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

[data-accent="red"] .player-card__stat   { color: var(--red); }
[data-accent="gold"] .player-card__stat  { color: var(--gold); }
[data-accent="blue"] .player-card__stat  { color: var(--blue); }

[data-accent="red"] .player-card__front  { border-top: 3px solid var(--red-dim); }
[data-accent="gold"] .player-card__front { border-top: 3px solid var(--gold-dim); }
[data-accent="blue"] .player-card__front { border-top: 3px solid var(--blue); }

.player-card__nickname {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.player-card__desc-es {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.player-card__desc-en {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.player-card__cue {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: auto;
}

.lineup-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 3.5rem;
  max-width: 640px;
}

.lineup-quote p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: var(--white);
}

.lineup-quote__en {
  color: var(--muted) !important;
  font-style: normal !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.9rem !important;
  margin-top: 0.5rem;
}

.lineup-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
}

/* ===== LA DIASPORA — GLOBE ===== */
#la-diaspora {
  background: var(--bg2);
}

#globe-container {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

#globe-container > div {
  width: 100% !important;
  height: 100% !important;
}

#globe-container canvas {
  display: block;
}

.globe-counter {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.globe-counter__number {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  line-height: 1;
}

.globe-counter__label {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.globe-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin-top: 0.5rem;
}

.globe-tooltip {
  position: fixed;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s;
}

.globe-tooltip.visible {
  opacity: 1;
}

.globe-tooltip__city {
  font-weight: 600;
  color: var(--gold);
}

.globe-tooltip__pop {
  color: var(--muted);
  font-size: 0.75rem;
}

/* ===== VOCES ===== */
#voces {
  background: var(--bg);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.voces-heading {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  margin-bottom: 2rem;
}

.voces-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.tweet-card {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  padding: 1.5rem;
  border-left: 1px solid var(--muted);
  border-radius: 0;
  max-width: 550px;
  transition: all 0.4s ease;
}

.tweet-card:nth-child(even) {
  align-self: flex-end;
  border-left: none;
  border-right: 1px solid var(--blue);
  text-align: right;
  background: linear-gradient(-90deg, rgba(26,58,143,0.1) 0%, transparent 100%);
}

.tweet-card:nth-child(even) .tweet-card__header {
  flex-direction: row-reverse;
}

.tweet-card:nth-child(even) .tweet-card__handle {
  margin-left: 0;
  margin-right: 0.5rem;
}

.tweet-card:nth-child(even) .tweet-card__identity {
  text-align: right;
}

.tweet-card:nth-child(even) .tweet-card__footer {
  text-align: right;
}

.tweet-card--hero {
  max-width: 100%;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(244, 196, 48, 0.05) 0%, transparent 100%);
}

.tweet-card--hero .tweet-card__text {
  font-size: 1.25rem;
}

.tweet-card__meta {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tweet-card__km {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tweet-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.tweet-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.tweet-card__avatar-placeholder,
.tweet-card__avatar--placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
}

.tweet-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.tweet-card__handle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.5rem;
}

.tweet-card__text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.7;
}

.tweet-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  transition: color 0.2s;
}

.tweet-card__link:hover {
  color: var(--gold);
}

.voces-disclaimer {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== EL LATIDO TIMELINE ===== */
#el-latido {
  background: var(--bg2);
  overflow: hidden;
  position: relative;
  z-index: 20;
}

.latido-heading {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.latido-track-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.latido-track {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2rem 3rem;
}

/* Tricolor gradient line — centered */
.latido-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--blue) 50%, var(--red) 100%);
  height: 0;
  z-index: 0;
}

/* --- Zigzag: odd left, even right --- */
.latido-moment {
  width: 45%;
  padding: 2rem 0 3rem 0;
  position: relative;
  z-index: 1;
}

/* nth-child offset: .latido-line is child 1, so moments start at child 2.
   child(even) = moments 1,3,5,7,9 (LEFT side)
   child(odd)  = moments 2,4,6,8   (RIGHT side) */
.latido-moment:nth-child(even) {
  margin-right: auto;
  text-align: left;
  padding-right: 0;
}

.latido-moment:nth-child(odd) {
  margin-left: auto;
  text-align: right;
  padding-left: 0;
}

.latido-moment--hero {
  padding-bottom: 4rem;
}

/* Dots — positioned toward the center line */
.latido-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 2.2rem;
  z-index: 2;
}

.latido-moment:nth-child(even) .latido-dot {
  right: -3.5rem;
  left: auto;
}

.latido-moment:nth-child(odd) .latido-dot {
  left: -3.5rem;
  right: auto;
}

[data-accent="red"] .latido-dot   { background: var(--red); }
[data-accent="gold"] .latido-dot  { background: var(--gold); }
[data-accent="blue"] .latido-dot  { background: var(--blue); }

.latido-moment--tonight .latido-dot {
  animation: pulse-gold 2s infinite;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(244, 196, 48, 0.5);
  width: 24px;
  height: 24px;
}

.latido-moment--tonight:nth-child(even) .latido-dot {
  right: calc(-3.5rem - 4px);
}
.latido-moment--tonight:nth-child(odd) .latido-dot {
  left: calc(-3.5rem - 4px);
}

/* Title */
.latido-moment__title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.latido-moment--hero .latido-moment__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
}

.latido-moment--tonight .latido-moment__title {
  color: var(--gold);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

/* Score badges */
.latido-moment__score {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin: 0.5rem 0;
}

/* Photo thumbnails */
.latido-moment__photo {
  width: 100%;
  max-width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin: 1rem 0;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.latido-moment__photo:hover {
  filter: grayscale(0%) contrast(1.0);
}

/* Odd (right-side) moments: align photo right */
.latido-moment:nth-child(odd) .latido-moment__photo {
  margin-left: auto;
  display: block;
}

/* Wide photo for championship moment */
.latido-moment__photo--wide {
  max-width: 100%;
  height: 200px;
}

/* Text */
.latido-moment__es {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.latido-moment__en {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ===== CLOSING — CHAMPIONSHIP HERO ===== */
.closing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--bg2) 0%, #000 100%);
  padding: 6rem 2rem;
}

.closing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(30%) contrast(1.2);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.closing__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.closing__title {
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}

.closing__title-line {
  display: block;
}

.closing__title-line--gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(244, 196, 48, 0.4), 0 0 120px rgba(244, 196, 48, 0.2);
}

.closing__title-line--white {
  color: var(--white);
  font-size: 0.6em;
  letter-spacing: 0.15em;
}

.closing__score {
  font-size: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.closing__score-num {
  font-size: 1.3em;
}

.closing__score-dash {
  color: var(--muted);
  font-size: 0.6em;
}

.closing__emotion {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--white);
  max-width: 600px;
}

.closing__emotion .eng {
  display: block;
  font-size: 0.8em;
  color: var(--muted);
  font-style: normal;
  margin-top: 0.25rem;
}

.closing__siempre {
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.8;
  margin: 1rem 0;
}

.closing__credits {
  font-family: 'Bebas Neue', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
  margin: 2rem 0 1rem;
}

.closing__credits strong {
  color: var(--white);
  font-weight: normal;
}

.closing__marks {
  display: flex;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  margin-top: 1rem;
}

.closing__photo-credits {
  font-size: 0.55rem;
  color: var(--muted);
  opacity: 0.3;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

/* Closing — mobile responsive */
@media (max-width: 640px) {
  .closing__marks {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== PHOTO EDITORIAL TREATMENT ===== */
.photo-editorial {
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.6s ease;
}
.photo-editorial:hover {
  filter: grayscale(0%) contrast(1.0);
}

/* ===== HERO PHOTO (Abreu HR) ===== */
.hero-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 60vh;
  background-image: url('../images/movingontofinals.jpeg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.13;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  filter: grayscale(40%) contrast(1.4) sepia(0.2) hue-rotate(200deg);
  z-index: 0;
  pointer-events: none;
}

/* ===== JOURNEY CARD HOVER BACKGROUNDS ===== */
.journey-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.journey-card:hover .journey-card__bg {
  opacity: 0.12;
}

.journey-card__round,
.journey-card__opponent,
.journey-card__score,
.journey-card__status,
.journey-card__highlight {
  position: relative;
  z-index: 1;
}

/* ===== CINEMATIC PHOTO DIVIDER ===== */
.cinematic-divider {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  z-index: 2;
}

.cinematic-divider__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.cinematic-divider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg2) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.cinematic-divider__quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.cinematic-divider__quote p:first-child {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--white);
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  max-width: 700px;
}

.cinematic-divider__en {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-style: normal !important;
  font-size: clamp(0.8rem, 1.5vw, 1rem) !important;
  color: var(--muted) !important;
  margin-top: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

/* ===== PLAYER CARD PHOTOS ===== */
.player-card__photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  border-radius: 8px;
  filter: grayscale(40%) contrast(1.1);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.player-card__front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg3) 10%, rgba(22, 22, 40, 0.6) 50%, transparent 100%);
  z-index: 0;
  pointer-events: none;
  border-radius: 8px;
}

.player-card:hover .player-card__photo {
  opacity: 0.35;
  filter: grayscale(0%) contrast(1.1);
}

/* Ensure front content sits above photo + gradient */
.player-card__front .player-card__position,
.player-card__front .player-card__number,
.player-card__front .player-card__name,
.player-card__front .player-card__team,
.player-card__front .player-card__stat {
  position: relative;
  z-index: 1;
}

/* ===== BULLPEN & COACHING STAFF ===== */
.bullpen-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.bullpen-label {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.bullpen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.bullpen-card {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  cursor: default;
}

.bullpen-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.bullpen-card:hover .bullpen-card__photo {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.03);
}

.bullpen-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 15, 0.92) 15%, rgba(7, 7, 15, 0.3) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.bullpen-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  z-index: 2;
}

.bullpen-card__name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.1;
}

.bullpen-card__role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

@media (max-width: 640px) {
  .bullpen-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
  }
  .bullpen-card {
    height: 170px;
  }
}

/* ===== VOCES BACKGROUND PHOTO ===== */
#voces {
  position: relative;
}

.voces-bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  filter: grayscale(40%) contrast(1.2);
  pointer-events: none;
  z-index: 0;
}

#voces .section-inner {
  position: relative;
  z-index: 1;
}

/* ===== PHOTO CREDITS ===== */
.photo-credits {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.4;
  margin-top: 1.5rem;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .section-inner {
    padding: 3rem 1.25rem;
  }

  #hero { padding: 2rem; }
  .hero-title { font-size: clamp(4rem, 18vw, 6rem); }
  .matchup-badge {
    position: relative;
    bottom: auto;
    text-align: left;
    margin-top: 2rem;
  }
  .hero-meta { flex-direction: column; gap: 0.5rem; align-items: flex-start; }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .player-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .player-card {
    height: 300px;
  }

  .tweet-card { max-width: 100% !important; }
  .tweet-card:nth-child(even) {
    align-self: flex-start;
    border-left: 1px solid var(--muted);
    border-right: none;
    text-align: left;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  }

  .latido-track {
    flex-direction: column;
    width: 100%;
    padding: 2rem 1.25rem 2rem 2.5rem;
  }

  .latido-moment,
  .latido-moment:nth-child(odd),
  .latido-moment:nth-child(even),
  .latido-moment--hero {
    flex: none;
    width: 100% !important;
    text-align: left !important;
    padding-left: 2rem;
    padding-right: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .latido-line {
    width: 2px !important;
    top: 0;
    left: 8px !important;
    transform: none !important;
  }

  .latido-moment .latido-dot,
  .latido-moment:nth-child(odd) .latido-dot,
  .latido-moment:nth-child(even) .latido-dot {
    left: -2rem !important;
    right: auto !important;
    transform: none !important;
  }

  .latido-moment:nth-child(odd) .latido-moment__photo {
    margin-left: 0;
  }

  .latido-moment--champion .latido-moment__photo {
    margin-left: 0 !important;
  }

  .latido-moment--champion .latido-dot {
    left: -2rem !important;
    transform: none !important;
  }

  .latido-moment__tricolor-bar {
    margin: 0 0 1rem;
  }

  .hero-matchup {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cinematic-divider__img {
    background-attachment: scroll;
  }
}

/* ==========================================================================
   CHAMPIONSHIP CELEBRATION STYLES
   ========================================================================== */

/* Hero — Champion pill badge */
.champion-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #e6b800 50%, var(--gold) 100%);
  color: var(--bg);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(244, 196, 48, 0.4), 0 0 60px rgba(244, 196, 48, 0.15);
  animation: champion-glow 3s ease-in-out infinite;
}

.hero-score {
  color: var(--gold);
  font-size: 1.2em;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(244, 196, 48, 0.5);
}

.matchup-badge--champion .teams {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.matchup-badge--champion .hero-vs {
  display: none;
}

@keyframes champion-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(244, 196, 48, 0.4), 0 0 60px rgba(244, 196, 48, 0.15); }
  50% { box-shadow: 0 0 50px rgba(244, 196, 48, 0.6), 0 0 100px rgba(244, 196, 48, 0.25); }
}

/* La Ruta — Championship final card */
.journey-card--champion {
  border-top-color: var(--gold);
  background-image:
    linear-gradient(135deg, rgba(244, 196, 48, 0.08) 0%, transparent 40%, rgba(244, 196, 48, 0.05) 100%);
  box-shadow: 0 0 40px rgba(244, 196, 48, 0.15), inset 0 1px 0 rgba(244, 196, 48, 0.2);
}

.journey-card--champion::before {
  opacity: 1 !important;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.1) 0%, transparent 100%);
}

.journey-card__score--gold {
  color: var(--gold) !important;
  font-size: 2.5rem !important;
  text-shadow: 0 0 20px rgba(244, 196, 48, 0.4);
}

.status--champion {
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.25) 0%, rgba(244, 196, 48, 0.1) 100%) !important;
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid rgba(244, 196, 48, 0.3);
}

/* El Latido — Championship moment (last beat — breaks out full width) */
.latido-moment--champion {
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative;
}

.latido-moment__tricolor-bar {
  width: 120px;
  height: 3px;
  background: var(--tricolor-grad);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.latido-moment--champion .latido-moment__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  color: var(--gold) !important;
  text-shadow: 0 0 40px rgba(244, 196, 48, 0.5), 0 0 80px rgba(244, 196, 48, 0.2);
  line-height: 1.1;
}

.latido-moment--champion .latido-moment__date {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.latido-moment--champion .latido-moment__es {
  font-size: 1.15rem;
  color: var(--white);
}

.latido-moment--champion .latido-moment__en {
  color: rgba(245, 240, 232, 0.7);
}

.latido-moment--champion .latido-moment__photo {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.latido-moment--champion .latido-dot {
  width: 32px !important;
  height: 32px !important;
  background: var(--gold) !important;
  box-shadow: 0 0 30px rgba(244, 196, 48, 0.6), 0 0 60px rgba(244, 196, 48, 0.3) !important;
  animation: pulse-gold 2s infinite !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
}

/* ===== GOLD SHIMMER — CAMPEONES TEXT ===== */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.closing__title-line--gold,
.victory-shimmer {
  background: linear-gradient(90deg, #F4C430 0%, #FFE066 25%, #F4C430 50%, #FFE066 75%, #F4C430 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}
