/* ============================================================
   AURA 2026 — world-class presentation layer
   Refined · cinematic · registration-led
   ============================================================ */

:root {
  --bg: #05070c;
  --bg-elevated: #0a0e16;
  --bg-card: rgba(14, 18, 28, 0.72);
  --surface: #0e1420;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(120, 160, 255, 0.22);
  --text: #f4f6fa;
  --text-2: rgba(244, 246, 250, 0.72);
  --text-3: rgba(244, 246, 250, 0.42);
  --blue: #5b8cff;
  --blue-deep: #3a66d6;
  --blue-soft: #9bb6ff;
  --glow: rgba(91, 140, 255, 0.35);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 999px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-num: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
  font-feature-settings: "ss01" on, "cv11" on;
}
::selection { background: rgba(91, 140, 255, 0.35); color: #fff; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84em;
  color: var(--blue-soft);
  background: rgba(91, 140, 255, 0.1);
  padding: 0.12em 0.4em;
  border-radius: 6px;
}
.container {
  width: min(100% - clamp(1.5rem, 4vw, 2.75rem), var(--max));
  margin-inline: auto;
}

/* Preview banner (DNS not live yet) */
.preview-banner {
  position: relative;
  z-index: 200;
  background: linear-gradient(90deg, rgba(91, 140, 255, 0.16), rgba(91, 140, 255, 0.08));
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.8rem;
  color: var(--text-2);
}
.preview-banner.is-hidden { display: none; }
.preview-banner-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  padding: 0.55rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  line-height: 1.4;
}
.preview-banner strong { color: var(--text); font-weight: 700; }
.preview-banner-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-banner-close:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }

/* Body offset when banner visible */
body.has-preview-banner .nav { top: var(--preview-h, 0px); }
body.has-preview-banner .hero-cinematic { padding-top: calc(var(--nav-h) + var(--preview-h, 0px) + 2rem); }

/* Soft atmosphere — minimal, not noisy */
.noise {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.bg-glow {
  position: fixed; width: 50vw; height: 50vw; border-radius: 50%;
  filter: blur(140px); pointer-events: none; z-index: 0; opacity: 0.12;
}
.bg-glow-1 { top: -20vw; right: -12vw; background: #2a4fbf; }
.bg-glow-2 { bottom: 0; left: -18vw; background: #1a2f70; opacity: 0.1; }

/* ─── NAV ─── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(100% - clamp(1.5rem, 4vw, 2.75rem), var(--max));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  transition: opacity 0.25s;
}
.brand:hover { opacity: 0.85; }
.brand img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.12em;
}
.brand-text span {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-3); font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem; font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-full);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav-cta {
  margin-left: 0.4rem !important;
  padding: 0.55rem 1.1rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 8px 24px -6px var(--glow);
}
.nav-cta:hover {
  filter: brightness(1.06);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%) !important;
}
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--text); border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

/* ─── BUTTONS ─── */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.4rem; border-radius: var(--radius-full);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1.05rem 1.65rem; font-size: 0.95rem; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 12px 32px -8px var(--glow);
}
.btn-primary:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 16px 40px -6px var(--glow);
}
.btn-shine {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 5s var(--ease) infinite;
}
@keyframes shine {
  0%, 65% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  border-color: rgba(120, 160, 255, 0.4);
  background: rgba(91, 140, 255, 0.08);
}

/* ─── HERO ─── */
.hero-cinematic {
  position: relative; z-index: 1;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img, .hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transform: scale(1.04);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(0, -1.5%, 0); }
}
.hero-bg-video {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.hero-bg-video.is-on {
  opacity: 0.88 !important;
  filter: saturate(1.02) contrast(1.04) brightness(0.98);
}
.hero-bg-shade {
  position: absolute; inset: 0;
  /* Keep mid-frame clearer so trailer sport titles (KABADDI / FOOTBALL) stay legible;
     darken top for nav + bottom for site type stack */
  background:
    linear-gradient(180deg,
      rgba(5, 7, 12, 0.62) 0%,
      rgba(5, 7, 12, 0.22) 22%,
      rgba(5, 7, 12, 0.12) 42%,
      rgba(5, 7, 12, 0.35) 58%,
      rgba(5, 7, 12, 0.82) 78%,
      rgba(5, 7, 12, 0.97) 100%),
    linear-gradient(90deg, rgba(5, 7, 12, 0.55) 0%, rgba(5, 7, 12, 0.12) 38%, transparent 55%);
}
.hero-bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 120px 40px rgba(5, 7, 12, 0.5);
}
/* Mobile: skip drift transform on video (iOS paint + lighter mobile file via JS) */
@media (max-width: 900px) {
  .hero-bg-video {
    transform: none !important;
    animation: none !important;
  }
  .hero-bg-img {
    transform: scale(1.02);
    animation: none;
  }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-top-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem 1.25rem;
  margin-bottom: 1.75rem;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.38rem 0.85rem; border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: rgba(5, 7, 12, 0.45);
  backdrop-filter: blur(12px);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-soft);
}
.live-pill .dot, .badge-soon .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 0 rgba(91, 140, 255, 0.5);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(91, 140, 255, 0.45); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.hero-host {
  font-size: 0.8rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.02em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-soft); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800; line-height: 0.9; letter-spacing: -0.045em;
  margin-bottom: 1.35rem;
}
.hero-title-line {
  display: block;
  font-size: clamp(4.25rem, 13vw, 8.5rem);
  letter-spacing: -0.05em;
}
.hero-title-year {
  display: block;
  margin-top: 0.08em;
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #e8eeff 0%, var(--blue) 55%, var(--blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 400; color: var(--text-2);
  max-width: 32ch; line-height: 1.5; margin-bottom: 2rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; width: fit-content; max-width: 100%;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 7, 12, 0.4);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.meta-block { padding: 0.95rem 1.3rem; min-width: 7.5rem; }
