/* =========================
  Yambito-Blanco-Theme-by-Alveny
  Cinematic Boxer Dark System
  (Production-ready, responsive)
  ========================= */

:root {
  --bg: #0E0E10;
  --bg2: #141417;
  --surface: #18181B;
  --surface2: #111114;
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, .72);
  --muted2: rgba(255, 255, 255, .58);
  --red: #E10600;
  --redHover: #FF1F1F;
  --gold: #D6B25E;
  --accentBlue: #4F6CAD;
  --border: rgba(255, 255, 255, 0.10);
  --border2: rgba(255, 255, 255, 0.06);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease2: cubic-bezier(.16, 1, .3, 1);
  --shadowSoft: 0 10px 30px rgba(0, 0, 0, .42);
  --shadowHard: 0 20px 70px rgba(0, 0, 0, .62);
  --max: 1200px;
  --radius: 22px;

  --space-1: 8px;
}

* {
  box-sizing: border-box
}

html,
body {
  min-height: 100%;
  overflow-x: hidden
}

html {
  color-scheme: dark;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(225, 6, 0, .14), transparent 62%),
    radial-gradient(900px 520px at 90% 10%, rgba(214, 178, 94, .10), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, #0B0B0D 60%, #08080A 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: clamp(15.5px, 1.1vw, 17px);
  line-height: 1.68;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Lock scrolling (used by drawer and modal) */
.no-scroll {
  overflow: hidden !important;
  touch-action: none
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .22s var(--ease), text-shadow .22s var(--ease)
}

button {
  font: inherit
}

/* Focus visible */
:focus-visible {
  outline: 2px solid rgba(79, 108, 173, .85);
  outline-offset: 3px;
}

/* Smooth scrolling (disabled for reduced motion) */
html {
  scroll-behavior: smooth
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Container */
.container {
  width: min(var(--max), calc(100% - 2*clamp(18px, 4vw, 34px)));
  margin-inline: auto;
}

/* Skip link */
.skipLink {
  position: absolute;
  left: -9999px;
  z-index: 9999;
}

.skipLink:focus {
  left: 14px
}

/* ---------- Ambient overlays ---------- */
.grain {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  opacity: .10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  transform: translateZ(0);
  mix-blend-mode: overlay;
}

/* Progress bar */
.scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  /* Ensure it's above topbar (100) */
  background: rgba(255, 255, 255, .06);
}

.scrollProgress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(225, 6, 0, .95), rgba(214, 178, 94, .95));
  box-shadow: 0 0 18px rgba(225, 6, 0, .30);
  position: relative;
}

/* The burning fuse tip */
.scrollProgress__bar::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 10px 4px rgba(255, 255, 255, 1),
    0 0 20px 8px rgba(214, 178, 94, 0.8),
    0 0 30px 12px rgba(225, 6, 0, 0.6);
  z-index: 201;
}

/* ---------- Topbar / Nav (Vertical Glass Dock) ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  /* Full height container */
  width: auto;
  z-index: 100;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center pill vertically */
  padding: 0 0 0 20px;
  /* Left offset */
}

/* Scrolled State: The Floating Pill */
.topbar.is-scrolled {
  top: 0;
  /* Maintain padding/layout to prevent jumping */
  padding: 0 0 0 20px;
  pointer-events: auto;
}

.topbar__inner {
  display: flex;
  flex-direction: column;
  /* Stack vertically */
  align-items: center;
  gap: 30px;
  width: fit-content;
  padding: 30px 14px;
  /* Taller padding */
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  pointer-events: auto;

  /* Glass Dock Style */
  background: transparent;
  backdrop-filter: none;
  border: 1px solid transparent;
}

.topbar.is-scrolled .topbar__inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  box-shadow: none;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Rotate logo or keep upright? Upright is safer for readability of small marks. */
.brand__logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .5));
  transition: transform 0.3s var(--ease);
}

.topbar.is-scrolled .brand__logo {
  transform: scale(0.9);
}

.nav {
  display: flex;
  flex-direction: column;
  /* Vertical links */
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.nav a {
  font-size: 13px;
  letter-spacing: .05em;
  font-weight: 500;
  text-transform: uppercase;
  color: #aaa;
  position: relative;

  /* Vertical Text */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 16px 8px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);

  /* Spotlight Glow Base */
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  background-size: 0% 0%;
  /* Hidden by default */
  background-position: 50% 50%;
  background-repeat: no-repeat;

  /* Stagger Animation Base */
  animation: navFadeIn 0.6s var(--ease) backwards;
}

.nav__home {
  writing-mode: initial !important;
  text-orientation: initial !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px !important;
  border-radius: 50%;
  color: rgba(255, 255, 255, .7);
  transition: all 0.3s var(--ease);
}

.nav__home:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.nav__home.is-active {
  color: #fff;
  background: rgba(225, 6, 0, .32);
  box-shadow: 0 8px 24px rgba(225, 6, 0, .24);
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav a.is-active {
  color: #fff !important;
  /* White text for contrast on red */
  background: rgba(225, 6, 0, .32) !important;
  /* Match .pill--red:hover */
  border-color: rgba(225, 6, 0, .72) !important;
  box-shadow: 0 8px 24px rgba(225, 6, 0, .24);
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: var(--shadowSoft);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn:visited,
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none !important;
}

.btn__icon {
  display: inline-block;
  transform: translateY(1px);
  transition: transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadowHard);
  text-shadow: 0 0 8px rgba(0, 0, 0, .3)
}

.btn:hover .btn__icon {
  transform: translateY(1px) translateX(3px)
}

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  border-color: rgba(214, 178, 94, .28);
  box-shadow: 0 0 20px rgba(225, 6, 0, .3), var(--shadowSoft);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--redHover) 0%, var(--gold) 100%);
  box-shadow: 0 0 30px rgba(225, 6, 0, .6), var(--shadowHard);
  color: #0A0A0C;
}

/* Final-touch: make the header CTA a solid gold for stronger contrast in the topbar */
.topbar .btn--primary {
  background-image: none !important;
  background: #E10600;
  color: #ffffff;
  border-color: rgba(0, 0, 0, .12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.topbar .btn--primary:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}



/* Button variants */
.btn--secondary {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, .10)
}

/* Mobile Touch Feedback */
.btn:active,
.card:active,
.recordCard:active,
.videoCard:active,
.panel:active,
.drawer__link:active {
  transform: scale(0.97) !important;
  transition: transform 0.1s var(--ease);
}

/* Modern Burger Animation */
.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  z-index: 200;
  /* Above drawer */
  transition: all 0.3s var(--ease);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 9px;
  transition: transform .35s var(--ease), opacity .35s var(--ease), width .35s var(--ease);
  transform-origin: center;
}

/* Burger Active State */
.burger[aria-expanded="true"] {
  background: rgba(225, 6, 0, .2) !important;
  border-color: rgba(225, 6, 0, .4);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, .15);
}

/* Language Toggle (Desktop) */
.lang-toggle {
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: auto;
  /* Push to bottom */
  margin-bottom: 20px;
  /* Spacing from edge */
}

.lang-toggle:hover {
  background: rgba(214, 178, 94, 0.1);
  border-color: rgba(214, 178, 94, 0.4);
  box-shadow: 0 0 15px rgba(214, 178, 94, 0.15);
  transform: translateY(-2px);
  color: #fff;
}

/* Language Toggle Mobile Positioning */
@media (max-width: 980px) {
  #langToggle {
    display: flex !important;
    /* Force show */
    position: fixed;
    top: 24px;
    right: 24px;
    /* Top-Right as requested */
    z-index: 202;
    /* Above burger (200) and drawer (150) */
    background: rgba(16, 16, 18, 0.85);
    /* Match burger style */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  /* Adjust burger position to not conflict */
  /* The burger is bottom-right, so top-right is free! */

  /* Hide the drawer toggle since we have the fixed one */
  .lang-toggle--drawer {
    display: none !important;
  }
}

.lang-toggle--drawer {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, .9);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

/* Full Screen Modern Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 8, .6);
  /* Dark base */
  backdrop-filter: blur(24px);
  /* Heavy blur */
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__inner {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vh;
  padding: 20px;
  /* Reset transform from previous implementation */
  transform: translateY(20px);
  transition: transform .5s var(--ease2);
  background: transparent;
  border: none;
  backdrop-filter: none;
}

