/* Creators AI Hologram Boxing — Brand Risk-style site theme */
:root {
  --black: #000000;
  --bg-dark: #050508;
  --bg-card: #0a0a12;
  --neon-blue: #00aeef;
  --neon-blue-dim: #0077aa;
  --gold: #ffc107;
  --gold-dark: #e6a800;
  --white: #ffffff;
  --gray: #8a8a9a;
  --gray-light: #c8c8d4;
  --border: rgba(0, 174, 239, 0.25);
  --glow-blue: 0 0 20px rgba(0, 174, 239, 0.5), 0 0 40px rgba(0, 174, 239, 0.2);
  --glow-gold: 0 0 20px rgba(255, 193, 7, 0.4);
  --font-display: "Orbitron", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-script: "Permanent Marker", cursive;
  --nav-height: 72px;
  --countdown-height: 0px;
  --header-stack: var(--nav-height);
  --max-width: 1280px;
  --section-gap: 100px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-stack);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.site-nav.scrolled { background: rgba(0, 0, 0, 0.95); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-logo-icon,
.nav-logo-img {
  width: 36px;
  height: 36px;
  border: 2px solid var(--neon-blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--glow-blue);
  font-size: 1rem;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--neon-blue); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.nav-cta {
  padding: 0.55rem 1.25rem;
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-gold);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: calc(100vh - var(--header-stack));
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 2rem;
  overflow: visible;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero:has(.hero-dropdown.is-open) {
  z-index: 500;
}

.hero--video {
  min-height: 100vh;
  min-height: 100svh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.35) 0%, rgba(5, 5, 8, 0.6) 50%, rgba(5, 5, 8, 0.82) 100%),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 174, 239, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0, 174, 239, 0.08) 0%, transparent 60%),
    var(--black);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 174, 239, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-content--overlay {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  padding-block: 6rem 5rem;
}

.hero-content--overlay .hero-desc {
  margin-inline: auto;
}

.hero-content--overlay .hero-actions {
  justify-content: center;
  overflow: visible;
}

.hero-text,
.hero-actions,
.hero-dropdown {
  overflow: visible;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--neon-blue);
  color: var(--white);
  background: rgba(0, 174, 239, 0.1);
  box-shadow: var(--glow-blue);
}

.hero-badge strong {
  color: var(--neon-blue);
  font-weight: 900;
}

.hero-badge--gold {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 193, 7, 0.08);
  box-shadow: var(--glow-gold);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    0 0 20px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(255, 255, 255, 0.15);
  margin-bottom: 1.25rem;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--neon-blue);
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 174, 239, 0.22);
  box-shadow:
    var(--glow-blue),
    inset 0 0 12px rgba(0, 174, 239, 0.15);
  text-shadow: 0 0 12px rgba(0, 174, 239, 0.8);
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero-title .line1 {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
}

.hero-title .line2 {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--neon-blue);
  text-shadow: var(--glow-blue);
  letter-spacing: 0.02em;
}

.hero-title .line3 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: var(--glow-gold);
  margin-top: 0.15em;
}

.hero-desc {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 1.5rem 0 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-dropdown {
  position: relative;
}

.hero-dropdown-toggle {
  cursor: pointer;
}

.hero-dropdown-chevron {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.15rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
}

.hero-dropdown.is-open .hero-dropdown-chevron {
  transform: rotate(-135deg) translateY(1px);
}

.hero-dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 16rem;
  width: max-content;
  max-width: min(18rem, calc(100vw - 2rem));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), var(--glow-blue);
  padding: 0.35rem;
  z-index: 1100;
}

.hero-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.hero-dropdown-item:hover,
.hero-dropdown-item:focus-visible {
  background: rgba(0, 174, 239, 0.12);
  color: var(--white);
  outline: none;
}

.hero-dropdown-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.hero-dropdown-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.hero-dropdown-item:hover .hero-dropdown-meta,
.hero-dropdown-item:focus-visible .hero-dropdown-meta {
  color: var(--gray-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--neon-blue);
  color: var(--black);
  box-shadow: var(--glow-blue);
}