.meta-label {
  display: block; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 0.3rem;
}
.meta-block strong {
  font-family: var(--font-num); font-size: 0.98rem; font-weight: 600; color: var(--text);
}
.meta-divider { width: 1px; align-self: stretch; background: var(--line); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-scroll {
  position: absolute; right: clamp(1.25rem, 4vw, 2.5rem); bottom: 1.75rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--blue), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.35; transform: scaleY(0.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── MARQUEE ─── */
.marquee {
  position: relative; z-index: 2;
  border-block: 1px solid var(--line);
  background: rgba(8, 10, 16, 0.9);
  overflow: hidden; padding: 0.85rem 0;
}
.marquee-track {
  display: flex; gap: 1.75rem; width: max-content;
  animation: marquee 40s linear infinite;
  /* Match trailer sport title cards: bold condensed uppercase */
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(244, 246, 250, 0.38);
}
.marquee-track span:nth-child(odd) {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.section { position: relative; z-index: 1; padding: clamp(4.5rem, 10vw, 7.5rem) 0; }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 560px; }
.section-head h2, .stats-band-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 750; letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 0.85rem;
}
.section-head p, .section-head .lead {
  color: var(--text-2); font-size: 1.05rem; line-height: 1.6;
}
.lead { font-size: 1.12rem !important; color: var(--text-2) !important; }
.section-light {
  background: linear-gradient(180deg, #f5f7fb 0%, #e9eef7 100%);
  color: #0c1220;
}
.section-light .section-head p { color: #5a6785; }
.section-light .eyebrow { color: var(--blue-deep); }
.section-light .eyebrow::before { background: linear-gradient(90deg, var(--blue-deep), transparent); }
.section-head.dark h2 { color: #0c1220; }

/* ─── ABOUT ─── */
.about-split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start; margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-points { display: grid; gap: 0.75rem; }
.about-point {
  display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.85rem;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s;
}
.about-point:hover {
  border-color: var(--line-strong);
  background: rgba(18, 24, 38, 0.85);
  transform: translateX(3px);
}
.ap-num {
  font-family: var(--font-num); font-size: 0.8rem; font-weight: 600;
  color: var(--blue); letter-spacing: 0.06em; padding-top: 0.2rem;
}
.about-point h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.3rem;
}
.about-point p { color: var(--text-2); font-size: 0.92rem; line-height: 1.5; }
.cinema-strip {
  display: grid; grid-template-columns: 1.15fr 0.9fr 1.05fr; gap: 0.85rem;
}
.cinema-frame {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); min-height: 260px;
  box-shadow: var(--shadow);
}
.cinema-frame.tall { min-height: 320px; transform: translateY(-12px); }
.cinema-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.cinema-frame:hover img { transform: scale(1.04); }
.cinema-frame figcaption { display: none; }

/* Follow us on Instagram — dual pages */
.ig-follow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin-top: 2.25rem;
  padding: 1.4rem 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(12, 16, 26, 0.72);
}
.ig-follow-copy h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.2rem 0 0.3rem;
}
.ig-follow-copy p { color: var(--text-2); font-size: 0.92rem; }
.ig-follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.ig-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem 0.7rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(91, 140, 255, 0.08);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.ig-chip:hover {
  border-color: rgba(120, 160, 255, 0.5);
  background: rgba(91, 140, 255, 0.14);
  transform: translateY(-1px);
}
.ig-chip-mark {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
}
.ig-chip strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.ig-chip em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 0.1rem;
}
.reg-ig { margin-top: 1.15rem; }