.drawer.is-open .drawer__inner {
  transform: translateY(0);
}

/* Staggered Link Animation */
.drawer__link {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vh, 48px);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  /* Dim initial state */
  text-decoration: none;
  transition: color .3s, transform .3s;
  padding: 4px 0;
  /* Initial hidden state for delay anim */
  opacity: 0;
  transform: translateY(20px);
}

.drawer.is-open .drawer__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}

/* Stagger delays */
.drawer.is-open .drawer__link:nth-child(1) {
  transition-delay: 0.1s;
}

.drawer.is-open .drawer__link:nth-child(2) {
  transition-delay: 0.15s;
}

.drawer.is-open .drawer__link:nth-child(3) {
  transition-delay: 0.2s;
}

.drawer.is-open .drawer__link:nth-child(4) {
  transition-delay: 0.25s;
}

.drawer.is-open .drawer__link:nth-child(5) {
  transition-delay: 0.3s;
}

.drawer.is-open .drawer__link:nth-child(6) {
  transition-delay: 0.35s;
}

.drawer.is-open .drawer__link:nth-child(7) {
  transition-delay: 0.4s;
}

.drawer.is-open .drawer__link:nth-child(8) {
  transition-delay: 0.45s;
}

.drawer.is-open .lang-toggle--drawer {
  transition-delay: 0.5s;
}

.drawer__link:hover,
.drawer__link:focus {
  color: var(--gold);
  /* Highlight on hover */
  transform: scale(1.05);
}

.drawer__link.is-active {
  color: #fff;
}

.drawer__cta {
  /* Hide specific CTAs in mobile menu if desired, or style as buttons */
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: auto;
  min-height: 80vh;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}



.hero__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center 35%;
  z-index: -2;
  filter: contrast(1.08) saturate(1.04) brightness(.78);
  transform: scale(1.06) translateZ(0);
  will-change: transform;
  /* initial zoom then stronger floating pan */
  -webkit-animation: heroZoom 2.4s var(--ease) forwards, heroFloat 20s cubic-bezier(.22, 1, .36, 1) 0.8s infinite alternate !important;
  animation: heroZoom 2.4s var(--ease) forwards, heroFloat 20s cubic-bezier(.22, 1, .36, 1) 0.8s infinite alternate !important;
  animation-play-state: running !important;
  -webkit-animation-play-state: running !important;
}

/* Particle canvas */
.hero__particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Glow effect */
.hero__glow--top {
  position: fixed;
  top: 0;
  left: 50%;
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(225, 6, 0, 0.25) 0%, transparent 70%);
  transform: translate(-50%, -30%);
  z-index: -1;
  filter: blur(60px);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

/* Stronger specificity class used to (re)trigger the animation when needed */
.hero__bg.is-animated {
  -webkit-animation: heroZoom 2.4s var(--ease) forwards, heroFloat 20s cubic-bezier(.22, 1, .36, 1) 0.8s infinite alternate !important;
  animation: heroZoom 2.4s var(--ease) forwards, heroFloat 20s cubic-bezier(.22, 1, .36, 1) 0.8s infinite alternate !important;
  animation-play-state: running !important;
  -webkit-animation-play-state: running !important;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06)
  }

  to {
    transform: scale(1.08)
  }
}

@-webkit-keyframes heroZoom {
  from {
    transform: scale(1.06)
  }

  to {
    transform: scale(1.18)
  }
}

@keyframes heroFloat {
  0% {
    transform: scale(1.08) translateY(0) translateX(0) rotate(0deg)
  }

  25% {
    transform: scale(1.085) translateY(-0.5%) translateX(-0.15%) rotate(-0.04deg)
  }

  50% {
    transform: scale(1.09) translateY(-1%) translateX(0.3%) rotate(0.08deg)
  }

  75% {
    transform: scale(1.085) translateY(-0.5%) translateX(-0.12%) rotate(-0.03deg)
  }

  100% {
    transform: scale(1.08) translateY(0) translateX(0) rotate(0deg)
  }
}

@-webkit-keyframes heroFloat {
  0% {
    transform: scale(1.18) translateY(0) translateX(0) rotate(0deg)
  }

  20% {
    transform: scale(1.20) translateY(-1.8%) translateX(-0.6%) rotate(-0.18deg)
  }

  50% {
    transform: scale(1.24) translateY(-4%) translateX(1.2%) rotate(0.28deg)
  }

  80% {
    transform: scale(1.21) translateY(-2%) translateX(-0.4%) rotate(-0.12deg)
  }

  100% {
    transform: scale(1.18) translateY(0) translateX(0) rotate(0deg)
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -30%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -30%) scale(1.2);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 70% 10%, rgba(225, 6, 0, .10), transparent 65%),
    radial-gradient(600px 360px at 18% 20%, rgba(214, 178, 94, .06), transparent 45%),
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .62) 44%, rgba(0, 0, 0, .30) 100%);
}

@supports (-webkit-touch-callout: none) {
  .hero__bg {
    position: absolute;
  }
}

@media (max-width: 980px),
(pointer: coarse) {

  /* On smaller screens and touch devices switch to absolute positioning
     and disable the long floating animation for performance and layout */
  .hero__bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    object-position: center 20%;
    animation: heroZoom .9s var(--ease) forwards;
    /* Proper alignment for impact */
    height: 100dvh;
    /* Dynamic height for mobile browsers */
    width: 100%;
    object-fit: cover;
    object-position: 60% 20%;
    /* Shift focus to face */
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: heroZoom 1.15s var(--ease) forwards;
  }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 20px;
  padding: clamp(36px, 5.5vw, 64px) 0 clamp(36px, 5vw, 56px);
  padding: clamp(36px, 5.5vw, 64px) 0 clamp(36px, 5vw, 56px);
  align-items: center;
}

/* Sync Portrait Card Animation (Desktop) */
.hero__grid .card--portrait {
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
  /* Ensure it appears with hero content */
}

.hero__copy {
  padding-top: 8px;
  max-width: 720px
}

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}

/* Mobile Pill Row - Single Line No Scroll - Aggressive Overrides */
@media (max-width: 600px) {
  .pillrow {
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
    /* No scroll */
    justify-content: center !important;
    gap: 2px !important;
    /* Minimal gap */
    padding-bottom: 0px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .pillrow::-webkit-scrollbar {
    display: none !important;
  }

  /* Force tiny pills to fit */
  .pill {
    flex: 0 1 auto !important;
    /* Allow shrink */
    font-size: 8px !important;
    /* Extremely small to ensure fit */
    line-height: 12px !important;
    padding: 3px 4px !important;
    /* Minimal padding */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    /* Ellipsis if it REALLY doesn't fit */
    min-width: 0 !important;
    border-width: 1px !important;
  }

  /* Hero Mobile Optimization - Single Line Title */
  .hero__title {
    white-space: nowrap !important;
    /* Centered */
    font-size: clamp(24px, 9.5vw, 52px) !important;
    /* Maximized for 24px padding */
    line-height: 1.0 !important;
    letter-spacing: -0.06em !important;
    /* Tighter tracking */
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    width: 100% !important;
    overflow: visible !important;
    /* Allow it to breathe, max-width handles it */
    text-overflow: clip !important;
  }

  /* Hide "Retired Professional" on mobile to save space */
  .pillrow .pill[data-i18n="hero_pill_retired"] {
    display: none !important;
  }

  .hero__lead {
    font-size: 15px !important;
    line-height: 1.5 !important;
    max-width: 92%;
    margin: 0 auto 30px !important;
    /* Added bottom spacing */
    opacity: 0.9;
  }

  .hero__grid {
    padding: 80px 0 60px;
    /* Reduced to avoid large gap */
    /* Increased breathing room */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    gap: 20px;
    /* Unified vertical rhythm */
  }

  .hero__cta {
    flex-direction: row;
    flex-wrap: nowrap;
    /* Force single line */
    width: 100%;
    gap: 6px;
    /* Tight gap */
    align-items: center;
  }

  /* Reset separate widths & make compact */
  .hero__cta .btn {
    width: auto;
    flex: 1;
    /* Both grow equally */
    padding: 12px 4px;
    /* Very tight padding */
    font-size: 11px;
    /* Smaller text to fit 3 items */
    white-space: nowrap;
    justify-content: center;
    min-width: 0;
    /* Allow shrink */
    height: 44px;
    /* Fixed height match */
  }

  .hero__cta .btn--primary {
    width: auto;
    /* Override 100% */
  }

  .hero__cta .btn__icon {
    display: none;
    /* Hide arrow to save space */
  }

  .hero__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    /* Fixed square */
    min-width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    padding: 0;
  }

  .hero__social-link svg {
    width: 20px;
    height: 20px;
  }

  .hero__social-link:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.97);
  }
}