.btn-primary:hover { box-shadow: 0 0 30px rgba(0, 174, 239, 0.7); }

.btn-outline {
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
}

.btn-outline:hover { background: rgba(0, 174, 239, 0.1); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--glow-gold);
}

/* Hologram boxer visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hologram-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border: 2px solid var(--neon-blue);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--glow-blue), inset 0 0 60px rgba(0, 174, 239, 0.1);
}

.hologram-dome {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0, 174, 239, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #0a1020 0%, #050508 50%, #001520 100%);
}

.hologram-city {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  opacity: 0.4;
}

.hologram-city span {
  width: 8px;
  background: linear-gradient(180deg, var(--neon-blue), transparent);
  border-radius: 1px 1px 0 0;
}

.hologram-city span:nth-child(1) { height: 40px; }
.hologram-city span:nth-child(2) { height: 70px; }
.hologram-city span:nth-child(3) { height: 55px; }
.hologram-city span:nth-child(4) { height: 90px; }
.hologram-city span:nth-child(5) { height: 45px; }
.hologram-city span:nth-child(6) { height: 80px; }
.hologram-city span:nth-child(7) { height: 60px; }

.hologram-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0, 174, 239, 0.3));
  border-top: 1px solid rgba(0, 174, 239, 0.5);
}

.hologram-boxer {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 280px;
}

.boxer-wireframe {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px var(--neon-blue)) drop-shadow(0 0 20px rgba(0, 174, 239, 0.5));
  animation: hologramPulse 3s ease-in-out infinite;
}

@keyframes hologramPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; filter: drop-shadow(0 0 12px var(--neon-blue)) drop-shadow(0 0 30px rgba(0, 174, 239, 0.7)); }
}

.hologram-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  background: rgba(0, 20, 40, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--glow-blue);
}

.hologram-badge .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--neon-blue);
  line-height: 1;
}

.hologram-badge .label {
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 2px;
}

.prize-banner {
  position: absolute;
  bottom: 28%;
  left: -5%;
  right: -5%;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
  box-shadow: var(--glow-gold);
}

/* ── Prize bar ── */
.prize-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Features strip ── */
.features-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-dark);
  padding: 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--neon-blue);
  background: rgba(0, 174, 239, 0.05);
  overflow: hidden;
}

.feature-icon img,
.fighter-avatar img,
.social-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

/* ── Social marquee (BrandRisk-style auto scroll) ── */
.social-marquee-section {
  border-block: 1px solid var(--border);
  border-top: 4px solid var(--border);
  background: var(--bg-card);
  padding: 4rem 0;
  overflow: hidden;
}

.social-marquee-header {
  text-align: center;
  margin-bottom: 0;
}

.social-marquee {
  position: relative;
  margin-top: 2.5rem;
}

.social-marquee-viewport {
  position: relative;
  height: clamp(320px, 55vh, 480px);
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 1rem;
  overflow: hidden;
}

.social-marquee-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(48px, 10vh, 96px);
  z-index: 2;
  pointer-events: none;
}

.social-marquee-fade--top {
  top: 0;
  background: linear-gradient(180deg, var(--bg-card) 20%, transparent);
}

.social-marquee-fade--bottom {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg-card) 20%, transparent);
}

.social-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: social-marquee-scroll 50s linear infinite;
}

.social-marquee-track:hover {
  animation-play-state: paused;
}

.social-marquee-post {
  flex: 0 0 auto;
  width: 100%;
}

@keyframes social-marquee-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .social-marquee-viewport {
    height: auto;
    overflow: visible;
  }

  .social-marquee-track {
    animation: none;
  }

  .social-marquee-fade { display: none; }
}