/* ─── STATS ─── */
.stats-band {
  position: relative; z-index: 1;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(59, 102, 214, 0.1), transparent 55%),
    var(--bg);
  border-block: 1px solid var(--line);
}
.stats-band-head { margin-bottom: 2.25rem; max-width: 480px; }
.stats-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
.stat-xl {
  background: var(--bg-elevated);
  padding: 1.6rem 0.9rem; text-align: center;
  transition: background 0.3s;
}
.stat-xl:hover { background: #101624; }
.stat-xl-num {
  display: block;
  font-family: var(--font-num);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.stat-xl-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3);
}

/* ─── EDITIONS / FILM ─── */
.editions {
  background: linear-gradient(180deg, var(--bg) 0%, #080b12 50%, var(--bg) 100%);
}

/* Curated film layout — 1 feature + 2 sides (not a wall of loops) */
.film-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.film-feature {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 14, 22, 0.9);
  box-shadow: var(--shadow);
}
.film-feature-player {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #05070c;
}
.film-feature-player video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
/* soft edge wash so any residual on-screen titles don’t clash with site UI */
.film-feature-player::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.2) 0%, transparent 18%, transparent 78%, rgba(5, 7, 12, 0.45) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 55%, rgba(5, 7, 12, 0.25) 100%);
}
.film-feature-meta { padding: 1.25rem 1.4rem 1.4rem; }
.film-feature-meta h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em;
  margin: 0.35rem 0 0.4rem;
}
.film-feature-meta p { color: var(--text-2); font-size: 0.92rem; line-height: 1.5; }
.film-label {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-soft);
  margin-bottom: 0.25rem;
}
.film-side { display: grid; gap: 0.85rem; }
.film-side-card {
  display: grid; grid-template-rows: 1fr auto;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(12, 16, 26, 0.8);
  transition: border-color 0.35s, transform 0.4s var(--ease-out);
  min-height: 0;
}
.film-side-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.film-side-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #080b12;
  overflow: hidden;
}
/* Always-visible thumbnail — exact cover fit, no double-grading */
.film-side-media .film-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.film-side-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.45s ease;
  /* light grade so clip matches pre-graded thumb */
  filter: brightness(0.96) saturate(0.96) contrast(1.02);
}
.film-side-media video.is-ready { opacity: 1; }
.film-side-media::after {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.12) 0%, transparent 35%, rgba(5, 7, 12, 0.55) 100%);
}
.watch-play {
  position: absolute; z-index: 3;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 7, 12, 0.55);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  font-size: 0.8rem; color: #fff;
  pointer-events: none;
  transition: transform 0.3s, background 0.3s;
}
.film-side-card:hover .watch-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(91, 140, 255, 0.35);
}
.film-side-body { padding: 1rem 1.15rem 1.15rem; }
.film-side-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  margin: 0.25rem 0 0.45rem;
}
.watch-link { font-size: 0.8rem; font-weight: 600; color: var(--blue-soft); }

/* About cinema frames with optional video */
.cinema-frame.media-live video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 1;
  filter: brightness(0.9) saturate(0.92);
}
.cinema-frame.media-live video.is-ready { opacity: 1; }
.cinema-frame.media-live video.is-ready + .media-fallback { opacity: 0; }
.cinema-frame .media-fallback {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.5s;
}
.cinema-frame.media-live::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.25) 0%, transparent 35%, rgba(5, 7, 12, 0.75) 100%);
}
.cinema-frame figcaption { z-index: 2; }