@keyframes heroTitlePop {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214, 178, 94, .06);
  background: rgba(0, 0, 0, .30);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .84);
  transition: all 0.3s var(--ease);
}

.pill:hover {
  border-color: rgba(214, 178, 94, .28);
  background: rgba(214, 178, 94, .08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 178, 94, .12);
}

.pill--red {
  background: rgba(225, 6, 0, .18);
  border-color: rgba(225, 6, 0, .42);
}

.pill--red:hover {
  background: rgba(225, 6, 0, .32);
  border-color: rgba(225, 6, 0, .72);
  box-shadow: 0 8px 24px rgba(225, 6, 0, .24);
}

.hero__title {
  font-family: 'Anton', sans-serif;
  /* Impact font */
  font-size: clamp(40px, 8vw, 110px);
  /* Larger for impact */
  line-height: 0.95;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: titleReveal 0.8s var(--ease) 0.2s both;
  position: relative;
}

/* Glitch Hover Interaction */
.hero__title {
  /* ... existing styles ... */
  transition: transform 0.3s var(--ease);
}

.hero__title:hover .accent::before {
  animation: glitch-anim-1 0.4s infinite linear alternate-reverse !important;
  clip: rect(0, 900px, 0, 0);
  /* Reset clip to allow full movement */
}

.hero__title:hover .accent::after {
  animation: glitch-anim-2 0.4s infinite linear alternate-reverse !important;
}

/* Make the title shake slightly on hover */
.hero__title:hover {
  transform: scale(1.02);
  text-shadow: 2px 2px 0px rgba(225, 6, 0, 0.2);
}

/* Glitch Effect */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
}

.glitch-text::before {
  left: 2px;
  text-shadow: -1px 0 red;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: -1px 0 blue;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(20px, 9999px, 81px, 0);
  }

  20% {
    clip: rect(62px, 9999px, 14px, 0);
  }

  40% {
    clip: rect(3px, 9999px, 35px, 0);
  }

  60% {
    clip: rect(51px, 9999px, 28px, 0);
  }

  80% {
    clip: rect(10px, 9999px, 72px, 0);
  }

  100% {
    clip: rect(32px, 9999px, 49px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(14px, 9999px, 53px, 0);
  }

  20% {
    clip: rect(74px, 9999px, 26px, 0);
  }

  40% {
    clip: rect(6px, 9999px, 83px, 0);
  }

  60% {
    clip: rect(30px, 9999px, 14px, 0);
  }

  80% {
    clip: rect(65px, 9999px, 42px, 0);
  }

  100% {
    clip: rect(2px, 9999px, 99px, 0);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scaleY(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.accent {
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(214, 178, 94, .2);
  transition: all 0.3s var(--ease);
}

.hero__title:hover .accent {
  text-shadow: 0 4px 30px rgba(214, 178, 94, .6), 0 0 10px rgba(214, 178, 94, .4);
  /* Enhanced Glow */
}

/* Gold emphasis across components */
.accent {
  color: var(--gold);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .55)
}

.eyebrow,
.kicker {
  color: var(--gold)
}

.stat__num {
  color: var(--gold)
}

/* Subtle gold card rim */
.card,
.panel,
.recordCard,
.videoCard {
  border-color: rgba(214, 178, 94, .04)
}

.card--portrait {
  border: 1px solid rgba(214, 178, 94, .06)
}

/* Small accent on headings */
.h2 {
  background: linear-gradient(90deg, rgba(214, 178, 94, .02), transparent);
  padding-inline: 4px
}

.hero__lead {
  margin: 16px 0 40px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 58ch;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .hero__lead {
    margin: 10px 0 20px
  }
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.stat {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .30);
  box-shadow: var(--shadowSoft);
  transition: all 0.3s var(--ease);
  animation: statSlideIn 0.6s var(--ease) both;
}

.stat:nth-child(1) {
  animation-delay: 0.55s;
}

.stat:nth-child(2) {
  animation-delay: 0.6s;
}

.stat:nth-child(3) {
  animation-delay: 0.65s;
}

.stat:nth-child(4) {
  animation-delay: 0.7s;
}

@keyframes statSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px) translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 178, 94, .16);
  box-shadow: 0 12px 32px rgba(225, 6, 0, .15), var(--shadowSoft);
}

.stat__num {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
  color: var(--gold);
}

/* KO stat highlight animation */
@keyframes koPop {
  0% {
    transform: scale(.96);
    filter: drop-shadow(0 0 0 rgba(214, 178, 94, 0));
    opacity: .0
  }

  40% {
    transform: scale(1.18);
    filter: drop-shadow(0 18px 36px rgba(214, 178, 94, .12));
    opacity: 1
  }

  70% {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 20px rgba(214, 178, 94, .08));
  }

  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(214, 178, 94, 0));
  }
}

.reveal.is-in .stat__num--ko {
  animation: koPop .9s cubic-bezier(.22, 1, .36, 1) both;
}

/* subtle shimmer for emphasis */
.reveal.is-in .stat__num--ko {
  position: relative;
}

.reveal.is-in .stat__num--ko::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  mix-blend-mode: overlay;
  background: linear-gradient(90deg, rgba(255, 255, 255, .02), rgba(214, 178, 94, .06), rgba(255, 255, 255, .02));
  opacity: .0;
  transition: opacity .5s ease;
  transform: translateZ(0);
}

.reveal.is-in .stat__num--ko::after {
  opacity: .9
}

.stat__label {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

/* Hero social icon */
.hero__social {
  display: none;
}

.hero__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24, 119, 242, .12);
  border: 1px solid rgba(24, 119, 242, .3);
  color: #1877F2;
  transition: all .25s var(--ease);
  margin-left: 8px;
}

.hero__cta .hero__social-link {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
}

.hero__social-link:hover {
  transform: translateY(-3px);
  background: rgba(24, 119, 242, .22);
  border-color: rgba(24, 119, 242, .5);
  box-shadow: 0 8px 24px rgba(24, 119, 242, .15);
}

/* small flag icon used before location names */
.flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
}

.flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Cards / Panels ---------- */
.card,
.panel,
.recordCard,
.videoCard {
  border-radius: var(--radius);
  border: 1px solid rgba(214, 178, 94, .04);
  background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .35));
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.card--portrait {
  overflow: hidden
}

.card__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px)
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block
}



.text-shimmer {
  background: linear-gradient(110deg,
      #ffffff 45%,
      #D6B25E 50%,
      #ffffff 55%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Fallback managed via JS if needed, but modern browsers handle this */
  animation: shine 5s infinite linear;
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Ensure portrait cards keep the face visible by nudging the image crop */
.card--portrait .card__media img,
.card__media--smaller img {
  object-position: 50% 22%;
  transform: translateZ(0);
  /* Fix for potential flickering in 3D space */
}

@media (max-width: 520px) {

  /* shift slightly on narrow screens where aspect and crop change */
  .card--portrait .card__media img,
  .card__media--smaller img {
    object-position: 50% 28%;
  }
}

.card__media:hover img,
.card--portrait:hover .card__media img {
  transform: scale(1.06) translateZ(0)
}

.card__shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 30%, transparent 0%, rgba(0, 0, 0, .22) 55%, rgba(0, 0, 0, .62) 100%);
}

.card__body {
  padding: 14px 16px 18px
}

/* card title / kicker emphasis */
.card .kicker {
  color: var(--gold);
  font-weight: 700
}