/* ── Section headers ── */
.section {
  padding-block: var(--section-gap);
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-subtitle {
  color: var(--gray);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.view-all-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-blue);
  border-bottom: 1px solid var(--neon-blue);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.view-all-link:hover { opacity: 0.7; }

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a1520, #001830);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-video,
.section-video,
.gallery-video,
.booking-video,
.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8));
}

.card-image-icon {
  font-size: 3rem;
  opacity: 0.6;
  z-index: 1;
}

.card-image > img.card-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card-image:has(.card-video) .card-image-icon,
.card-image:has(img.card-cover) .card-image-icon {
  display: none;
}

.card-body { padding: 1.25rem; }

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.card-meta .latest {
  color: var(--gold);
  font-weight: 600;
}

/* ── Athletes / Fighters row ── */
.fighters-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-blue) var(--bg-dark);
}

.fighters-scroll::-webkit-scrollbar { height: 4px; }
.fighters-scroll::-webkit-scrollbar-track { background: var(--bg-dark); }
.fighters-scroll::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 2px; }

.fighter-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  text-align: center;
}

.fighter-card-profile {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fighter-countdown {
  margin-top: 0.75rem;
  padding: 0.5rem 0.25rem;
  font-size: 0.7rem;
}

.fighter-countdown .countdown-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.fighter-countdown .countdown-timer {
  gap: 0.5rem;
  font-size: 0.65rem;
}

.fighter-countdown .countdown-timer strong {
  font-size: 0.95rem;
}

.fighter-ticket-btn,
.fight-ticket-btn {
  display: none;
  margin-top: 0.65rem;
  padding: 0.55rem 1rem;
  font-size: 0.65rem;
  width: 100%;
  justify-content: center;
}

.fighter-card.is-live .fighter-ticket-btn,
.fight-card.is-live .fight-ticket-btn,
.fighter-detail-card.is-live .fighter-ticket-btn {
  display: inline-flex;
}

.fighter-card.is-live .fighter-countdown .countdown-timer,
.fight-card.is-live .fight-countdown .countdown-timer,
.fighter-detail-card.is-live .fighter-countdown .countdown-timer {
  display: none;
}

/* ── Fight cards (BrandRisk-style) ── */
.section--fights {
  background: linear-gradient(180deg, transparent, rgba(0, 21, 32, 0.4) 30%, transparent);
}

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

.fight-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.fight-card:hover {
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

.fight-card-poster {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1520, #001830);
}

.fight-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.fight-card-footer {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--border);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.fight-venue {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}

.fight-matchup {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.45;
  max-width: 100%;
}

.fight-matchup span {
  color: var(--neon-blue);
  margin: 0 0.3rem;
  font-weight: 400;
}

.fight-countdown {
  width: 100%;
  margin-top: 0.25rem;
}

.fight-countdown .countdown-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.fight-countdown-timer {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gray-light);
}

.fight-countdown-timer strong {
  display: block;
  font-size: 1.15rem;
  color: var(--neon-blue);
}

.fight-ticket-btn {
  width: auto;
  min-width: 180px;
}

.fight-cta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-blue);
  text-decoration: none;
  margin-top: 0.15rem;
  transition: color 0.2s;
}

.fight-cta:hover {
  color: var(--white);
}

.fight-card.is-live .fight-cta {
  display: none;
}

@media (max-width: 768px) {
  .fights-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
  }

  .fight-card {
    width: min(100%, 20rem);
    aspect-ratio: 9 / 16;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .fight-card-poster {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    min-height: 0;
  }

  .fight-card-footer {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    z-index: 2;
    width: 100%;
    min-height: 0;
    border-top: none;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.9) 30%, var(--bg-card) 72%);
    padding: 1rem 1rem 1.1rem;
  }

  .fight-matchup {
    font-size: 0.72rem;
  }

  .fight-countdown-timer {
    gap: 0.5rem;
  }

  .fight-countdown-timer strong {
    font-size: 1rem;
  }

  .fight-ticket-btn {
    min-width: 0;
    width: 100%;
  }
}