/* Sport cards — real match footage on hover / in-view */
.sport-media video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  /* dim center slightly so burned-in video titles don’t fight card headings */
  filter: saturate(0.95) brightness(0.94);
}
.sport-media::before {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.15) 0%, transparent 30%, transparent 55%, rgba(5, 7, 12, 0.55) 100%),
    radial-gradient(ellipse 85% 60% at 50% 40%, rgba(5, 7, 12, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.sport-card:hover .sport-media::before,
.sport-media:has(video.is-playing)::before { opacity: 1; }
.sport-media video.is-ready.is-playing { opacity: 1; }
.sport-card:hover .sport-media video.is-ready { opacity: 1; }
.sport-media::after { z-index: 2; }

@media (max-width: 900px) {
  .film-layout { grid-template-columns: 1fr; }
}

/* ─── SPORTS ─── */
.filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.6rem; }
.filter-btn {
  padding: 0.5rem 1rem; border-radius: var(--radius-full);
  border: 1px solid rgba(12, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.8); color: #4a5670;
  font-size: 0.82rem; font-weight: 600;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: rgba(58, 102, 214, 0.35); color: var(--blue-deep); }
.filter-btn.active {
  color: #fff; border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 8px 20px -6px rgba(58, 102, 214, 0.4);
}
.sports-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.sport-card {
  display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 18, 32, 0.05);
  box-shadow: 0 12px 40px -16px rgba(12, 24, 48, 0.18);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease);
}
.sport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -18px rgba(12, 24, 48, 0.28);
}
.sport-card.hidden { display: none; }
.sport-media {
  position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #0a0e16;
}
.sport-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.sport-card:hover .sport-media img { transform: scale(1.06); }
.sport-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 7, 12, 0.35));
}
.sport-body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem; flex: 1;
}
.sport-body h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.02em; color: #0c1220;
}
.sport-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.25rem 0.5rem; border-radius: var(--radius-full);
}
.tag-men { background: rgba(58, 102, 214, 0.1); color: #2a57b0; }
.tag-women { background: rgba(180, 80, 160, 0.1); color: #9a3a88; }
.tag-outdoor { background: rgba(30, 130, 95, 0.1); color: #187a52; }
.tag-indoor { background: rgba(110, 85, 190, 0.1); color: #5540a8; }
.sport-body p { font-size: 0.88rem; color: #5a6785; line-height: 1.5; }
.sport-foot {
  margin-top: auto; padding-top: 0.7rem;
  display: flex; justify-content: space-between; gap: 0.5rem;
  border-top: 1px solid rgba(12, 18, 32, 0.06);
  font-size: 0.75rem; font-weight: 600;
}
.sport-foot .soon { color: var(--blue-deep); }
.sport-foot .type { color: #8a96b0; font-weight: 500; }

/* ─── SCHEDULE ─── */
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.day-card {
  position: relative; overflow: hidden;
  padding: 1.6rem; min-height: 260px;
  border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(18, 24, 38, 0.9), rgba(8, 10, 16, 0.95));
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.day-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.day-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent 70%);
  opacity: 0.8;
}
.day-card.featured {
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px -20px var(--glow);
}
.day-card .day-num {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-soft);
  margin-bottom: 0.55rem;
}
.day-card h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.3rem;
}
.day-card .date { color: var(--text-3); font-size: 0.88rem; margin-bottom: 1.15rem; }
.day-card li {
  display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--text-2);
  margin-bottom: 0.45rem;
}
.day-card li::before {
  content: ""; width: 5px; height: 5px; margin-top: 0.5rem; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; opacity: 0.85;
}

/* ─── REGISTER ─── */
.register-cinema {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 0.7fr; gap: 2rem; align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 24px; border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.register-cinema-bg { position: absolute; inset: 0; z-index: 0; }
.register-cinema-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.18; filter: saturate(0.75);
}
.register-cinema::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 140, 255, 0.22), transparent 42%),
    linear-gradient(140deg, rgba(6, 9, 16, 0.96), rgba(5, 7, 12, 0.94));
}
.register-cinema-content, .qr-box { position: relative; z-index: 2; }
.register-cinema h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 750; letter-spacing: -0.035em; line-height: 1.12;
  margin-bottom: 0.9rem;
}
.reg-lead {
  color: var(--text-2); max-width: 46ch; margin-bottom: 1.2rem; font-size: 1.02rem;
}
.checklist { display: grid; gap: 0.55rem; margin-bottom: 1.4rem; }
.checklist li {
  display: flex; gap: 0.65rem; color: var(--text-2); font-size: 0.92rem;
}
.checklist li::before {
  content: "✓"; color: var(--blue-soft); font-weight: 700; font-size: 0.85rem;
}
.reg-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; }
.badge-soon {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 1rem; border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: rgba(91, 140, 255, 0.08);
  color: var(--blue-soft); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.qr-box {
  justify-self: center; text-align: center; padding: 1.35rem;
  border-radius: 18px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.qr-box img {
  width: 168px; height: 168px; margin: 0 auto 0.8rem;
  border-radius: 12px; background: #080b12;
}
.qr-box strong { display: block; font-size: 0.92rem; margin-bottom: 0.2rem; }
.qr-box p { font-size: 0.8rem; color: var(--text-3); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.contact-card {
  padding: 1.45rem; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(12, 16, 26, 0.65);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.contact-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.contact-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.contact-card p { color: var(--text-2); font-size: 0.92rem; line-height: 1.55; }
.contact-card a { color: var(--blue-soft); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ─── FOOTER ─── */
.footer {
  position: relative; z-index: 1;
  padding: 2.75rem 0 1.75rem;
  border-top: 1px solid var(--line);
  background: #03050a;
}
.footer-top {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.75rem;
  margin-bottom: 1.75rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-brand h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em;
}
.footer-brand p { color: var(--text-3); font-size: 0.82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.15rem; align-items: center; }
.footer-links a { color: var(--text-3); font-size: 0.86rem; font-weight: 500; }
.footer-links a:hover { color: var(--blue-soft); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.65rem;
  padding-top: 1.15rem; border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-3); font-size: 0.78rem;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* Stagger children when parent visible */
.reveal.visible .about-point:nth-child(1) { transition-delay: 0.05s; }
.reveal.visible .about-point:nth-child(2) { transition-delay: 0.12s; }
.reveal.visible .about-point:nth-child(3) { transition-delay: 0.19s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg-img, .hero-bg-video, .marquee-track, .scroll-line, .btn-shine, .live-pill .dot {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .about-split, .editions-layout, .register-cinema { grid-template-columns: 1fr; }
  .cinema-strip { grid-template-columns: 1fr; }
  .cinema-frame.tall { transform: none; min-height: 220px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .sports-grid, .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .qr-box { justify-self: stretch; }
}
@media (max-width: 720px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + var(--preview-h, 0px));
    left: 0; right: 0;
    max-height: calc(100dvh - var(--nav-h) - var(--preview-h, 0px));
    overflow-y: auto;
    background: rgba(5, 7, 12, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem 0.85rem 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a {
    padding: 0.95rem 1rem;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.35rem;
    text-align: center;
    justify-content: center;
  }

  .hero-cinematic {
    min-height: 100svh;
    padding: calc(var(--nav-h) + var(--preview-h, 0px) + 0.85rem) 0 1.5rem;
    align-items: flex-end;
  }
  .hero-content { max-width: none; }
  .hero-top-row { margin-bottom: 1rem; gap: 0.6rem 1rem; }
  .hero-eye, .eyebrow { margin-bottom: 0.6rem; }
  .hero-title { margin-bottom: 0.75rem; }
  .hero-title-line { font-size: clamp(3rem, 16vw, 4.5rem); }
  .hero-title-year { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .hero-tagline {
    font-size: 0.92rem;
    max-width: none;
    margin-bottom: 1.1rem;
    line-height: 1.4;
  }
  .hero-tagline br { display: none; }
  .hero-meta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 1.1rem;
  }
  .meta-block {
    min-width: 0;
    width: 100%;
    padding: 0.6rem 0.55rem;
  }
  .meta-label { font-size: 0.55rem; margin-bottom: 0.2rem; }
  .meta-block strong { font-size: 0.78rem; line-height: 1.25; display: block; }
  .meta-divider { display: none; }
  .meta-block:not(:last-child) { border-right: 1px solid var(--line); }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.6rem;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }
  .hero-scroll { display: none; }

  .section { padding: 3.5rem 0; }
  .section-head h2, .stats-band-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .stats-row,
  .sports-grid,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stat-xl { padding: 1.25rem 1rem; }
  .stat-xl-num { font-size: 1.55rem; }

  .ig-follow {
    flex-direction: column;
    align-items: stretch;
    padding: 1.15rem 1.1rem;
  }
  .ig-follow-links { width: 100%; flex-direction: column; }
  .ig-chip { width: 100%; }

  .register-cinema { padding: 1.25rem; border-radius: 18px; }
  .register-cinema h2 { font-size: 1.55rem; }
  .reg-cta-row { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; min-height: 48px; }
  .qr-box { width: 100%; }
  .qr-box img { width: 150px; height: 150px; }

  .day-card { min-height: 0; }
  .film-feature-player { aspect-ratio: 16 / 11; }
  .cinema-frame { min-height: 200px; }
  .marquee-track { font-size: 0.68rem; letter-spacing: 0.18em; gap: 1.1rem; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
  .preview-banner-inner { font-size: 0.74rem; padding: 0.65rem 0; }
}

@media (max-width: 400px) {
  .hero-title-line { letter-spacing: -0.04em; }
  .brand-text span { display: none; }
}

/* ============================================================
   POST-HERO LEVEL-UP — denser polish for conversion
   (Hero styles above left intact)
   ============================================================ */

.section {
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(720px, 70vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(91, 140, 255, 0.35), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.hero-cinematic + .marquee + .section::before,
.marquee + .section::before { opacity: 0.5; }

.section-head .eyebrow {
  margin-bottom: 0.85rem;
}
.section-head h2 {
  background: linear-gradient(135deg, #fff 0%, #dce6ff 55%, #9bb6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-light .section-head h2,
.section-head.dark h2 {
  background: linear-gradient(135deg, #0c1220 0%, #1a2a4a 60%, #2a57b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Glass panels */
.about-point,
.contact-card,
.day-card,
.stat-xl,
.ig-follow,
.film-feature,
.film-side-card {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03) inset, 0 24px 50px -30px rgba(0,0,0,0.55);
}

.about-point {
  position: relative;
  overflow: hidden;
}
.about-point::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(91,140,255,0.18), transparent 70%);
  pointer-events: none;
}

.stat-xl-num {
  background: linear-gradient(180deg, #fff, #9bb6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sport-card {
  position: relative;
  overflow: hidden;
}
.sport-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(91,140,255,0.35), transparent 40%, transparent 60%, rgba(91,140,255,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 3;
}
.sport-card:hover::before { opacity: 1; }

.day-card.featured {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(91,140,255,0.2), transparent 55%),
    linear-gradient(165deg, rgba(22, 32, 55, 0.95), rgba(8, 10, 16, 0.98));
}

/* Registration path teaser on home */
.reg-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}
.reg-path-step {
  position: relative;
  padding: 1.1rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 22, 0.65);
  backdrop-filter: blur(10px);
}
.reg-path-step .n {
  font-family: var(--font-num);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-soft);
  margin-bottom: 0.45rem;
}
.reg-path-step h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.reg-path-step p {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .reg-path { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .reg-path { grid-template-columns: 1fr; }
}

/* Register page shell */
.page-shell {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(59, 102, 214, 0.14), transparent 60%),
    var(--bg);
}
.page-shell .container { max-width: 760px; }
.reg-card {
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 14, 24, 0.88);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.steps-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.steps-bar .s {
  flex: 1;
  min-width: 70px;
  text-align: center;
  padding: 0.55rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.steps-bar .s.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
}
.steps-bar .s.done {
  color: var(--blue-soft);
  border-color: var(--line-strong);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 12, 0.65);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--line-strong);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}
.player-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: center;
}
.player-row button {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text-2);
}
.pay-box {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px dashed var(--line-strong);
  background: rgba(91, 140, 255, 0.06);
  margin: 1rem 0;
}
.pay-box img {
  width: 160px; height: 160px;
  object-fit: contain;
  border-radius: 12px;
  background: #0a0e16;
}
.pay-box .pay-placeholder {
  width: 160px; height: 160px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  padding: 0.75rem;
  background: #0a0e16;
}
@media (max-width: 560px) {
  .pay-box { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.form-note {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.status-pill {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-pill.pending { background: rgba(255, 180, 50, 0.15); color: #ffc14d; }
.status-pill.verified { background: rgba(60, 200, 120, 0.15); color: #5ee09a; }
.status-pill.rejected { background: rgba(255, 80, 80, 0.15); color: #ff8a8a; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table th {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hidden-step { display: none !important; }

/* Register page — titles & gate */
.reg-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.35rem 0 0.65rem;
}
.reg-page-lead {
  color: var(--text-2);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  max-width: 38rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}
.gate-banner {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 193, 77, 0.35);
  background: linear-gradient(135deg, rgba(255, 180, 50, 0.1), rgba(91, 140, 255, 0.06));
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.5;
}
.gate-banner strong {
  display: block;
  color: #ffc14d;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.gate-banner code {
  font-size: 0.8em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--blue-soft);
}

/* Sport picker */
.sport-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
}
.sport-pick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  text-align: left;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 12, 0.55);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.sport-pick:hover {
  border-color: var(--line-strong);
  background: rgba(91, 140, 255, 0.08);
}
.sport-pick:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 2px;
}
.sport-pick.is-selected {
  border-color: transparent;
  background: linear-gradient(145deg, rgba(59, 102, 214, 0.35), rgba(91, 140, 255, 0.12));
  box-shadow: 0 0 0 1px rgba(91, 140, 255, 0.55), 0 8px 24px rgba(59, 102, 214, 0.2);
}
.sport-pick-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.sport-pick-meta {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: capitalize;
  letter-spacing: 0.04em;
}
.sport-pick.is-selected .sport-pick-meta {
  color: var(--blue-soft);
}

/* Field section divider (PD block) */
.field-divider {
  margin: 1.35rem 0 1rem;
  padding: 0.65rem 0 0.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

/* Fee amount banner on payment step */
.fee-banner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1rem 0 1.15rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(91, 140, 255, 0.35);
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(91, 140, 255, 0.18), transparent 55%),
    rgba(8, 12, 22, 0.9);
}
.fee-banner .fee-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.fee-banner .fee-amount {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}
.fee-banner .fee-sub {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.45;
  max-width: 28rem;
}
.fee-banner.is-tba .fee-amount {
  color: #ffc14d;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

/* Review strip before pay */
.reg-review {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 7, 12, 0.45);
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}
.reg-review strong {
  color: var(--text);
  font-weight: 600;
}
.reg-review .reg-review-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.35rem;
}

/* Inline field errors */
.field.has-error input,
.field.has-error select {
  border-color: rgba(255, 100, 100, 0.65);
}
.field-error {
  display: none;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #ff8a8a;
}
.field.has-error .field-error { display: block; }

#submit-status.is-error { color: #ff8a8a; }
#submit-status.is-ok { color: #5ee09a; }

/* ============================================================
   INSANE POST-HERO v3 — conversion design system
   Does NOT override .hero-cinematic block
   ============================================================ */

.split-headline {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.split-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0.35rem 0 0;
}
.split-headline .lead.wide {
  color: var(--text-2);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 42ch;
  margin: 0;
}
.text-glow {
  background: linear-gradient(120deg, #fff 10%, #9bb6ff 45%, #5b8cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Bento about */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.bento-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(91,140,255,0.14), transparent 55%),
    rgba(12, 16, 28, 0.85);
  padding: 1.4rem 1.35rem 1.5rem;
  min-height: 160px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.35s, box-shadow 0.4s;
  box-shadow: 0 30px 60px -36px rgba(0,0,0,0.7);
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120,160,255,0.35);
  box-shadow: 0 40px 80px -30px rgba(59,102,214,0.35);
}
.bento-lg { grid-column: span 8; min-height: 180px; }
.bento-media {
  padding: 0;
  min-height: 200px;
}
.bento-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.bento-media:hover img { transform: scale(1.05); }
.bento-tall { grid-row: span 1; min-height: 220px; }
.bento-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 0.65rem;
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  margin-bottom: 0.45rem;
}
.bento-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 42ch;
}