.card h3 {
  margin: 8px 0 10px
}

/* elevated focus for keyboard users */
.card:focus-within,
.card:focus {
  outline: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 6px 28px rgba(214, 178, 94, .06);
  border-color: rgba(214, 178, 94, .08)
}

/* slight lift on hover (works together with global card hover) */
.card:hover {
  transform: translateY(-6px)
}

/* compact variants for smaller cards */
.card__media--smaller {
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden
}

.card--compact .card__media {
  min-height: 140px
}

.card--compact .card__body {
  padding: 10px 12px
}

/* Card metadata row and CTA */
.card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.card__meta .meta__item {
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  background: rgba(214, 178, 94, .04);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 178, 94, .04);
  color: var(--gold);
  font-weight: 700
}

.card__cta {
  padding: 8px 12px;
  font-size: 13px
}

/* Badge */
.badge {
  background: linear-gradient(90deg, rgba(214, 178, 94, .12), rgba(214, 178, 94, .04));
  color: var(--gold);
  border: 1px solid rgba(214, 178, 94, .12);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(214, 178, 94, .04)
}

/* smallLink tweak inside card */
.card .smallLink {
  color: rgba(255, 255, 255, .72);
  border: 1px solid transparent;
  transition: color .22s var(--ease), border-color .22s var(--ease)
}

.card .smallLink:hover {
  border-color: rgba(79, 108, 173, .28);
  color: var(--accentBlue);
  text-shadow: 0 6px 18px rgba(79, 108, 173, .22)
}

.kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .70);
}

.kv {
  margin-top: 12px;
  display: grid;
  gap: 10px
}

.kv__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: rgba(0, 0, 0, .22);
}

.kv__row span {
  color: rgba(255, 255, 255, .60);
  font-size: 12px
}

.kv__row strong {
  font-size: 12.5px;
  font-weight: 800
}

.section {
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
}

/* Dark background for video section */
#video {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(225, 6, 0, .12), transparent 60%),
    radial-gradient(900px 520px at 85% 20%, rgba(214, 178, 94, .08), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .7) 100%);
}

.section--video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .03), transparent 60%);
  opacity: .35;
  pointer-events: none;
}

/* Darker background for legacy section */
#legacy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(225, 6, 0, .14), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(214, 178, 94, .12), transparent 62%),
    linear-gradient(180deg, rgba(14, 14, 18, .78) 0%, rgba(12, 12, 16, .9) 100%);
}

#legacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .035), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 6px);
  opacity: .26;
  pointer-events: none;
}

#legacy::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -160px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(225, 6, 0, .2) 0%, rgba(225, 6, 0, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
}

.section--border {
  border-top: 1px solid var(--border2)
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
  margin: 12px 0 6px;
}

.section__head {
  max-width: 760px;
  margin-bottom: 32px
}

.section__head--center {
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__head--center .sub {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section__head--center .h2 {
  background: none;
  padding-inline: 0;
}

/* Typing effect in Story section */
.typing-text {
  position: relative;
}

.typing-text.is-typing .typing-content::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 4px;
  background: var(--gold);
  animation: caretBlink .8s steps(2, start) infinite;
}

@keyframes caretBlink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* -----------------------------
   Story section enhancements
   - gold vertical accent bar
   - drop cap for the first paragraph
   - timeline vertical line
   - panel hover lift + gold dot for headings
 ------------------------------*/
#story .section__head {
  position: relative;
  padding-left: 18px
}

#story .section__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), rgba(214, 178, 94, .6));
  border-radius: 4px;
  box-shadow: 0 8px 26px rgba(214, 178, 94, .06);
}

/* Legacy section gold accent bar to mirror Story */
#legacy .section__head {
  position: relative;
  padding-left: 18px
}

#legacy .section__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), rgba(214, 178, 94, .6));
  border-radius: 4px;
  box-shadow: 0 8px 26px rgba(214, 178, 94, .06);
}

#story .h2 {
  color: var(--text);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .6)
}

#story .eyebrow {
  color: #fff;
  border-color: rgba(225, 6, 0, .35);
  background: rgba(225, 6, 0, .12);
}

#legacy .legacy__accent {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .6)
}

#story .grid2 {
  grid-template-columns: 1.1fr 0.9fr;
  /* Match Passion/Legacy balance */
  gap: 40px;
  /* Consistent generous spacing */
}

/* Ensure consistent panel padding in Story */
#story .panel {
  padding: 40px;
}


.panel {
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease)
}

.panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  border-color: rgba(214, 178, 94, .06)
}

/* Mobile reset for Story grid */
@media (max-width: 980px) {
  #story .grid2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #story .panel {
    padding: 24px;
  }
}

.panel h3 {
  position: relative;
  padding-left: 12px
}

.panel h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 6px 20px rgba(214, 178, 94, .12)
}

.panel p:first-of-type::first-letter {
  font-size: 46px;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  color: var(--gold);
  -webkit-font-smoothing: antialiased;
}

.timeline {
  position: relative;
  padding-left: 36px
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, .1);
  /* Faint track */
  border-radius: 2px
}

.timeline::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: var(--progress, 0%);
  /* JavaScipt controlled */
  background: linear-gradient(180deg, var(--gold), rgba(214, 178, 94, .5));
  border-radius: 2px;
  transition: height 0.1s linear;
  box-shadow: 0 0 10px rgba(214, 178, 94, .4);
}

.tItem {
  position: relative
}

.tItem:hover {
  transform: translateX(4px);
  transition: transform .32s var(--ease)
}

/* stronger link accent inside story */
#story a {
  color: var(--gold);
  text-decoration: underline
}

@media (max-width: 980px) {
  #story .section__head {
    padding-left: 0
  }

  #story .section__head::before {
    display: none
  }

  .timeline {
    padding-left: 20px
  }

  .timeline::before,
  .timeline::after {
    left: 8px
  }

  .tItem {
    grid-template-columns: 1fr;
    /* Stack timeline item on mobile */
    gap: 8px;
    padding: 12px;
  }

  .tYear {
    height: 32px;
    width: 80px;
    font-size: 14px;
  }
}

/* Story Image Float */
.story__media {
  float: right;
  width: 180px;
  margin: 6px 0 12px 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadowSoft);
  transform: rotate(2deg);
  /* Jaunty angle */
  transition: transform .3s var(--ease);
}

.story__media:hover {
  transform: rotate(0) scale(1.05);
}

.story__media img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 8s var(--ease);
}

.reveal.is-in .story__media img {
  opacity: 1;
}

@media (max-width: 768px) {
  .story__media {
    float: none;
    width: 100%;
    margin: 0 0 24px 0;
    transform: none;
  }

  .panel p:first-of-type::first-letter {
    font-size: 32px;
    /* Smaller drop cap */
    line-height: 0.9;
    margin-right: 6px;
  }
}

/* Biography extras */
.bio-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 18px 0 20px;
}

.bio-fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(10, 10, 12, .55);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.bio-fact strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
}

.bio-wins {
  margin-bottom: 18px;
}

.bio-wins .kicker {
  margin-bottom: 8px;
}

.bio-wins__list {
  margin: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}

.bio-wins__list li {
  margin-bottom: 6px;
}

.bio-quote {
  margin: 10px 0 18px;
  padding: 10px 0 10px 18px;
  border-left: 3px solid rgba(214, 178, 94, .7);
  color: #fff;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(214, 178, 94, .12), transparent 70%);
}

.bio-timeline {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
}

.bio-timeline__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .8);
}

.bio-timeline__item span {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: .06em;
}

.bio-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .bio-facts {
    grid-template-columns: 1fr;
  }

  .bio-timeline__item {
    grid-template-columns: 56px 1fr;
  }
}

/* Mini Stats (Numbers) in Signature Moment */
.miniStats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
}

.miniStat {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(214, 178, 94, .18);
  background:
    linear-gradient(140deg, rgba(225, 6, 0, .14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .5);
  overflow: hidden;
}

.miniStat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(225, 6, 0, .9), rgba(214, 178, 94, .9));
  opacity: .9;
}