.fighter-detail-card .fighter-countdown {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.fighter-detail-card .fighter-ticket-btn {
  width: 100%;
}

.fighter-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  background: linear-gradient(135deg, #0a1520, #001830);
  display: grid;
  place-items: center;
  font-size: 3rem;
  box-shadow: var(--glow-blue);
  transition: transform 0.3s;
  overflow: hidden;
}

.fighter-card:hover .fighter-avatar { transform: scale(1.05); }

.fighter-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.fighter-role {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ── Social feed ── */
.social-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.social-post {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  transition: border-color 0.3s;
}

.social-post:hover { border-color: var(--neon-blue); }

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

.social-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), #005577);
  display: grid;
  place-items: center;
  font-size: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.social-name {
  font-weight: 700;
  font-size: 0.85rem;
}

.social-handle {
  font-size: 0.75rem;
  color: var(--gray);
}

.social-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.social-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── Stream stories (9:16 Kick / Twitch) ── */
.stream-stories-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.stream-stories {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 3rem;
  margin: 0 -0.5rem;
}

.stream-stories::-webkit-scrollbar { display: none; }

.stream-stories-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(5, 5, 8, 0.92);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, opacity 0.25s, transform 0.25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.stream-stories-nav svg {
  width: 22px;
  height: 22px;
  display: block;
}

.stream-stories-nav:hover:not(:disabled) {
  border-color: var(--neon-blue);
  background: rgba(0, 174, 239, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.stream-stories-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stream-stories-nav--prev { left: 0.25rem; }
.stream-stories-nav--next { right: 0.25rem; }

.stream-story {
  position: relative;
  display: block;
  flex: 0 0 min(260px, 72vw);
  width: min(260px, 72vw);
  aspect-ratio: 9 / 16;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: #000;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.stream-story:hover {
  border-color: var(--neon-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 174, 239, 0.2);
}

.stream-story-media {
  position: absolute;
  inset: 0;
}

.stream-story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stream-story-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 28%, transparent 62%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

.stream-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.stream-story-live {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ff4444;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.stream-story-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.stream-story-platform {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.stream-story-platform--kick {
  background: rgba(83, 252, 24, 0.18);
  color: #53fc18;
  border-color: rgba(83, 252, 24, 0.35);
}

.stream-story-platform--twitch {
  background: rgba(145, 70, 255, 0.22);
  color: #bf94ff;
  border-color: rgba(145, 70, 255, 0.4);
}

.stream-story-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stream-story-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stream-story-handle {
  font-size: 0.8rem;
  color: var(--gray-light);
}

.stream-story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--gray);
}

.stream-schedule-note {
  max-width: 720px;
  margin-inline: auto;
}

.stream-schedule-link {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s;
}

.stream-schedule-link:hover {
  border-color: var(--neon-blue);
}

.stream-schedule-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.stream-schedule-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.55;
}

.stream-schedule-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

@media (min-width: 768px) {
  .stream-stories {
    gap: 1.25rem;
    padding-inline: 3.5rem;
  }

  .stream-story {
    flex-basis: 280px;
    width: 280px;
  }

  .stream-stories-nav--prev { left: 0; }
  .stream-stories-nav--next { right: 0; }
}

/* ── Booking CTA ── */
.booking-section {
  padding-block: 4rem;
}

.booking-section--video {
  position: relative;
  overflow: hidden;
}

.booking-section--video .container {
  position: relative;
  z-index: 2;
}

.booking-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.85), rgba(5, 5, 8, 0.92));
}

.booking-section--video .booking-box {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 174, 239, 0.12) 0%, transparent 60%),
    rgba(10, 15, 25, 0.85);
}

/* ── Section video banner ── */
.section-video-wrap {
  position: relative;
  aspect-ratio: 21/9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  box-shadow: var(--glow-blue);
}

.section-video-wrap .section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-video-label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section-video-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.section-video-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.booking-box {
  border: 2px solid var(--neon-blue);
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 174, 239, 0.08) 0%, transparent 60%),
    var(--bg-card);
  box-shadow: var(--glow-blue);
}