/* Stats lux */
.stats-lux {
  background:
    radial-gradient(ellipse 90% 80% at 50% -10%, rgba(91,140,255,0.18), transparent 55%),
    linear-gradient(180deg, #060910, #0a101c 50%, #060910);
}
.stats-row-lux {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(120,160,255,0.18);
  background: rgba(255,255,255,0.04);
}
.stats-row-lux .stat-xl {
  background: transparent;
  padding: 2rem 1rem;
  position: relative;
}
.stats-row-lux .stat-xl::after {
  content: "";
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}
.stats-row-lux .stat-xl:last-child::after { display: none; }
.stats-row-lux .stat-xl:hover {
  background: rgba(91,140,255,0.08);
}

/* Film lux */
.sec-film {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(91,140,255,0.08), transparent 50%),
    var(--bg);
}
.film-lux .film-feature {
  border-radius: 24px;
  border: 1px solid rgba(120,160,255,0.2);
  overflow: hidden;
  background: #080b14;
  box-shadow: 0 40px 100px -40px rgba(59,102,214,0.45);
}
.film-feature-player { position: relative; }
.film-glow {
  position: absolute;
  inset: auto 10% -20% 10%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(91,140,255,0.35), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.film-side-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(165deg, rgba(18,24,40,0.95), rgba(8,10,18,0.98));
}