.miniStat__num {
  font-size: clamp(40px, 6vw, 64px);
  font-family: "Anton", sans-serif;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: .03em;
  animation: none;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 700px) {
  .miniStats {
    grid-template-columns: 1fr;
  }
}

.miniStat__label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
}

@keyframes miniStatPulse {

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

  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

@keyframes textShadowPulse {
  0% {
    text-shadow: 0 0 10px rgba(214, 178, 94, 0.2);
  }

  100% {
    text-shadow: 0 0 20px rgba(214, 178, 94, 0.6), 0 0 40px rgba(214, 178, 94, 0.2);
  }
}

.miniStat__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
}

.h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 0 0 10px
}

.h3 {
  font-size: 18px;
  margin: 0 0 10px
}

.sub {
  color: rgba(255, 255, 255, .74);
  margin: 0;
  max-width: 70ch;
  line-height: 1.6
}

.grid2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

@media (min-width: 1100px) {
  .section {
    padding: 72px 0;
  }

  .section__head {
    margin-bottom: 28px;
  }

  .section__head .sub,
  .section__head--center .sub {
    max-width: 64ch;
  }

  .grid2 {
    gap: 32px;
  }
}

/* Passion section tweaks */
#passion .grid2 {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: stretch;
}

#passion .panel {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(140deg, rgba(225, 6, 0, .08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  box-shadow: 0 26px 70px rgba(0, 0, 0, .5);
  border-radius: 18px;
}

/* Specific layout for the first article */
#passion article.panel {
  display: block;
  /* Allow standard flow, or flex row? */
}

/* Image styling - Clean side-by-side with text on desktop */
@media (min-width: 981px) {
  #passion article.panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    /* Centered vertically with text */
  }

  #passion .card__media {
    width: 210px;
    height: 260px;
    margin: 0;
    /* consistent */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .1);
  }

  /* Make the heading span full width or sit next to image? 
     Let's put heading above. 
  */
  #passion article.panel h3 {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }

  /* Wrap text in a container if needed, but grid handles implicit placement. 
     Issue: The P tags are siblings of the img. 
     We need to target them to sit in col 2.
  */
  #passion article.panel p {
    grid-column: 2;
    margin: 0;
    line-height: 1.72;
  }

  #passion article.panel .card__media {
    grid-row: 2 / span 2;
    /* Span the paragraphs areas */
  }
}

#passion .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: passionDrift 6s var(--ease) infinite;
}

@keyframes passionDrift {

  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1) contrast(1);
  }

  50% {
    transform: translateY(-5px) scale(1.015);
    filter: saturate(1.08) contrast(1.05);
  }
}

#passion .panel--spotlight {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    radial-gradient(400px 220px at 10% 0%, rgba(225, 6, 0, .18), transparent 60%),
    linear-gradient(145deg, rgba(0, 0, 0, .55), rgba(20, 20, 24, .7));
  border: 1px solid rgba(255, 255, 255, .1);
}

/* Reset for mobile */
@media (max-width: 980px) {
  #passion .grid2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #passion .card__media {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
  }

  #passion .panel {
    padding: 24px;
  }

  #passion .panel--spotlight::before {
    display: none;
  }

  #passion .panel--spotlight {
    align-items: center;
    text-align: center;
  }

  #passion .panel--spotlight .card__media--smaller {
    max-width: 100%;
  }
}

#passion .panel--spotlight>* {
  position: relative;
  z-index: 1
}

#passion .panel--spotlight::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 12px;
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23D6B25E' d='M12 14a3 3 0 0 0 3-3V5a3 3 0 0 0-6 0v6a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 14 0h-2zm-5 8v-2h2v2h-2z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  transform: rotate(-6deg);
  z-index: 0;
}





/* Drop cap for first paragraph to add visual flair */
#passion .panel p:first-of-type::first-letter {
  font-size: 42px;
  font-weight: 900;
  float: left;
  line-height: 0.78;
  margin-right: 10px;
  color: var(--gold);
  text-shadow: 0 6px 18px rgba(214, 178, 94, .08);
}

/* Gold underline accent for Passion headings */
#passion .h3 {
  position: relative;
  display: inline-block
}

#passion .h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 56px;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--gold), color-mix(in srgb, var(--gold) 70%, black 20%));
  box-shadow: 0 8px 30px rgba(214, 178, 94, .08)
}

.panel {
  padding: 20px
}

.panel p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .80)
}

.panel p:last-child {
  margin-bottom: 0
}

/* Legacy card layout and design */
/* Legacy redesign */
.legacy-wrap {
  position: relative;
}

.legacy-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(214, 178, 94, .14);
  background: linear-gradient(135deg, rgba(18, 18, 22, .82), rgba(12, 12, 16, .55));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .6);
}

.legacy-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(10, 10, 12, .6);
}

.legacy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .6s var(--ease);
}

.legacy-panel:hover .legacy-media img {
  transform: scale(1.04);
}

.legacy-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(10, 10, 12, .8);
  color: rgba(255, 255, 255, .85);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legacy-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.legacy-kicker {
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.legacy-content p {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  line-height: 1.8;
  font-size: 14.5px;
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 6px;
}

.legacy-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(10, 10, 12, .55);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.legacy-stat strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
}

.legacy-list {
  margin: 6px 0 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}

.legacy-list li {
  margin-bottom: 6px;
}

@media (max-width: 980px) {
  .legacy-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .legacy-stats {
    grid-template-columns: 1fr;
  }
}

.panel--spotlight {
  background: radial-gradient(600px 420px at 20% 0%, rgba(225, 6, 0, .14), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
}

#story .panel--spotlight {
  position: relative;
  overflow: hidden;
}

#story .spot__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(255, 255, 255, .5);
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .4));
}

.spot-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 18px 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.spot-chips::-webkit-scrollbar {
  display: none;
}

.spot-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
}

.spot-chip strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
}

.reveal.is-in .spot__icon {
  animation: spotIconFade 6s var(--ease) forwards;
}

@keyframes spotIconFade {
  0% {
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
  }

  100% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }
}

.note {
  color: rgba(255, 255, 255, .64);
  font-size: 13px
}

.note .h3 {
  color: var(--gold);
  font-weight: 800;
}

.miniStats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px
}

.miniStat {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--border2);
  background: rgba(0, 0, 0, .22)
}

.miniStat__num {
  font-weight: 900;
  font-size: 18px
}

.miniStat__label {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62)
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  gap: 16px
}

.tItem {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .22);
  box-shadow: var(--shadowSoft);
}

.tYear {
  display: grid;
  place-items: center;
  height: 52px;
  border-radius: 18px;
  background: rgba(225, 6, 0, .18);
  border: 1px solid rgba(225, 6, 0, .42);
  font-weight: 900;
  letter-spacing: .08em;
}

.tTitle {
  font-weight: 900;
  margin-bottom: 4px
}

.tText {
  color: rgba(255, 255, 255, .72);
  font-size: 13px
}

/* Site-wide gold accents and polish */
a:hover,
a:focus {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-shadow: 0 6px 22px rgba(214, 178, 94, .08);
}

.nav a:hover {
  background: rgba(214, 178, 94, .06);
  color: var(--gold);
  box-shadow: 0 10px 34px rgba(214, 178, 94, .05);
}

.topbar {
  border-bottom-color: rgba(214, 178, 94, .03)
}

/* Panels & cards: apply same hover lift site-wide */
.card:hover,
.panel:hover,
.recordCard:hover,
.videoCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 6px 28px rgba(214, 178, 94, .04);
  border-color: rgba(214, 178, 94, .06);
}

/* Pull-quote utility */
.pull-quote {
  margin: 22px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(214, 178, 94, .02), transparent);
  color: rgba(255, 255, 255, .94);
  font-style: italic;
  border-radius: 8px;
  font-size: clamp(16px, 1.3vw, 18px);
}

/* Timeline dot animation (tItem has 'reveal') */
.tItem {
  position: relative
}

.tItem::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(214, 178, 94, .92);
  box-shadow: 0 8px 20px rgba(214, 178, 94, .08);
  transform: scale(.85);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), opacity .45s var(--ease);
  opacity: .9;
}

.tItem.reveal.is-in::after {
  transform: scale(1.2);
  box-shadow: 0 24px 60px rgba(214, 178, 94, .12);
  opacity: 1;
}