.booking-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--neon-blue);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.booking-box .sub {
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.booking-box .highlight {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.5rem 0;
}

.booking-box .tagline {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ── Partners ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.partner-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: border-color 0.3s;
}

.partner-logo:hover { border-color: var(--neon-blue); color: var(--white); }

.partner-cta {
  text-align: center;
  margin-top: 2rem;
}

.partner-cta p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.partner-cta a { color: var(--neon-blue); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-light);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--neon-blue); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

/* ── Page hero (subpages) ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 174, 239, 0.1) 0%, transparent 70%),
    var(--black);
}

.page-hero .section-label { margin-bottom: 0.75rem; }

.page-hero .section-title { margin-bottom: 0.75rem; }

.page-hero .section-subtitle { max-width: 600px; margin-inline: auto; }

/* ── Blog article ── */
.article-content {
  max-width: 760px;
  margin-inline: auto;
  padding-bottom: 4rem;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--white);
}

.article-content p {
  color: var(--gray-light);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.article-content blockquote {
  border-left: 3px solid var(--neon-blue);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(0, 174, 239, 0.05);
  font-style: italic;
  color: var(--gray-light);
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--neon-blue);
  margin-bottom: 2rem;
  transition: opacity 0.2s;
}

.back-link:hover { opacity: 0.7; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 18, 0.95);
  border-top: 1px solid var(--border);
  padding: 1rem;
  display: none;
  backdrop-filter: blur(8px);
}

.cookie-banner.show { display: block; }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.85rem;
  color: var(--gray-light);
  flex: 1;
  min-width: 200px;
}

.cookie-inner a { color: var(--neon-blue); }

.cookie-actions { display: flex; gap: 0.75rem; }

.cookie-actions button {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
}

.cookie-accept {
  background: var(--neon-blue);
  color: var(--black);
}

.cookie-essential {
  border: 1px solid var(--border);
  color: var(--gray-light);
}

/* ── Forms & utilities ── */
.booking-form.hidden { display: none; }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--gold); font-family: var(--font-display); }
.form-success.show { display: block; }
.hidden { display: none !important; }

.feature-item[data-feature-link]:hover .feature-icon {
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.card[data-link]:hover { border-color: var(--neon-blue); }
.episode-list .card { cursor: pointer; }
.episode-list .card:focus-visible { outline: 2px solid var(--neon-blue); outline-offset: 2px; }

/* ── Countdown banner ── */
.countdown-bar {
  background: linear-gradient(90deg, #001520, #002840, #001520);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  min-height: var(--countdown-height);
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: var(--nav-height);
  position: sticky;
  top: var(--nav-height);
  z-index: 900;
}

.countdown-bar a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
}

.countdown-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gray-light);
}

.countdown-timer strong {
  display: block;
  font-size: 1.4rem;
  color: var(--neon-blue);
}

.countdown-live { color: var(--gold); font-family: var(--font-display); font-weight: 700; letter-spacing: 0.1em; }

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

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

.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--neon-blue);
  box-shadow: var(--glow-blue);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.step-card p { font-size: 0.85rem; color: var(--gray); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin-inline: auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after { content: "+"; color: var(--neon-blue); font-size: 1.2rem; }
.faq-item.open .faq-question::after { content: "−"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  color: var(--gray-light);
  font-size: 0.9rem;
}

.tiktok-coming-soon .social-feed,
.streams-coming-soon .social-feed {
  position: relative;
}

.tiktok-soon-badge,
.stream-soon-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}

.gallery-item img, .gallery-item svg, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── About page ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  border: 2px solid var(--neon-blue);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--glow-blue);
  position: relative;
  aspect-ratio: 4/3;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

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

.stat-box .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-blue);
}

.stat-box .label { font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.7rem; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .section-video-wrap { aspect-ratio: 16/9; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 60px; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