/* Sports dark luxury (was light) */
.sec-sports {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91,140,255,0.1), transparent 55%),
    linear-gradient(180deg, #070b14, #0a0f1a 40%, #070b14);
  color: var(--text);
}
.sec-sports .split-headline .lead.wide { color: var(--text-2); }
.sec-sports .filters-lux .filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-2);
}
.sec-sports .filters-lux .filter-btn:hover {
  border-color: rgba(120,160,255,0.4);
  color: #fff;
}
.sec-sports .filters-lux .filter-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-color: transparent;
}
.sports-lux .sport-card-lux {
  background: linear-gradient(180deg, rgba(16,20,32,0.95), rgba(8,10,16,0.98));
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
  box-shadow: 0 28px 50px -28px rgba(0,0,0,0.7);
}
.sports-lux .sport-card-lux .sport-body h3 { color: #fff; }
.sports-lux .sport-card-lux .sport-body p { color: var(--text-2); }
.sports-lux .sport-card-lux .sport-foot {
  border-top-color: rgba(255,255,255,0.06);
}
.sports-lux .sport-media {
  aspect-ratio: 16 / 11;
}
.sport-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.12) 0%, transparent 35%, transparent 100%);
  opacity: 0.5;
}
.sports-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(120,160,255,0.22);
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(91,140,255,0.16), transparent 55%),
    rgba(12,16,28,0.8);
}
.sports-cta h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 750;
  margin-bottom: 0.25rem;
}
.sports-cta p { color: var(--text-2); font-size: 0.92rem; }