/* Footer accents */
.footer {
  border-top-color: rgba(214, 178, 94, .03)
}

.footer__text {
  color: rgba(255, 255, 255, .78)
}

.footer__brand img {
  filter: drop-shadow(0 6px 18px rgba(214, 178, 94, .04))
}

@media (max-width: 980px) {
  .nav a {
    padding: 8px
  }
}

/* ---------- Record / Fight history ---------- */
.recordGrid--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.recordCard {
  padding: 22px;
  border: 1px solid rgba(214, 178, 94, .12);
  background: linear-gradient(135deg, rgba(18, 18, 22, .78), rgba(12, 12, 16, .52));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease)
}

.recordTop {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px
}

.recordBig {
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.02em;
  color: var(--gold)
}

.recordBig::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  margin-top: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(214, 178, 94, .95), rgba(214, 178, 94, .45));
  box-shadow: 0 8px 24px rgba(214, 178, 94, .06)
}

.recordMeta {
  color: rgba(255, 255, 255, .72);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase
}

/* small gold badge for active status */
.chips {
  align-items: center
}

.recordCard .chips .chip {
  background: linear-gradient(90deg, rgba(214, 178, 94, .04), rgba(214, 178, 94, .01));
  border-color: rgba(214, 178, 94, .04)
}

/* Make table horizontally scrollable on very small screens while preserving layout */
.recordGrid--split .fightTable {
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .recordBig {
    font-size: 40px
  }

  .fightTable .fightRow {
    padding: 10px;
    /* Optimize grid for mobile: Date | Opponent | Result | Method */
    /* Hide Location on small screens to save space */
    grid-template-columns: 50px 1fr 45px 0.8fr;
    gap: 6px;
  }

  /* Hide the 4th column (Location) on mobile */
  .fightRow>div:nth-child(4) {
    display: none;
  }
}

@media (max-width: 640px) {
  .videoMeta .note {
    font-size: 14px;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px
}

.chip {
  padding: 9px 12px;
  font-size: 10.5px;
  letter-spacing: .10em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .76);
}

.recordRows {
  margin-top: 12px;
  display: grid;
  gap: 8px
}

.rRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: rgba(0, 0, 0, .22);
  font-size: 13px;
}

.rRow span {
  color: rgba(255, 255, 255, .60)
}

.fightTable {
  border-radius: 22px;
  border: 1px solid rgba(214, 178, 94, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
  overflow: hidden;
  box-shadow: var(--shadowSoft);
}

.fightRow {
  display: grid;
  grid-template-columns: 58px 1.15fr 56px 92px 1fr;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 12px;
  min-width: 0;
  transition: background .2s var(--ease), transform .18s var(--ease)
}

.fightRow:nth-child(odd) {
  background: linear-gradient(90deg, rgba(0, 0, 0, .03), transparent)
}

.fightRow:hover {
  background: linear-gradient(90deg, rgba(214, 178, 94, .05), rgba(214, 178, 94, .02));
  transform: translateY(-2px)
}

.fightRow>div {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.fightRow--head {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .4));
  backdrop-filter: blur(4px);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.win {
  color: rgba(124, 255, 186, .92);
  font-weight: 900;
  background: rgba(124, 255, 186, .04);
  padding: 4px 8px;
  border-radius: 8px
}

.loss {
  color: rgba(255, 140, 140, .92);
  font-weight: 900;
  background: rgba(255, 140, 140, .04);
  padding: 4px 8px;
  border-radius: 8px
}

/* ---------- Video ---------- */
.videoCard {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(214, 178, 94, .14);
  background: linear-gradient(135deg, rgba(18, 18, 22, .82), rgba(10, 10, 12, .56));
  box-shadow: 0 36px 100px rgba(0, 0, 0, .65);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.videoWrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(10, 10, 12, .4), rgba(10, 10, 12, .14));
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
}

.videoWrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* subtle sheen overlay */
.videoWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 36% 28%, rgba(214, 178, 94, .04), transparent 26%), linear-gradient(180deg, rgba(0, 0, 0, .14), transparent 44%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.videoWrap::after {
  content: "Historic Bout";
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 12, .75);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
}

html[lang="es"] .videoWrap::after {
  content: "Combate historico";
}

.videoMeta {
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
  border-radius: 0;
  border: 0;
  align-self: stretch;
  /* match video height */
  justify-content: flex-start;
}

.videoMeta .note {
  color: rgba(255, 255, 255, .92);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
}

.videoMeta .note+.note {
  margin-top: 10px;
}

.videoMeta .kicker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.videoCard.reveal.is-in {
  box-shadow: 0 36px 100px rgba(0, 0, 0, .6);
}

/* badge adjustments (smaller, top-right) */


@media (max-width: 980px) {
  .videoCard {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 14px
  }

  .videoWrap {
    border-radius: 12px
  }

  .videoMeta {
    align-items: center;
    text-align: center
  }

  /* badge removed */
}

@media (max-width: 640px) {
  .videoOverlay {
    display: none
  }
}

/* (badge styles consolidated above) */

/* mobile: stack video above meta */
@media (max-width: 980px) {
  .videoCard {
    grid-template-columns: 1fr;
  }

  .videoWrap {
    aspect-ratio: 16/9
  }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border2);
  padding: 26px 0 36px
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.footer__brand img {
  height: 26px;
  width: auto;
  opacity: .95
}

.footer__text {
  color: rgba(255, 255, 255, .68);
  font-size: 13px
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #1877F2;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
  margin-right: 16px;
}

.footer__social:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.smallLink {
  color: rgba(255, 255, 255, .72);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent
}

.smallLink:hover {
  border-color: rgba(79, 108, 173, .35);
  background: rgba(79, 108, 173, .12)
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}

/* Staggered Animations for Lists */
.tItem {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

.fightRow {
  transition-delay: calc(var(--i, 0) * 0.05s);
}

/* Mobile-Specific Animation Refinements */
@media (max-width: 600px) {
  .reveal {
    transform: translateY(30px);
    /* Reduced movement for mobile */
  }
}

/* Add Card Pop Effect */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  /* Start slightly smaller */
  filter: blur(2px);
  will-change: opacity, transform, filter;
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Add glow to panel edges when revealed */
.panel.reveal.is-in.parallax-element {
  border: 1px solid rgba(214, 178, 94, .2);
  background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .62) 44%, rgba(0, 0, 0, .30) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5), 0 0 24px rgba(214, 178, 94, .12), inset 0 1px 0 rgba(214, 178, 94, .15);
}

@keyframes clashLeft {
  0% {
    opacity: 0;
    transform: translateX(-48px) translateY(22px) scale(.96) rotate(-0.6deg);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0))
  }

  55% {
    opacity: 1;
    transform: translateX(10px) translateY(0) scale(1.02) rotate(0.6deg);
    filter: drop-shadow(0 18px 40px rgba(214, 178, 94, .12))
  }

  80% {
    transform: translateX(-4px) translateY(0) scale(.995) rotate(-0.2deg)
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0))
  }
}

@keyframes clashRight {
  0% {
    opacity: 0;
    transform: translateX(48px) translateY(22px) scale(.96) rotate(0.6deg);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0))
  }

  55% {
    opacity: 1;
    transform: translateX(-10px) translateY(0) scale(1.02) rotate(-0.6deg);
    filter: drop-shadow(0 18px 40px rgba(214, 178, 94, .12))
  }

  80% {
    transform: translateX(4px) translateY(0) scale(.995) rotate(0.2deg)
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0))
  }
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(22px)
}

.reveal.is-in .reveal-left {
  opacity: 1;
  animation: clashLeft .85s var(--ease) both
}

.reveal.is-in .reveal-right {
  opacity: 1;
  animation: clashRight .85s var(--ease) both;
  animation-delay: .06s
}