/* Schedule lux */
.sec-schedule {
  background: linear-gradient(180deg, #060910, #0a0f18);
}
.schedule-lux .day-card {
  border-radius: 22px;
  min-height: 300px;
  padding: 1.75rem 1.5rem;
  background:
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(91,140,255,0.12), transparent 50%),
    linear-gradient(165deg, rgba(16,22,38,0.95), rgba(6,8,14,0.98));
  border: 1px solid rgba(255,255,255,0.08);
}
.schedule-lux .day-card.featured {
  transform: translateY(-6px);
  border-color: rgba(120,160,255,0.4);
  box-shadow: 0 40px 80px -30px rgba(59,102,214,0.45);
}
.day-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(91,140,255,0.2);
  color: var(--blue-soft);
  border: 1px solid rgba(120,160,255,0.3);
}

/* Register lux */
.register-lux {
  border-radius: 28px !important;
  border: 1px solid rgba(120,160,255,0.28) !important;
  box-shadow: 0 50px 120px -40px rgba(59,102,214,0.55) !important;
}
.register-lux .register-cinema-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: -0.035em;
}

/* Contact lux */
.sec-contact {
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(91,140,255,0.1), transparent 55%),
    var(--bg);
}
.contact-lux .contact-card {
  border-radius: 20px;
  min-height: 150px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(91,140,255,0.1), transparent 50%),
    rgba(12,16,28,0.8);
  border: 1px solid rgba(255,255,255,0.07);
}

.ig-follow-lux {
  border-radius: 20px;
  border: 1px solid rgba(120,160,255,0.2);
  background:
    radial-gradient(ellipse 50% 100% at 0% 50%, rgba(221,42,123,0.12), transparent 50%),
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(91,140,255,0.12), transparent 50%),
    rgba(10,14,24,0.9);
}

@media (max-width: 1000px) {
  .split-headline { grid-template-columns: 1fr; }
  .bento-card, .bento-lg { grid-column: span 6; }
}
@media (max-width: 720px) {
  .bento-card, .bento-lg, .bento-media { grid-column: span 12; }
  .schedule-lux .day-card.featured { transform: none; }
  .sports-cta { flex-direction: column; align-items: stretch; }
  .sports-cta .btn { width: 100%; }
}