/* Record card pulse when clash completes */
@keyframes recordPulse {
  0% {
    box-shadow: var(--shadowSoft);
    transform: translateY(0) scale(1);
    border-color: rgba(214, 178, 94, .04)
  }

  30% {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 40px 110px rgba(214, 178, 94, .14), 0 14px 44px rgba(0, 0, 0, .6);
    border-color: rgba(214, 178, 94, .12)
  }

  65% {
    transform: translateY(-2px) scale(1.008);
    box-shadow: 0 28px 80px rgba(214, 178, 94, .10), 0 10px 34px rgba(0, 0, 0, .56)
  }

  100% {
    box-shadow: var(--shadowSoft);
    transform: translateY(0) scale(1);
    border-color: rgba(214, 178, 94, .04)
  }
}

.reveal.is-in .recordCard.reveal-left,
.reveal.is-in .recordCard.reveal-right {
  animation: recordPulse .9s var(--ease) both;
  animation-delay: .12s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width: 980px) {
  .nav {
    display: none
  }

  .topbar__inner .btn--primary {
    display: none
  }

  .burger {
    display: inline-flex;
    position: fixed;
    bottom: 24px;
    right: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    background: rgba(16, 16, 18, 0.85);
    /* Ensure contrast */
    border-color: rgba(255, 255, 255, 0.15);
  }

  .hero__grid {
    grid-template-columns: 1fr
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .recordGrid--split {
    grid-template-columns: 1fr
  }

  .tItem {
    grid-template-columns: 72px 1fr
  }

  .fightRow {
    grid-template-columns: 64px 1fr 66px
  }

  .fightRow>div:nth-child(4),
  .fightRow>div:nth-child(5) {
    display: none
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 72vh
  }

  .section {
    padding: 44px 0
  }

  .section__head {
    margin-bottom: 22px
  }

  /* .hero__cta removed to allow 600px grid layout to persist */

  /* .pill font-size removed to allow 9px from 600px query to persist */

  .stat__num {
    font-size: 18px
  }

  .recordBig {
    font-size: 40px
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    /* Center align for improved mobile look */
    gap: 24px;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__text {
    font-size: 12px;
    opacity: 0.6;
  }

  .footer__right {
    width: 100%;
    justify-content: center;
    /* Center social/links */
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
  }

  .footer__social {
    margin-right: 0;
  }

  .official-links .links {
    gap: 8px
  }

  .official-links .smallLink {
    padding: 6px 9px;
    font-size: 11px
  }
}

/* ---------- Video ---------- */
.videoCard {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: var(--shadowHard);
  margin-top: 40px;
}

.videoWrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  background: #000;
}

.videoWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Map Card / Fight Map ---------- */
/* Leaflet Map Dark Theme Overrides */
.leaflet-container {
  background: #0b0b0d !important;
  font-family: inherit !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #18181b !important;
  /* Surface color */
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.leaflet-popup-content {
  margin: 14px !important;
  line-height: 1.5 !important;
}

.leaflet-container a.leaflet-popup-close-button {
  color: rgba(255, 255, 255, 0.5) !important;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #fff !important;
}

/* Remove white tiles background if they load slowly or for style */
.leaflet-layer,
.leaflet-control-zoom-in,
.leaflet-control-zoom-out,
.leaflet-control-attribution {
  filter: invert(1) hue-rotate(180deg) brightness(0.9) contrast(0.9) grayscale(0.2) !important;
}

/* Revert filter for markers so they stay colored */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-popup {
  filter: invert(1) hue-rotate(180deg) brightness(1.1) contrast(1.1) grayscale(0) !important;
}

/* Correct Approach for Dark Map Tiles via CSS Filter on the Tile Layer ONLY */
.leaflet-tile-pane {
  filter: invert(1) grayscale(1) brightness(1.2) contrast(0.8) !important;
}

/* Pulsing Beacons */
@keyframes beaconPulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.7);
  }

  70% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 10px rgba(225, 6, 0, 0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0);
  }
}

.leaflet-marker-icon.leaflet-interactive {
  /* Apply pulse to markers */
  animation: beaconPulse 2s infinite;
  border-radius: 50%;
  /* Ensure circle for shadow */
}

/* Career Lines (Flight Paths) */
.career-line {
  stroke-dasharray: 10;
  stroke-dashoffset: 1000;
  animation: dash 5s linear infinite;
  opacity: 0.6;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* Markers and Popups should NOT be inverted by the pane filter because they are in overlay-pane and popup-pane */
/* Leaflets handles panes separately. tile-pane is below. */

/* Map Card */
.mapCard {
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 10, 10, .22), rgba(10, 10, 10, .08));
  border: 1px solid rgba(255, 255, 255, .04);
  box-shadow: var(--shadowSoft);
}

#fightMap {
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
}

.leaflet-container {
  height: 100%;
}

@media (max-width: 980px) {
  #fightMap {
    height: 320px !important
  }
}

@media (max-width: 640px) {
  #fightMap {
    height: 280px !important
  }
}

/* Parallax helpers */
.parallax-element {
  will-change: transform;
  transition: transform .26s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .parallax-element {
    transition: none !important;
    transform: none !important
  }
}

/* Official links styling (distinct from other smallLink uses) */
.official-links .links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.official-links .smallLink {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  padding: 9px 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none !important;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), filter .25s var(--ease);
}

.official-links .smallLink:visited,
.official-links .smallLink:focus,
.official-links .smallLink:hover {
  text-decoration: none !important;
}

.official-links .smallLink:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 178, 94, .5);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45), 0 0 26px rgba(214, 178, 94, .22);
  filter: brightness(1.05)
}

.official-links .smallLink .icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: #fff
}

.official-links {
  margin-top: 24px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.official-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
}

.card__cta-row {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.spot__head-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.record-kicker {
  margin-bottom: 12px;
}

.record-note {
  margin-top: 32px;
}

.record-note__title {
  margin-bottom: 10px;
}

.map__frame {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}

/* ---------- Ring Mundial Section ---------- */
.ring-hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vh, 80px) 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(225, 6, 0, .18), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(214, 178, 94, .16), transparent 62%),
    linear-gradient(180deg, rgba(10, 10, 12, .94) 0%, rgba(8, 8, 10, .96) 100%);
}

.ring-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 210deg at 40% 10%, rgba(225, 6, 0, .14), transparent 25%),
    linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 6px);
  opacity: .28;
  pointer-events: none;
  animation: ringShine 9s ease-in-out infinite;
}

.ring-hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(225, 6, 0, .24) 0%, rgba(225, 6, 0, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
  animation: ringGlow 7s ease-in-out infinite alternate;
}

.ring-container {
  max-width: min(1280px, calc(100% - 2*clamp(18px, 4vw, 34px)));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.ring-label {
  color: #D6B25E;
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  opacity: .92;
}

.ring-label::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(214, 178, 94, .9), rgba(214, 178, 94, 0));
}

.ring-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.ring-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 178, 94, .18);
  background: rgba(214, 178, 94, .08);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

/* Typography Utilities */
.h1-like {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  /* Matches H1 scale */
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 0.95;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ring-text h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 5.2vw, 64px);
  color: #fff;
  line-height: 1.01;
  margin-bottom: 22px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.ring-hero .accent {
  color: var(--red);
  text-shadow: 0 0 18px rgba(225, 6, 0, .25);
}

.ring-text h2 .accent {
  display: block;
  font-size: 0.5em;
  /* Half size */
  letter-spacing: .12em;
  color: var(--red);
  /* Punchy Red */
  text-shadow: 0 0 15px rgba(225, 6, 0, 0.4);
  /* Glow */
  margin-top: 8px;
}

.ring-text p {
  color: var(--muted);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.7;
  margin-bottom: 12px;
}

.ring-text p:last-of-type {
  margin-bottom: 18px;
}

.ring-lead {
  color: #fff;
  font-weight: 700;
}

.ring-quote {
  margin: 6px 0 22px;
  padding: 12px 0 12px 18px;
  border-left: 3px solid rgba(214, 178, 94, .7);
  color: #fff;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(214, 178, 94, .12), transparent 70%);
}

.ring-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-bottom: 16px;
}

.ring-fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(10, 10, 12, .55);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.ring-fact strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
}

.ring-cta {
  margin-bottom: 12px;
}

.ring-statement {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #fff;
  font-weight: 700;
  border-left: 3px solid var(--red);
  padding: 8px 0 8px 20px;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: linear-gradient(90deg, rgba(225, 6, 0, .16), transparent 70%);
}

.ring-text {
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 16, 18, .78), rgba(12, 12, 14, .52));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 620px;
  position: relative;
}

.ring-text::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 94, .16) 0%, rgba(214, 178, 94, 0) 70%);
  opacity: .6;
  pointer-events: none;
}

.ring-image {
  position: relative;
  padding: clamp(12px, 1.6vw, 18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(10, 10, 12, .92), rgba(10, 10, 12, .92));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .7);
  transform: rotate(-2deg);
  animation: ringFloat 6s ease-in-out infinite;
}

.ring-cover-link {
  display: block;
}

.ring-image__vignette,
.ring-image__grain {
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}

.ring-image__vignette {
  background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .45) 100%);
  mix-blend-mode: multiply;
}

.ring-image__grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  opacity: .12;
  mix-blend-mode: overlay;
}

.ring-image::before {
  content: "RING MUNDIAL";
  position: absolute;
  top: -14px;
  left: 22px;
  padding: 6px 12px;
  font-family: "Anton", sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #0B0B0D;
  background: linear-gradient(90deg, #D6B25E, #F6D983);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(214, 178, 94, .25);
}

.ring-image::after {
  content: "Issue 529 • 1974";
  position: absolute;
  bottom: -14px;
  right: 22px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  background: rgba(14, 14, 16, .85);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
}

html[lang="es"] .ring-image::after {
  content: "Numero 529 • 1974";
}

.ring-image img {
  width: 100%;
  transform: rotate(-.6deg);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .62);
  transition: transform .5s ease, box-shadow .5s ease;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #0B0B0D;
  opacity: .9;
  position: relative;
  z-index: 1;
}

.ring-image img:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .7);
}

@keyframes ringFloat {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(-1deg) translateY(-8px);
  }
}

@keyframes ringShine {

  0%,
  100% {
    opacity: .24;
  }

  50% {
    opacity: .38;
  }
}

@keyframes ringGlow {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.08);
    opacity: .9;
  }
}

@media (max-width: 900px) {
  .ring-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .ring-image {
    order: -1;
    transform: rotate(0deg);
    animation: ringFloatMobile 5s ease-in-out infinite !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  }

  .ring-text {
    max-width: none;
    padding: 0 10px;
    /* Prevent edge touching */
  }

  .ring-badges {
    justify-content: center;
    gap: 12px;
  }

  .ring-facts {
    grid-template-columns: 1fr;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .ring-image::before,
  .ring-image::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 5;
    /* Ensure they sit on top */
  }

  /* Adjust badge position for Mobile Float */
  .ring-image::before {
    top: -10px;
  }

  .ring-image::after {
    bottom: -10px;
  }
}

@keyframes ringFloatMobile {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .ring-hero::before,
  .ring-hero::after,
  .ring-image {
    animation: none !important;
  }
}

/* Magazine Cover Sheen Overlay */
.ring-cover-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  /* Matches inner image radius */
  /* Ensure mask clips the sheen */
  mask-image: -webkit-radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.ring-cover-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg,
      transparent 0%,
      rgba(255, 255, 255, 0.0) 30%,
      rgba(255, 255, 255, 0.4) 45%,
      /* Intense white streak */
      rgba(255, 255, 255, 0.0) 60%,
      transparent 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 10;
  transition: none;
  /* Reset for JS or just use simple hover */
}

/* Hover transition */
.ring-cover-link:hover::after {
  left: 200%;
  transition: left 0.75s ease-in-out;
}

/* Footer Styles */
.footer {
  margin-top: 0;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #0E0E10 0%, #1a0505 100%);
  /* Subtle dark red fade */
  position: relative;
}

/* Optional: Add a top glow */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.3;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  letter-spacing: 0.05em;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* Footer Actions */
.footer__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .footer__right {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .footer__social {
    width: 100%;
    justify-content: center;
  }
}

/* Facebook - Champion Gold Redesign */
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  /* Generous pill spacing */
  background: transparent;
  border: 1px solid var(--gold);
  /* The Champion Color */
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  position: relative;
  text-decoration: none;
  width: auto;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.social-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

/* Hover: Fill Gold, Text Black */
.footer__social:hover {
  background: var(--gold);
  box-shadow: 0 0 20px rgba(214, 178, 94, 0.4);
  /* Gold Glow */
  transform: translateY(-2px);
  text-decoration: none;
  /* Force NO underline */
}

.footer__social:hover .social-label {
  color: #000;
  /* Black contrast on Gold */
  text-decoration: none;
}

.footer__social:hover .social-icon {
  color: #000;
  transform: none;
  /* No scaling, just color shift */
}

/* Back to Top - Lift Button */
.back-to-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}

.arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}

.arrow-wrap svg {
  transition: transform 0.3s var(--ease);
}

.back-to-top:hover {
  color: var(--gold);
}

.back-to-top:hover .arrow-wrap {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(214, 178, 94, 0.3);
}

.back-to-top:hover .arrow-wrap svg {
  transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox__close:hover {
  opacity: 1;
}

/* Error Page */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Golden Bell Section Divider */
.section-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0;
  overflow: visible;
  border: none;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D6B25E' width='24' height='24'%3E%3Cpath d='M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--bg);
  /* Mask line behind it */
  padding: 0 10px;
  box-shadow: 0 0 15px rgba(214, 178, 94, 0.2);
  border-radius: 50%;
}

/* FIX MOBILE MENU GHOST SPACE */
@media (max-width: 980px) {

  /* RESTORE GLOBAL RESETS */
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    scroll-padding-top: 0 !important;
    background-color: #0E0E10 !important;
  }

  main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* Reset Spaced Modifier explicitly */
  .hero__grid--spaced {
    margin-top: 0 !important;
    padding-top: 20px !important;
    /* Reduced from 80px */
  }

  /* Collapse container completely so it takes ZERO space */
  .topbar {
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    /* Allow fixed children to be seen */
    pointer-events: none !important;
  }

  .topbar__inner {
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
  }

  /* Hide desktop nav items if they aren't already */
  .nav {
    display: none !important;
  }

  /* Ensure Language Toggle creates NO layout space */
  #langToggle {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    margin: 0 !important;
    pointer-events: auto !important;
  }

  /* Ensure burger is visible and clickable */
  .burger {
    pointer-events: auto !important;
  }

  /* RESTORE HERO EFFECTS with Safe Stacking */
  .hero {
    z-index: 1 !important;
    /* New stacking context */
    isolation: isolate !important;
  }

  /* 1. Background Image (Bottom) */
  .hero__bg {
    z-index: -2 !important;
    /* Kept at -2 but inside .hero context? No, .hero has no z-index in override yet.
       Let's use local stacking relative to .hero if possible.
       Actually, safe bet: use 0, 1, 2 and force .hero to be 0 or auto.
    */
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    opacity: 1 !important;
  }

  /* 2. Overlay (Middle) */
  .hero__overlay {
    height: 100dvh !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: -1 !important;
    opacity: 0.85 !important;
    /* restore transparency */
  }

  /* 3. Particles (Top of bg group) */
  .hero__particles {
    height: 100dvh !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 0 !important;
  }

  /* Fix 'Red Particle' Glow */
  .hero__glow {
    position: fixed !important;
    /* Fixed background effect */
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -20%) !important;
    width: 120% !important;
    height: 50vh !important;
    z-index: -1 !important;
    /* Behind particles/content */
    opacity: 0.8 !important;
    filter: blur(40px) !important;
    pointer-events: none !important;
  }

  /* 4. Grid Content (Highest) */
  .hero__grid {
    position: relative !important;
    z-index: 10 !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure copy doesn't blow out width */
  .hero__copy {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Ensure Story/Content sits ABOVE the fixed glow */
  .grid2 {
    position: relative !important;
    z-index: 2 !important;
  }

  /* Sync Portrait Card Animation (Mobile Only) */
  /* Force it to appear with hero, ignoring scroll reveal */
  .hero__grid .card--portrait {
    animation: fadeInUp 0.8s var(--ease) 0.6s both !important;
    opacity: 1 !important;
    /* Ensure visibility if animation fails, but fill-mode handles it */
    transform: translateY(0) !important;
  }
}