/* ==========================================================================
   FANCODE.BET — HOME LAYER
   Loaded after style.css, on index.html only. Everything here is scoped to
   .page-home or to home-only `fc-` components, so the other twelve pages keep
   the shared stylesheet exactly as it was.

   1.  Tokens & foundations
   2.  Shared component refinements
   3.  Header
   4.  Hero
   5.  Ticker
   6.  Arena — game bento
   7.  Platform
   8.  Broadcast showcase
   9.  Live casino
   10. Aviator terminal
   11. Stats band
   12. Principles
   13. Voices
   14. Final CTA
   15. Footer
   16. Responsive
   17. Reduced motion
   ========================================================================== */

/* ============ 1. TOKENS & FOUNDATIONS ============ */
:root {
  --shell: 1320px;

  --ink-0: #040405;
  --ink-1: #08080a;
  --ink-2: #0c0c10;
  --ink-3: #131318;

  --line:     rgba(255, 255, 255, .075);
  --line-2:   rgba(255, 255, 255, .14);
  --line-hot: rgba(255, 122, 0, .42);

  --txt-1: #f5f5f7;
  --txt-2: #b7b7be;
  --txt-3: #7b7b84;

  --ember:      linear-gradient(135deg, #ffc24d 0%, #ff8a1f 38%, #ff4d00 100%);
  --ember-soft: linear-gradient(160deg, rgba(255, 176, 0, .16), rgba(255, 90, 0, .04));
  --ember-rule: linear-gradient(90deg, transparent, rgba(255, 122, 0, .5), rgba(255, 176, 0, .3), transparent);

  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 26px;
  --r-xl: 34px;

  --e-out:  cubic-bezier(.16, 1, .3, 1);
  --e-io:   cubic-bezier(.7, 0, .28, 1);
  --e-back: cubic-bezier(.34, 1.36, .5, 1);

  --sh-1: 0 24px 60px -30px rgba(0, 0, 0, .95);
  --sh-2: 0 40px 100px -40px rgba(0, 0, 0, 1);
}

.page-home { background: var(--ink-0); }

/* Ambient light bed. Kept deliberately low so the page reads as deep black
   with warmth at the edges, rather than as an orange wash. */
.page-home::before {
  background:
    radial-gradient(52vw 40vw at 86% -10%, rgba(255, 96, 0, .085),  transparent 58%),
    radial-gradient(44vw 36vw at 0% 26%,   rgba(255, 140, 0, .035), transparent 62%),
    radial-gradient(66vw 46vw at 62% 108%, rgba(255, 90, 0, .045),  transparent 60%);
}
.page-home::after { opacity: .05; }

/* ============ 2. SHARED COMPONENT REFINEMENTS ============ */
.page-home .section { padding-block: clamp(64px, 6.6vw, 108px); }
.page-home .section--tight { padding-block: clamp(48px, 5vw, 76px); }

.page-home .section__head { max-width: 760px; margin-bottom: clamp(36px, 4.4vw, 64px); }
/* the row variant must beat the max-width above, hence the .page-home scope */
.page-home .section__head--row {
  max-width: none;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 60px);
}
.page-home .section__head--row > :first-child { flex: 1 1 auto; min-width: 0; }
.page-home .section__head--row .section__sub { flex: 0 1 auto; max-width: 400px; margin-bottom: 8px; }

/* -- eyebrow becomes a glass pill -- */
.page-home .kicker {
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .012));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  color: #ffcfa6;
  font-size: .69rem;
  letter-spacing: .2em;
}
.page-home .kicker__dot { width: 6px; height: 6px; }

/* -- display headings -- */
.page-home .section__title {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.3vw, 3.55rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.035em;
  background: linear-gradient(176deg, #fff 26%, #cfcfd4 74%, #8f8f97 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* <em> in a display heading is an accent, not an italic */
.page-home h1 em,
.page-home h2 em,
.page-home h3 em {
  font-style: normal;
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.page-home .section__sub {
  max-width: 60ch;
  color: var(--txt-2);
  font-size: clamp(1rem, 1.15vw, 1.06rem);
  line-height: 1.72;
}

/* -- reveal: longer travel, softer landing -- */
.page-home .reveal {
  transform: translate3d(0, 30px, 0);
  transition: opacity .95s var(--e-out), transform .95s var(--e-out);
}
.page-home .reveal[data-delay="5"] { transition-delay: .45s; }
.page-home .reveal[data-delay="6"] { transition-delay: .54s; }

/* -- glass -- */
.page-home .glass {
  background: linear-gradient(168deg, rgba(255, 255, 255, .062), rgba(255, 255, 255, .015));
  border-color: var(--line);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
}

/* -- HUD brackets: finer, gold -- */
.page-home .hud::before,
.page-home .hud::after {
  width: 20px;
  height: 20px;
  border-width: 1px;
  border-color: var(--gold);
  opacity: .5;
}
.page-home .hud:hover::before,
.page-home .hud:hover::after { width: 30px; height: 30px; opacity: .95; }

/* -- buttons -- */
.page-home .btn {
  padding: 16px 28px;
  font-weight: 700;
  letter-spacing: -.005em;
}
.page-home .btn--sm { padding: 11px 20px; font-size: .875rem; }
.page-home .btn--lg { padding: 19px 38px; font-size: 1.02rem; }

.page-home .btn--primary {
  background: var(--ember);
  color: #1a0c00;
  box-shadow:
    0 14px 36px -16px rgba(255, 110, 0, .85),
    inset 0 1px 0 rgba(255, 255, 255, .5),
    inset 0 -1px 0 rgba(140, 46, 0, .4);
}
.page-home .btn--primary:hover {
  transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) - 2px), 0);
  box-shadow:
    0 24px 56px -18px rgba(255, 110, 0, .95),
    inset 0 1px 0 rgba(255, 255, 255, .6),
    inset 0 -1px 0 rgba(140, 46, 0, .4);
}
.page-home .btn--primary::after {
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, .55) 47%, transparent 70%);
}

.page-home .btn--ghost {
  border-color: var(--line-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.page-home .btn--ghost:hover {
  border-color: var(--line-hot);
  background: linear-gradient(180deg, rgba(255, 90, 0, .16), rgba(255, 90, 0, .05));
  color: #ffdcc2;
  transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) - 2px), 0);
}

/* -- reading progress -- */
.page-home .progress__bar {
  background: var(--ember);
  box-shadow: 0 0 16px rgba(255, 122, 0, .8);
}

/* -- back to top -- */
.page-home .totop {
  border-color: var(--line-2);
  background: rgba(12, 12, 16, .78);
}
.page-home .totop:hover {
  border-color: var(--line-hot);
  background: rgba(255, 90, 0, .2);
  transform: translateY(-3px);
}

/* ============ 3. HEADER ============ */
.page-home .nav.is-stuck {
  background: rgba(5, 5, 6, .68);
  border-bottom-color: rgba(255, 255, 255, .07);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 22px 60px -40px #000;
}
/* hot hairline under the bar once it sticks */
.page-home .nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--ember-rule);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}
.page-home .nav.is-stuck::after { opacity: 1; }

.page-home .nav__link { font-size: .92rem; letter-spacing: -.005em; }
.page-home .nav__brand img { filter: drop-shadow(0 6px 22px rgba(255, 90, 0, .38)); }

/* ============ 4. HERO ============ */
.page-home .hero {
  min-height: min(100svh, 1000px);
  padding-block: calc(var(--nav-h) + clamp(40px, 6vw, 76px)) clamp(72px, 8vw, 118px);
}

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

/* two slow light pools */
.fc-hero__glow { position: absolute; border-radius: 50%; filter: blur(96px); }
.fc-hero__glow--1 {
  top: -22%; right: -10%;
  width: min(58vw, 720px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 96, 0, .2), transparent 64%);
  animation: fcDrift1 17s ease-in-out infinite;
}
.fc-hero__glow--2 {
  bottom: -28%; left: -16%;
  width: min(52vw, 640px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 176, 0, .085), transparent 66%);
  animation: fcDrift2 21s ease-in-out infinite;
}
@keyframes fcDrift1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-4%, 5%, 0) scale(1.1); }
}
@keyframes fcDrift2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(5%, -6%, 0) scale(1.12); }
}

/* stadium light shafts */
.fc-hero__beam {
  position: absolute;
  top: -30%;
  width: 34vw;
  height: 150%;
  transform-origin: 50% 0;
  filter: blur(28px);
  mix-blend-mode: screen;
}
.fc-hero__beam--1 {
  left: 4%;
  background: linear-gradient(180deg, rgba(255, 138, 31, .3), transparent 62%);
  transform: rotate(17deg);
  animation: fcBeam 11s ease-in-out infinite;
}
.fc-hero__beam--2 {
  right: 6%;
  background: linear-gradient(180deg, rgba(255, 90, 0, .26), transparent 58%);
  transform: rotate(-14deg);
  animation: fcBeam 13.5s ease-in-out infinite 1.4s;
}
@keyframes fcBeam {
  0%, 100% { opacity: .16; }
  50%      { opacity: .38; }
}

/* perspective floor grid */
.fc-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: radial-gradient(ellipse 80% 64% at 50% 40%, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse 80% 64% at 50% 40%, #000 28%, transparent 76%);
}
.fc-hero__floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -6%;
  height: 44%;
  background-image:
    linear-gradient(rgba(255, 122, 0, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, .14) 1px, transparent 1px);
  background-size: 100px 44px;
  transform: perspective(560px) rotateX(72deg);
  transform-origin: 50% 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 60%, transparent);
  opacity: .5;
}

.page-home .hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; }

.fc-hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 92% 72% at 50% 46%, transparent 40%, rgba(4, 4, 5, .7) 100%),
    linear-gradient(180deg, transparent 60%, var(--ink-0) 100%);
}

/* pointer light — home.js feeds --hx / --hy and toggles .is-hot */
.fc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at var(--hx, 50%) var(--hy, 38%), rgba(255, 146, 46, .13), transparent 62%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.page-home .hero.is-hot .fc-hero__bg::after { opacity: 1; }

.fc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 68px);
}

/* --hs is the hero scroll progress (0 → 1) written by home.js */
.fc-hero__content {
  max-width: 720px;
  transform: translate3d(0, calc(var(--hs, 0) * -56px), 0);
  opacity: calc(1 - var(--hs, 0) * .88);
  will-change: transform, opacity;
}

.fc-hero__title {
  margin-bottom: 26px;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.fc-hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.fc-hero__title .line > span {
  display: block;
  transform: translate3d(0, 112%, 0);
  transition: transform 1.15s var(--e-out);
}
.fc-hero__title.is-in .line:nth-child(1) > span { transition-delay: .1s; }
.fc-hero__title.is-in .line:nth-child(2) > span { transition-delay: .22s; }
.fc-hero__title.is-in .line > span { transform: none; }

.fc-hero__title .solid {
  background: linear-gradient(174deg, #fff 22%, #d6d6db 70%, #97979f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fc-hero__title .grad {
  background: var(--ember);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fcShift 9s ease-in-out infinite;
}
@keyframes fcShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.fc-hero__lede {
  max-width: 54ch;
  margin-bottom: 34px;
  color: var(--txt-2);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.75;
}

.fc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(38px, 4.4vw, 56px);
}

/* -- stat rail -- */
.fc-hero__stats {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.fc-hero__stats::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 96px;
  height: 1px;
  background: var(--ember);
}
.fc-hero__stat {
  position: relative;
  flex: 1 1 120px;
  min-width: 0;
  padding-right: 22px;
}
.fc-hero__stat + .fc-hero__stat { padding-left: 26px; }
.fc-hero__stat + .fc-hero__stat::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
.fc-hero__stat-value {
  display: flex;
  align-items: baseline;
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 2.9vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff, #9d9da5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fc-hero__stat-value i {
  font-style: normal;
  font-size: .52em;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
.fc-hero__stat dd {
  margin-top: 9px;
  color: var(--txt-3);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* -- layered visual -- */
.page-home .hero__visual {
  max-width: 640px;
  animation: fcVisualIn 1.6s var(--e-out) .2s both;
}
@keyframes fcVisualIn {
  from { opacity: 0; transform: scale(.88) translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.page-home .core { width: 62%; }
.page-home .core__ring { border-radius: 50%; }
.page-home .core__ring--1 {
  inset: 0;
  border: 1px dashed rgba(255, 176, 0, .3);
  animation: fcSpin 42s linear infinite;
}
.page-home .core__ring--2 {
  inset: 9%;
  border: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 122, 0, .06) 90deg, rgba(255, 176, 0, .85) 180deg, rgba(255, 90, 0, .25) 240deg, transparent 330deg);
  -webkit-mask: radial-gradient(circle, transparent 0 calc(50% - 1.5px), #000 calc(50% - 1.5px));
  mask: radial-gradient(circle, transparent 0 calc(50% - 1.5px), #000 calc(50% - 1.5px));
  animation: fcSpin 8s linear infinite;
}
.page-home .core__ring--3 {
  inset: 19%;
  border: 1px solid rgba(255, 255, 255, .08);
  background: repeating-conic-gradient(from 0deg, rgba(255, 176, 0, .5) 0deg .7deg, transparent .7deg 15deg);
  -webkit-mask: radial-gradient(circle, transparent 0 calc(50% - 7px), #000 calc(50% - 7px));
  mask: radial-gradient(circle, transparent 0 calc(50% - 7px), #000 calc(50% - 7px));
  animation: fcSpin 90s linear infinite reverse;
}
@keyframes fcSpin { to { transform: rotate(360deg); } }

.page-home .core__pulse {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, .5);
  background: none;
  animation: fcPulse 4.2s var(--e-out) infinite;
}
@keyframes fcPulse {
  0%   { transform: scale(.72); opacity: 0; }
  35%  { opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* dark glass puck with a hot rim — reads as a lens, not as a brown ball */
.page-home .core__center {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 0, .55);
  background:
    radial-gradient(circle at 50% 118%, rgba(255, 120, 0, .5), transparent 56%),
    radial-gradient(circle at 50% 50%, rgba(9, 8, 10, .35), rgba(6, 6, 8, .92) 74%);
  box-shadow:
    0 0 90px rgba(255, 110, 0, .35),
    inset 0 0 34px rgba(255, 140, 30, .25),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: fcBreath 5.5s ease-in-out infinite;
}
@keyframes fcBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}

/* orbs take mouse parallax from main.js via --px / --py */
.page-home .orb {
  position: absolute;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  transition: transform .5s var(--e-out);
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, .75));
}
.page-home .orb::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 74%;
  height: 16%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 110, 0, .38), transparent 70%);
  filter: blur(9px);
}
/* Laid out around the core so nothing collides with the floating readouts.
   Every edge is stated explicitly — the shared sheet sets the opposite edge
   on some of these, and an over-constrained box would ignore the new one. */
.page-home .orb--cricket    { inset: 3% auto auto 44%;    width: 17%; animation: fcBob 7.5s ease-in-out infinite; }
.page-home .orb--plane      { inset: 8% 9% auto auto;     width: 15%; animation: fcBob 6.8s ease-in-out infinite 1.6s; }
.page-home .orb--basketball { inset: 34% -3% auto auto;   width: 23%; animation: fcBob 6.2s ease-in-out infinite .8s; }
.page-home .orb--baseball   { inset: auto 30% 4% auto;    width: 15%; animation: fcBob 7s   ease-in-out infinite 1.2s; }
.page-home .orb--tennis     { inset: auto auto 18% -2%;   width: 17%; animation: fcBob 8.4s ease-in-out infinite .4s; }
.page-home .orb--chip       { inset: 24% auto auto 3%;    width: 14%; animation: fcBob 9s   ease-in-out infinite .6s; }

/* margin, not transform — the transform channel belongs to the parallax */
@keyframes fcBob {
  0%, 100% { margin-top: 0; }
  50%      { margin-top: -16px; }
}

/* floating glass readouts */
.fc-hero__card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: linear-gradient(168deg, rgba(20, 20, 24, .88), rgba(10, 10, 12, .78));
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, .08);
  white-space: nowrap;
}
.fc-hero__card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.fc-hero__card small {
  display: block;
  margin-top: 2px;
  color: var(--txt-3);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fc-hero__card .ic { width: 18px; height: 18px; color: var(--gold); }
.fc-hero__card--live  { top: 3%; left: -8%; animation: fcBob 9.5s ease-in-out infinite .3s; }
.fc-hero__card--multi { bottom: 12%; right: -7%; animation: fcBob 8s ease-in-out infinite 1s; }
.fc-hero__card--multi strong {
  font-size: 1.05rem;
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fc-live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #2ee66b;
  box-shadow: 0 0 12px rgba(46, 230, 107, .9);
}
.fc-live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid #2ee66b;
  border-radius: 50%;
  animation: ping 2.4s var(--e-out) infinite;
}

.page-home .hero__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255, 176, 0, .07), transparent);
  animation: fcScan 6.5s var(--e-io) infinite;
  pointer-events: none;
}
@keyframes fcScan {
  0%   { transform: translateY(-40%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(220%); opacity: 0; }
}

/* -- scroll cue -- */
.page-home .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 2.6vw, 30px);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--txt-3);
  font-family: var(--font-head);
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  transition: color var(--t-fast) var(--ease);
}
.page-home .scroll-cue:hover { color: var(--gold); }
.page-home .scroll-cue__track {
  position: relative;
  width: 22px;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: none;
}
.page-home .scroll-cue__dot {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: var(--gold);
  animation: fcCue 2s var(--e-io) infinite;
}
@keyframes fcCue {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* ============ 5. TICKER ============ */
.page-home .marquee {
  position: relative;
  z-index: 2;
  padding-block: clamp(20px, 2.4vw, 32px);
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .022), transparent 55%, rgba(255, 90, 0, .035));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.page-home .marquee__track {
  display: flex;
  width: max-content;
  animation: fcMarq 38s linear infinite;
}
.page-home .marquee:hover .marquee__track { animation-play-state: paused; }
.fc-ticker__track--rev {
  margin-top: 10px;
  opacity: .5;
  animation-duration: 52s !important;
  animation-direction: reverse !important;
}
.page-home .fc-ticker__track--rev .marquee__item {
  font-size: clamp(.7rem, .9vw, .86rem);
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--txt-3);
  -webkit-text-stroke: 0;
}
.page-home .fc-ticker__track--rev .marquee__sep { width: 4px; height: 4px; }
@keyframes fcMarq { to { transform: translate3d(-50%, 0, 0); } }

.page-home .marquee__row { display: flex; align-items: center; }

.page-home .marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-inline: clamp(20px, 2.6vw, 40px);
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
  transition: color var(--t-fast) var(--ease), -webkit-text-stroke-color var(--t-fast) var(--ease);
}
.page-home .marquee__item:nth-child(4n + 1) {
  color: var(--txt-1);
  -webkit-text-stroke-color: transparent;
}
.page-home .marquee:hover .marquee__item {
  color: #ffb96b;
  -webkit-text-stroke-color: transparent;
}
.page-home .marquee__item .ic {
  width: clamp(18px, 1.7vw, 26px);
  height: clamp(18px, 1.7vw, 26px);
  color: var(--orange);
  -webkit-text-stroke: 0;
}
.page-home .marquee__sep {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 90, 0, .8);
  transform: rotate(45deg);
  border-radius: 1px;
}

/* ============ 6. ARENA — GAME BENTO ============ */
.fc-arena { position: relative; }
.page-home .fc-arena__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  max-width: none;
}
.page-home .fc-arena__head > div { min-width: 0; }
.fc-arena__count {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  color: var(--txt-3);
  font-family: var(--font-head);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.fc-arena__count b {
  font-size: 1.5rem;
  letter-spacing: -.03em;
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* the bento */
.page-home .games {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
  perspective: 1600px;
}

.page-home .game {
  position: relative;
  display: block;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--sh-1);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition:
    transform .55s var(--e-out),
    border-color .5s var(--ease),
    box-shadow .5s var(--ease);
}
.page-home .game:hover,
.page-home .game:focus-within {
  border-color: var(--line-hot);
  box-shadow:
    var(--sh-2),
    0 0 0 1px rgba(255, 122, 0, .22),
    0 34px 80px -34px rgba(255, 90, 0, .55);
}

/* Sizes. Heights come from min-height rather than aspect-ratio so that two
   cards of different span sit flush on the same grid row. */
.page-home .fc-game--wide  { grid-column: span 7;  min-height: clamp(400px, 31vw, 470px); }
.page-home .fc-game--tall  { grid-column: span 5;  min-height: clamp(400px, 31vw, 470px); }
.page-home .fc-game--third { grid-column: span 4;  min-height: clamp(320px, 23vw, 370px); }
.page-home .fc-game--band  { grid-column: span 12; min-height: clamp(280px, 20vw, 330px); }

.page-home .game__media { position: absolute; inset: 0; z-index: 0; }
/* the shared sheet paints its own scrim + spotlight — this layer supplies
   both as real elements instead, so the z-order stays under our control */
.page-home .game__media::after,
.page-home .game::before { display: none; }
.page-home .game__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.04);
  transition: transform 1.1s var(--e-out), filter .6s var(--ease);
  filter: saturate(105%) contrast(104%);
}
.page-home .game:hover .game__media img,
.page-home .game:focus-within .game__media img {
  transform: scale(1.13);
  filter: saturate(118%) contrast(108%);
}

/* home.js adds .is-loading until the file decodes, so artwork settles in */
.page-home .game__media img,
.page-home .fc-platform__frame img { transition: transform 1.1s var(--e-out), filter .6s var(--ease), opacity .8s var(--ease); }
.page-home .game__media img.is-loading,
.page-home .fc-platform__frame img.is-loading { opacity: 0; }

/* cinematic scrim: dark floor + side ramp so copy always reads */
.fc-game__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 4, 5, .18) 0%, rgba(4, 4, 5, .1) 34%, rgba(4, 4, 5, .78) 74%, rgba(4, 4, 5, .96) 100%),
    linear-gradient(96deg, rgba(4, 4, 5, .72) 0%, rgba(4, 4, 5, .18) 46%, transparent 70%);
  transition: opacity .55s var(--ease);
}
.page-home .game:hover .fc-game__scrim { opacity: .88; }

/* pointer spotlight, fed by the tilt module (--gx / --gy) */
.fc-game__spot {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(340px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 150, 40, .22), transparent 62%);
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.page-home .game:hover .fc-game__spot { opacity: 1; }

/* hot top edge on hover */
.fc-game__edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 1px;
  background: var(--ember-rule);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform .6s var(--e-out);
}
.page-home .game:hover .fc-game__edge { transform: scaleX(1); }

.page-home .game__body {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: auto;
  padding: clamp(20px, 2.2vw, 30px);
  transform: translateZ(30px);
}

.fc-game__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.page-home .game__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid rgba(255, 176, 0, .26);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255, 122, 0, .28), rgba(255, 176, 0, .05));
  color: #ffc98f;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  transition: transform .5s var(--e-back), color .4s var(--ease), border-color .4s var(--ease);
}
.page-home .game__icon .ic { width: 22px; height: 22px; }
.page-home .game:hover .game__icon {
  transform: translateY(-3px) rotate(-6deg);
  color: var(--gold);
  border-color: rgba(255, 176, 0, .55);
}
.fc-game__index {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .38);
}

.fc-game__meta { margin-top: auto; }
.fc-game__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #ffcfa6;
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.page-home .game__title {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .6);
}
.page-home .game__text {
  max-width: 34ch;
  margin-bottom: 18px;
  color: var(--txt-2);
  font-size: .93rem;
  line-height: 1.6;
}
.page-home .game__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.page-home .game__cta .ic { width: 15px; height: 15px; }
.page-home .game:hover .game__cta,
.page-home .game:focus-within .game__cta {
  border-color: transparent;
  background: var(--ember);
  color: #1a0c00;
}
.page-home .game:hover .game__cta .ic { transform: translateX(4px); }

.page-home .game__link { position: absolute; inset: 0; z-index: 6; border-radius: inherit; }

/* the wide Aviator band gets more breathing room and a longer measure */
.page-home .fc-game--band .game__body { padding: clamp(24px, 2.6vw, 40px); }
.page-home .fc-game--band .game__text { max-width: 46ch; }
.page-home .fc-game--band .fc-game__scrim {
  background:
    linear-gradient(96deg, rgba(4, 4, 5, .94) 0%, rgba(4, 4, 5, .7) 42%, rgba(4, 4, 5, .22) 78%),
    linear-gradient(180deg, rgba(4, 4, 5, .3), rgba(4, 4, 5, .55));
}
.page-home .fc-game--band .game__media img { object-position: 60% 44%; }

/* ============ 7. PLATFORM ============ */
.fc-platform { position: relative; }
.fc-platform__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 88px);
}

.fc-platform__media { position: relative; }
.fc-platform__frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--sh-2);
}
.fc-platform__frame img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 50% 50%;
  /* the source is a dark vector scene — lift it so it reads on a black page */
  filter: brightness(1.5) contrast(1.12) saturate(1.25);
}
.fc-platform__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 60% at 50% 46%, rgba(255, 122, 0, .18), transparent 68%),
    linear-gradient(180deg, rgba(4, 4, 5, .35), rgba(4, 4, 5, .1) 40%, rgba(4, 4, 5, .72)),
    radial-gradient(120% 70% at 50% 104%, rgba(255, 90, 0, .22), transparent 60%);
}
.fc-platform__ring {
  position: absolute;
  top: -8%;
  right: -12%;
  width: 46%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 176, 0, .22);
  border-radius: 50%;
  animation: fcSpin 60s linear infinite;
  pointer-events: none;
}

/* overlapping floating cards */
.page-home .fc-platform__badge {
  position: absolute;
  left: clamp(-14px, -1.4vw, -6px);
  bottom: clamp(28px, 5vw, 62px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  animation: fcBob 9s ease-in-out infinite;
}
.fc-platform__badge .ic { width: 22px; height: 22px; color: var(--gold); }
.fc-platform__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: .96rem;
}
.fc-platform__badge span {
  display: block;
  color: var(--txt-3);
  font-size: .76rem;
}

.page-home .fc-platform__tile {
  position: absolute;
  top: clamp(20px, 4vw, 46px);
  right: clamp(-16px, -1.6vw, -8px);
  display: grid;
  gap: 4px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  text-align: right;
  background: linear-gradient(168deg, rgba(20, 20, 24, .92), rgba(10, 10, 12, .84));
  box-shadow: var(--sh-1);
  animation: fcBob 7.4s ease-in-out infinite .8s;
}
.fc-platform__tile b {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fc-platform__tile span {
  color: var(--txt-3);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* feature list replaces the flat chip row */
.page-home .chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-block: 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--line);
}
.page-home .chip {
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  border-radius: 0;
  background: var(--ink-1);
  color: var(--txt-2);
  font-size: .9rem;
  font-weight: 500;
  transition: background-color .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.page-home .chip .ic { width: 17px; height: 17px; color: var(--orange-light); transition: transform .4s var(--e-back); }
.page-home .chip:hover {
  transform: none;
  background: linear-gradient(120deg, rgba(255, 90, 0, .12), rgba(255, 176, 0, .03));
  color: #fff;
}
.page-home .chip:hover .ic { transform: scale(1.15) rotate(-8deg); color: var(--gold); }

/* ============ 8. BROADCAST SHOWCASE ============ */
.page-home .showcase { position: relative; }

.page-home .showcase__tabs {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin-bottom: clamp(18px, 2vw, 26px);
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}
.page-home .stab {
  position: relative;
  z-index: 2;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--txt-3);
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: color .35s var(--ease);
}
.page-home .stab .ic { width: 17px; height: 17px; }
.page-home .stab:hover { color: var(--txt-1); }
.page-home .stab.is-active { color: #1a0c00; }
.page-home .showcase__indicator {
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 0;
  bottom: 6px;
  height: auto;
  border-radius: 999px;
  background: var(--ember);
  box-shadow: 0 10px 26px -12px rgba(255, 110, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .45);
  transition: transform .55s var(--e-out), width .55s var(--e-out);
}

.page-home .showcase__stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--sh-2);
}

/* Inactive panels are absolute overlays; the active one returns to flow and
   sets the stage height. (Same mechanic as style.css — only the look changes.) */
.page-home .spanel {
  transform: scale(1.035);
  transition: opacity .7s var(--ease), transform 1.2s var(--e-out);
}
.page-home .spanel.is-active { transform: none; }
.page-home .spanel img {
  width: 100%;
  height: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: 50% 40%;
}
/* per-panel focal points — these two sources are tighter crops */
.page-home #panel-live-casino img { object-position: 50% 16%; }
.page-home #panel-aviator img { object-position: 50% 46%; }
.page-home .spanel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 5, .32) 0%, rgba(4, 4, 5, .1) 30%, rgba(4, 4, 5, .8) 78%, rgba(4, 4, 5, .96) 100%),
    linear-gradient(92deg, rgba(4, 4, 5, .78) 0%, rgba(4, 4, 5, .2) 48%, transparent 72%);
}
.page-home .spanel__body {
  position: absolute;
  left: clamp(20px, 3.2vw, 48px);
  bottom: clamp(20px, 3.2vw, 44px);
  z-index: 2;
  max-width: 48ch;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, rgba(14, 14, 17, .8), rgba(8, 8, 10, .66));
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, .07);
}
.page-home .spanel__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 176, 0, .3);
  border-radius: 999px;
  background: rgba(255, 90, 0, .12);
  color: #ffcfa6;
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.page-home .spanel__body h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  color: #fff;
}
.page-home .spanel__body p {
  color: var(--txt-2);
  font-size: .94rem;
  line-height: 1.65;
}

/* live badge riding the stage corner */
.fc-stage__live {
  position: absolute;
  top: clamp(16px, 2vw, 26px);
  right: clamp(16px, 2vw, 26px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(6, 6, 8, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  pointer-events: none;
}
.fc-stage__scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 4px);
  opacity: .5;
  mix-blend-mode: overlay;
}

/* ============ 9. LIVE CASINO ============ */
.page-home .casino {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-1), #0a0705 55%, var(--ink-0));
}
.page-home .casino__bg { position: absolute; inset: 0; z-index: 0; }
.page-home .casino__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  opacity: .5;
}
.page-home .casino__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, var(--ink-0) 6%, rgba(6, 5, 4, .9) 34%, rgba(6, 5, 4, .35) 62%, rgba(6, 5, 4, .7) 100%),
    radial-gradient(70% 90% at 78% 48%, rgba(255, 150, 30, .18), transparent 62%),
    linear-gradient(180deg, var(--ink-0), transparent 22%, transparent 76%, var(--ink-0));
}
.page-home .casino__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}
.page-home .casino__panel {
  max-width: 620px;
  padding: clamp(28px, 3.4vw, 48px);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
}
.page-home .casino__list {
  display: grid;
  gap: 14px;
  margin-block: 26px 32px;
}
.page-home .casino__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--txt-2);
  font-size: .96rem;
}
.page-home .casino__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.page-home .tickbox {
  position: relative;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  border: 1px solid rgba(255, 176, 0, .4);
  border-radius: 9px;
  background: linear-gradient(150deg, rgba(255, 122, 0, .24), rgba(255, 176, 0, .04));
}
.page-home .tickbox::after {
  content: "";
  width: 9px;
  height: 5px;
  margin-top: -2px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* floating chips */
.page-home .casino__float { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.page-home .fchip {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 0, .5);
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 200, 120, .22), transparent 54%),
    radial-gradient(circle, rgba(20, 14, 10, .82), rgba(6, 5, 4, .94) 72%);
  box-shadow:
    0 26px 54px -22px rgba(0, 0, 0, .95),
    inset 0 0 0 6px rgba(9, 7, 6, .9),
    inset 0 0 0 7px rgba(255, 140, 20, .32),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}
/* the dashed inner ring reads as a chip edge */
.page-home .fchip::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px dashed rgba(255, 176, 0, .45);
  border-radius: 50%;
}
.page-home .fchip--1 { top: 10%; right: 10%; width: 104px; height: 104px; animation: fcBob 8s ease-in-out infinite, fcSpin 34s linear infinite; }
.page-home .fchip--2 { top: 46%; right: 32%; width: 62px;  height: 62px;  animation: fcBob 6.4s ease-in-out infinite .7s, fcSpin 26s linear infinite reverse; }
.page-home .fchip--3 { bottom: 9%; right: 17%; width: 138px; height: 138px; animation: fcBob 9.6s ease-in-out infinite 1.4s, fcSpin 46s linear infinite; }

/* ============ 10. AVIATOR TERMINAL ============ */
.page-home .aviator {
  position: relative;
  overflow: hidden;
}
.page-home .aviator__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 0, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 62% 50%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 62% 50%, #000, transparent 78%);
}
.page-home .aviator__glow {
  position: absolute;
  top: 10%;
  right: 2%;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 0, .2), transparent 64%);
  filter: blur(70px);
}
.page-home .aviator__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 72px);
}

.page-home .aviator__hud {
  display: grid;
  gap: 14px;
  max-width: 400px;
  margin-block: 30px 32px;
  padding: 20px 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.page-home .aviator__hud > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.page-home .aviator__hud-label {
  color: var(--txt-3);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.page-home .aviator__hud-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-home .aviator__hud-bar {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  overflow: hidden;
}
.page-home .aviator__hud-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--ember);
  box-shadow: 0 0 18px rgba(255, 122, 0, .8);
}

.page-home .aviator__stage {
  position: relative;
  padding: clamp(14px, 1.6vw, 22px);
  padding-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, rgba(16, 12, 10, .9), rgba(7, 6, 6, .82));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--sh-2), inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}
/* terminal chrome */
.fc-term__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--txt-3);
  font-family: var(--font-head);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.fc-term__led {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.fc-term__led--on { background: var(--orange); box-shadow: 0 0 10px rgba(255, 90, 0, .9); }
.fc-term__bar > span:last-child { margin-left: auto; }

.page-home .aviator__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(255, 122, 0, .08), transparent);
  animation: fcScan 7s var(--e-io) infinite;
  pointer-events: none;
}

/* ============ 11. STATS BAND ============ */
.fc-stats {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 2fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(30px, 3.6vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, rgba(255, 122, 0, .07), rgba(255, 255, 255, .022) 42%, rgba(255, 255, 255, .012));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--sh-1), inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}
.fc-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--ember-rule);
}
.fc-stats__lead h2 {
  font-size: clamp(1.4rem, 1.9vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.14;
  color: #fff;
}
.fc-stats__lead p {
  margin-top: 10px;
  color: var(--txt-3);
  font-size: .9rem;
  line-height: 1.6;
}
.page-home .statstrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 0;
  background: none;
  border: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  overflow: visible;
}
.page-home .statstrip__item {
  justify-items: start;
  gap: 8px;
  padding: 4px 18px 4px 0;
  text-align: left;
  border-right: 1px solid var(--line);
}
.page-home .statstrip__item + .statstrip__item { padding-left: 22px; }
.page-home .statstrip__item:last-child { border-right: 0; }
.page-home .statstrip__item:hover { background: none; }
.page-home .statstrip__value {
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.045em;
  background: linear-gradient(178deg, #fff, #9a9aa2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform .5s var(--e-back);
}
.page-home .statstrip__item:hover .statstrip__value { transform: translateY(-3px); }
.page-home .statstrip__value i {
  font-size: .5em;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
/* the icon variant paints with currentColor, so it must opt out of the
   gradient-text treatment above or it renders transparent */
.page-home .statstrip__value--icon {
  background: none;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
.page-home .statstrip__label {
  color: var(--txt-3);
  font-size: .7rem;
  letter-spacing: .14em;
}

/* ============ 12. PRINCIPLES ============ */
.page-home .feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}
.page-home .feat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(26px, 2.8vw, 40px);
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  border: 1px solid var(--line);
  transition: transform .55s var(--e-out), background-color .5s var(--ease), border-color .5s var(--ease);
}
.page-home .feat:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  background: linear-gradient(168deg, rgba(255, 122, 0, .085), rgba(255, 255, 255, .015));
}
.fc-feat__num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
  transition: -webkit-text-stroke-color .5s var(--ease), color .5s var(--ease);
}
.page-home .feat:hover .fc-feat__num {
  -webkit-text-stroke-color: transparent;
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
}
.page-home .feat__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 13px;
}
.page-home .feat__icon .ic { width: 20px; height: 20px; }
.page-home .feat h3 {
  min-height: 0;
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: #fff;
}
.page-home .feat p { color: var(--txt-2); font-size: .94rem; line-height: 1.65; }

/* ============ 13. VOICES ============ */
.page-home .voices { --vgap: clamp(14px, 1.5vw, 20px); }
.page-home .voice {
  gap: 20px;
  padding: clamp(26px, 2.6vw, 36px);
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .012));
  border: 1px solid var(--line);
  overflow: hidden;
}
.page-home .voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ember-rule);
  transform: scaleX(0);
  transition: transform .6s var(--e-out);
}
.page-home .voice:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  background: linear-gradient(168deg, rgba(255, 122, 0, .075), rgba(255, 255, 255, .015));
}
.page-home .voice:hover::before { transform: scaleX(1); }
.page-home .voice__mark { width: 34px; height: 34px; opacity: .32; color: var(--gold); }
.page-home .voice p { color: var(--txt-2); font-size: 1rem; line-height: 1.72; }
.page-home .voice__by { border-top-color: var(--line); }
.page-home .avatar {
  border-color: rgba(255, 176, 0, .35);
  background: linear-gradient(150deg, rgba(255, 122, 0, .3), rgba(255, 176, 0, .06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.page-home .sbtn { border-color: var(--line-2); background: rgba(255, 255, 255, .045); }
.page-home .sbtn:hover { border-color: var(--line-hot); background: rgba(255, 90, 0, .16); }
.page-home .dot.is-active { background: var(--ember); }

/* ============ 14. FINAL CTA ============ */
.page-home .cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.page-home .cta__ring { border-color: rgba(255, 122, 0, .14); }
.page-home .cta__glow {
  background: radial-gradient(circle, rgba(255, 90, 0, .26), transparent 62%);
  filter: blur(70px);
}
.page-home .cta__panel {
  max-width: 920px;
  padding: clamp(40px, 5.4vw, 76px) clamp(24px, 4vw, 64px);
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
  box-shadow: var(--sh-2);
}
/* animated conic hairline around the panel */
.page-home .cta__panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--a, 0deg), transparent 0deg, rgba(255, 90, 0, .9) 40deg, rgba(255, 176, 0, .9) 80deg, transparent 150deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: sweep 7s linear infinite;
  pointer-events: none;
}
.page-home .cta__title {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
}
.page-home .cta__text {
  max-width: 52ch;
  margin-bottom: 36px;
  color: var(--txt-2);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.72;
}
.fc-cta__note {
  margin-top: 26px;
  color: var(--txt-3);
  font-size: .8rem;
  letter-spacing: .04em;
}

/* ============ 15. FOOTER ============ */
.page-home .footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #060607, #020203);
}
.page-home .footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ember-rule);
  opacity: .7;
}
.page-home .footer__brand p { color: var(--txt-2); }
.page-home .footer__col h3 { color: var(--txt-3); letter-spacing: .2em; }
.page-home .footer__col a { color: var(--txt-2); }
.page-home .footer__col a:hover { color: var(--gold); }
.page-home .social { border-color: var(--line); color: var(--txt-3); }
.page-home .social:hover { border-color: var(--line-hot); background: rgba(255, 90, 0, .16); color: #fff; }
.page-home .footer__divider { background: var(--ember-rule); }
.page-home .footer__legal a:hover { color: var(--gold); }

/* ============ 16. RESPONSIVE ============ */

/* --- Large laptop --- */
@media (max-width: 1200px) {
  .page-home .games { gap: 14px; }
  .page-home .fc-game--wide,
  .page-home .fc-game--tall  { min-height: clamp(360px, 33vw, 430px); }
  .page-home .fc-game--third { min-height: clamp(300px, 25vw, 350px); }
  .page-home .fc-game--band  { min-height: clamp(280px, 23vw, 320px); }

  .fc-hero__card--live  { left: -2%; }
  .fc-hero__card--multi { right: -1%; }

  .page-home .stab { font-size: .78rem; padding-inline: 10px; }
}

/* --- Tablet --- */
@media (max-width: 1023px) {
  /* hero stacks; the visual drops below the copy */
  .fc-hero__inner { grid-template-columns: 1fr; gap: clamp(40px, 7vw, 60px); }
  .page-home .hero { min-height: auto; padding-block: calc(var(--nav-h) + 48px) 84px; }
  .fc-hero__content { max-width: none; }
  .page-home .hero__visual { width: min(84%, 500px); order: 2; }
  .page-home .scroll-cue { display: none; }
  .fc-hero__card--live  { top: 8%;  left: 0; }
  .fc-hero__card--multi { bottom: 10%; right: 0; }

  /* bento becomes an even two-up with a full-width closer */
  .page-home .fc-game--wide,
  .page-home .fc-game--tall,
  .page-home .fc-game--third { grid-column: span 6; min-height: clamp(320px, 36vw, 400px); }
  .page-home .fc-game--band  { grid-column: span 12; min-height: clamp(300px, 32vw, 360px); }

  /* both row-style heads stack; the .page-home scope is needed to beat the
     align-items: flex-end set on them at desktop width */
  .page-home .section__head--row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .page-home .section__head--row .section__sub { max-width: none; margin-bottom: 0; }

  .page-home .fc-arena__head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
  }
  .page-home .fc-arena__head > div { width: 100%; }
  .fc-arena__count { padding-bottom: 0; }

  .fc-platform__inner { grid-template-columns: 1fr; gap: 44px; }
  .fc-platform__media { order: 2; max-width: 620px; margin-inline: auto; width: 100%; }
  .fc-platform__frame img { aspect-ratio: 16 / 11; }
  .fc-platform__ring { display: none; }

  /* tab rail scrolls instead of squeezing */
  .page-home .showcase__tabs {
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: var(--r-lg);
  }
  .page-home .showcase__tabs::-webkit-scrollbar { display: none; }
  .page-home .stab { flex: none; }
  .page-home .showcase__indicator { border-radius: 999px; }

  .page-home .casino__inner { grid-template-columns: 1fr; }
  .page-home .casino__panel { max-width: none; }
  .page-home .casino__bg img { object-position: 60% 40%; }
  .page-home .casino__veil {
    background:
      linear-gradient(180deg, var(--ink-0) 4%, rgba(6, 5, 4, .86) 40%, rgba(6, 5, 4, .92) 100%),
      radial-gradient(80% 60% at 76% 18%, rgba(255, 150, 30, .2), transparent 64%);
  }

  .page-home .aviator__inner { grid-template-columns: 1fr; gap: 40px; }
  .page-home .aviator__hud { max-width: none; }

  .fc-stats { grid-template-columns: 1fr; gap: 28px; }

  .page-home .voices { grid-auto-columns: calc((100% - var(--vgap)) / 2); }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .page-home .section { padding-block: clamp(56px, 13vw, 80px); }

  .fc-hero__title { font-size: clamp(2.5rem, 11vw, 3.6rem); }
  .fc-hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .fc-hero__stat { flex: 1 1 90px; padding-right: 14px; }
  .fc-hero__stat + .fc-hero__stat { padding-left: 16px; }
  .fc-hero__stat dd { font-size: .64rem; letter-spacing: .1em; }
  .page-home .hero__visual { width: 100%; max-width: 400px; }
  .fc-hero__card { padding: 10px 13px; gap: 10px; }
  .fc-hero__card strong { font-size: .82rem; }
  .fc-hero__card small { font-size: .6rem; }
  .fc-hero__card--live  { top: 4%; left: -2%; }
  .fc-hero__card--multi { bottom: 6%; right: -2%; }

  /* One immersive card per row. The shared sheet turns .games into a swipe
     rail at this width, so every rail property is explicitly unwound here. */
  .page-home .games {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
    perspective: none;
  }
  .page-home .game { scroll-snap-align: none; }

  .page-home .fc-game--wide,
  .page-home .fc-game--tall,
  .page-home .fc-game--third,
  .page-home .fc-game--band { grid-column: span 12; min-height: clamp(340px, 70vw, 420px); }
  .page-home .game { transform: none !important; }
  .page-home .game__body { transform: none; padding: 20px; }
  .page-home .fc-game--band .game__body { flex-direction: column; align-items: flex-start; padding: 20px; }
  .page-home .fc-game--band .fc-game__top { flex-direction: row; align-items: flex-start; justify-content: space-between; width: 100%; gap: 12px; }
  .page-home .fc-game--band .fc-game__meta { margin-top: auto; }
  .page-home .fc-game--band .fc-game__scrim {
    background:
      linear-gradient(180deg, rgba(4, 4, 5, .2) 0%, rgba(4, 4, 5, .12) 32%, rgba(4, 4, 5, .82) 76%, rgba(4, 4, 5, .96) 100%);
  }
  .page-home .game__text { max-width: none; font-size: .88rem; }
  .fc-game__spot { display: none; }

  .page-home .chips { grid-template-columns: 1fr; }

  .page-home .stab { padding: 11px 15px; font-size: .8rem; }
  .page-home .spanel img { aspect-ratio: 4 / 5; }
  .page-home .spanel__body {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 18px;
  }
  .page-home .spanel__body p { font-size: .88rem; }
  .fc-stage__live { top: 12px; right: 12px; padding: 6px 11px; font-size: .58rem; }

  .page-home .casino__float { display: none; }
  .page-home .casino__list li { font-size: .9rem; }

  .page-home .aviator__stage { padding: 12px; padding-top: 44px; }
  .page-home .aviator__hud > div { flex-direction: column; align-items: flex-start; gap: 6px; }

  .fc-stats { padding: 26px 22px; }
  .page-home .statstrip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; }
  .page-home .statstrip__item { padding: 0 14px 0 0; }
  .page-home .statstrip__item + .statstrip__item { padding-left: 0; }
  .page-home .statstrip__item:nth-child(2n) { border-right: 0; padding-left: 18px; }
  .page-home .statstrip__item:nth-child(2n) { border-left: 1px solid var(--line); }
  .page-home .statstrip__item:nth-child(-n+2) { border-bottom: 0; }

  .page-home .feats { grid-template-columns: 1fr; }
  .page-home .feat { padding: 24px; gap: 16px; }

  .page-home .voices { grid-auto-columns: 88%; }
  .page-home .voice { padding: 24px; }

  .page-home .cta__actions .btn { width: 100%; justify-content: center; }

  .page-home .hud::before,
  .page-home .hud::after { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
  .fc-hero__stats { gap: 18px 0; }
  .fc-hero__stat { flex: 1 1 76px; }
  .page-home .marquee__item { gap: 10px; }
  .page-home .fc-game--wide,
  .page-home .fc-game--tall,
  .page-home .fc-game--third,
  .page-home .fc-game--band { min-height: 320px; }
  .page-home .game__title { font-size: 1.45rem; }
  .fc-term__bar > span:last-child { display: none; }
}

/* Coarse pointers never get hover-only affordances */
@media (hover: none) {
  .page-home .game { transform: none !important; }
  .page-home .game__cta { opacity: 1; transform: none; }
  .fc-game__spot { display: none; }
}

/* ============ 17. REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .page-home .reveal { opacity: 1 !important; transform: none !important; }
  .fc-hero__title .line > span { transform: none !important; }
  .page-home .hero__visual { animation: none; opacity: 1; transform: none; }

  .fc-hero__glow,
  .fc-hero__beam,
  .page-home .core__ring,
  .page-home .core__pulse,
  .page-home .core__center,
  .page-home .orb,
  .fc-hero__card,
  .page-home .fchip,
  .fc-platform__badge,
  .fc-platform__tile,
  .fc-platform__ring,
  .page-home .cta__panel::before { animation: none !important; }

  .page-home .hero__scan,
  .page-home .aviator__scan,
  .fc-hero__floor,
  .fc-stage__scan { display: none; }

  .page-home .marquee__track { animation: none; }
  .page-home .game__cta { opacity: 1; transform: none; }
}

/* ==========================================================================
   18. CONTENT SECTIONS
   a. Shared      e. Markets        i. FAQ
   b. Match centre f. Casino tables  j. Responsible gaming
   c. How it works g. Aviator steps  k. Responsive + reduced motion
   d. Competitions h. Insights
   ========================================================================== */

/* ============ 18a. SHARED ============ */
.page-home .fc-head--center { margin-inline: auto; text-align: center; }
.page-home .fc-head--center .section__sub { margin-inline: auto; }

/* balanced wrapping stops display headings leaving one word on the last line */
.page-home .section__title,
.page-home .fc-post h3,
.page-home .fc-rg__lead h2 { text-wrap: balance; }

/* one inline "go further" link style for every section */
.fc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffcfa6;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.fc-link .ic { width: 16px; height: 16px; }
.fc-link:hover { color: var(--gold); gap: 12px; }

/* shared icon tile */
.fc-tile {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid rgba(255, 176, 0, .28);
  border-radius: 13px;
  background: linear-gradient(150deg, rgba(255, 122, 0, .24), rgba(255, 176, 0, .04));
  color: #ffc98f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.fc-tile .ic { width: 20px; height: 20px; }

.fc-note {
  margin-top: 24px;
  color: var(--txt-3);
  font-size: .76rem;
  text-align: center;
}

/* ============ 18b. MATCH CENTRE ============ */
.fc-board__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(18px, 2vw, 26px);
}
.page-home .fc-board__tabs { flex: 0 1 auto; min-width: 0; margin-bottom: 0; }
.page-home .fc-board__tabs .stab { flex: none; padding-inline: 20px; }
.fc-board__legend {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--txt-3);
  font-size: .8rem;
  white-space: nowrap;
}

.fc-board__panels { position: relative; }
/* same crossfade contract main.js uses for the sports stage */
.fc-mpanel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .6s var(--e-out);
}
.fc-mpanel.is-active { position: relative; opacity: 1; transform: none; }
.fc-mpanel[hidden] { display: block; visibility: hidden; pointer-events: none; }

.fc-matches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}

.page-home .match {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 1.8vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  overflow: hidden;
  transition: transform .5s var(--e-out), border-color .4s var(--ease);
}
.page-home .match::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(255, 90, 0, .13), transparent 58%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.page-home .match:hover { transform: translateY(-4px); border-color: var(--line-2); }
.page-home .match:hover::before { opacity: 1; }
.page-home .match.is-live { border-color: rgba(255, 90, 0, .3); }
.page-home .match.is-live::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--ember-rule);
}

.match__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.match__tour {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--txt-3);
  font-size: .76rem;
  letter-spacing: .03em;
}
.match__tour .ic { width: 15px; height: 15px; flex: none; color: var(--orange-light); }
.match__tour span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match__when {
  flex: none;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--txt-2);
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.match__teams { position: relative; display: grid; gap: 10px; margin-bottom: 18px; }
.team { display: flex; align-items: center; gap: 12px; }
.team__badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid rgba(255, 176, 0, .28);
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255, 122, 0, .24), rgba(255, 176, 0, .05));
  color: #ffd7b8;
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.team__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.team__score {
  flex: none;
  color: var(--txt-2);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.team__score small { color: var(--txt-3); font-size: .78em; font-weight: 500; }
.team.is-batting .team__score { color: var(--gold); }
.team.is-batting .team__name::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 90, 0, .8);
  vertical-align: middle;
}

/* 2 outcomes or 3 (a Test match adds the draw) — columns adapt either way */
.match__odds {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 8px;
  margin-top: auto;
}
.odd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .035);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.odd__label {
  max-width: 100%;
  overflow: hidden;
  color: var(--txt-3);
  font-size: .64rem;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.odd__value {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.odd:hover { transform: translateY(-2px); border-color: var(--line-hot); background: rgba(255, 90, 0, .1); }
.odd.is-picked {
  border-color: transparent;
  background: var(--ember);
  box-shadow: 0 10px 24px -12px rgba(255, 110, 0, .9);
}
.odd.is-picked .odd__label { color: rgba(26, 12, 0, .7); }
.odd.is-picked .odd__value { color: #1a0c00; }

.livedot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px 4px 9px;
  border: 1px solid rgba(255, 90, 0, .45);
  border-radius: 999px;
  background: rgba(255, 90, 0, .12);
  color: #ffb27a;
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.livedot::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
  animation: fcLivePulse 2s var(--ease) infinite;
}
@keyframes fcLivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 90, 0, .65); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 90, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0); }
}

.fc-board__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 22px;
}
.fc-board__foot small { color: var(--txt-3); font-size: .74rem; }

/* ============ 18c. HOW IT WORKS ============ */
.fc-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}
.fc-step {
  position: relative;
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  transition: transform .5s var(--e-out), border-color .4s var(--ease);
}
.fc-step:hover { transform: translateY(-6px); border-color: var(--line-2); }
/* chevron sitting in the gutter between steps */
.fc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(14px, 1.5vw, 20px) / -2 - 4px);
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: .55;
  transform: translateY(-50%) rotate(45deg);
}
.fc-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.fc-step__num {
  color: transparent;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .18);
}
.fc-step:hover .fc-step__num {
  background: var(--ember);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke-color: transparent;
}
.fc-step h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.fc-step p { color: var(--txt-2); font-size: .92rem; line-height: 1.65; }

/* ============ SPORTS STAGE — league chips ============ */
.fc-leagues {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.fc-leagues li {
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: var(--txt-2);
  font-size: .72rem;
  font-weight: 500;
}
.page-home .spanel__body .fc-link { margin-top: 16px; }

/* ============ 18d. COMPETITIONS ============ */
.fc-comps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}
.fc-comp {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01));
  overflow: hidden;
  transition: transform .5s var(--e-out), border-color .4s var(--ease);
}
.fc-comp::before {
  content: "";
  position: absolute;
  top: -36%;
  right: -34%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 110, 0, .14), transparent 66%);
  pointer-events: none;
}
.fc-comp:hover { transform: translateY(-5px); border-color: var(--line-2); }
.fc-comp__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.fc-comp__head h3 { color: #fff; font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; }
.fc-comp__count {
  display: block;
  margin-top: 2px;
  color: var(--txt-3);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fc-comp__list { position: relative; display: grid; margin-bottom: 20px; }
.fc-comp__list li {
  display: grid;
  gap: 2px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .07);
}
.fc-comp__list li:last-child { border-bottom: 0; }
.fc-comp__list strong {
  color: var(--txt-1);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.005em;
}
.fc-comp__list span { color: var(--txt-3); font-size: .76rem; }
.fc-comp .fc-link { position: relative; margin-top: auto; }

/* ============ 18e. MARKETS ============ */
.fc-markets {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 2fr);
  align-items: start;
  gap: clamp(28px, 4.5vw, 72px);
}
.fc-markets__intro { position: sticky; top: calc(var(--nav-h) + 36px); }
.fc-markets__intro .btn { margin-top: 10px; }
.fc-markets__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--line);
  overflow: hidden;
}
.fc-market {
  padding: clamp(22px, 2.2vw, 30px);
  background: var(--ink-1);
  transition: background-color .4s var(--ease);
}
.fc-market:hover { background: #120c08; }
.fc-market .fc-tile { margin-bottom: 18px; transition: transform .45s var(--e-back); }
.fc-market:hover .fc-tile { transform: translateY(-3px) rotate(-6deg); color: var(--gold); }
.fc-market h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.fc-market p { color: var(--txt-2); font-size: .88rem; line-height: 1.6; }
.fc-market__sports {
  display: block;
  margin-top: 14px;
  color: var(--txt-3);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============ 18f. CASINO TABLES ============ */
.fc-tables-wrap { position: relative; z-index: 2; margin-top: clamp(44px, 5vw, 72px); }
.fc-tables__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 20px;
}
.fc-tables__head h3 {
  color: #fff;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.fc-tables__head p { margin-top: 4px; color: var(--txt-3); font-size: .86rem; }
.fc-tables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.fc-table {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, rgba(22, 16, 11, .92), rgba(9, 8, 7, .88));
  transition: transform .5s var(--e-out), border-color .4s var(--ease);
}
.fc-table:hover { transform: translateY(-4px); border-color: rgba(255, 176, 0, .35); }
.fc-table .fc-tile {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 176, 0, .38);
  background: linear-gradient(150deg, rgba(255, 176, 0, .2), rgba(255, 122, 0, .04));
  color: var(--gold);
}
.fc-table h4 {
  margin-bottom: 4px;
  color: #fff;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.fc-table p { color: var(--txt-2); font-size: .82rem; line-height: 1.55; }

/* ============ 18g. AVIATOR STEPS ============ */
.fc-avwrap { position: relative; z-index: 2; margin-top: clamp(44px, 5vw, 72px); }
.fc-avsteps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, rgba(16, 12, 10, .88), rgba(7, 6, 6, .82));
  overflow: hidden;
}
.fc-avstep {
  position: relative;
  padding: clamp(22px, 2.2vw, 30px);
  border-right: 1px solid var(--line);
}
.fc-avstep:last-child { border-right: 0; }
.fc-avstep__num {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.fc-avstep__num::after {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
}
.fc-avstep--warn .fc-avstep__num { color: #ff7a52; }
.fc-avstep h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.fc-avstep p { color: var(--txt-2); font-size: .88rem; line-height: 1.6; }

.fc-avfeats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.fc-avfeats li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: var(--txt-2);
  font-size: .82rem;
  font-weight: 500;
}
.fc-avfeats .ic { width: 16px; height: 16px; color: var(--orange-light); }

/* ============ 18h. INSIGHTS ============ */
.fc-posts {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}
.fc-posts__side { display: grid; gap: clamp(14px, 1.5vw, 20px); }
.fc-post {
  position: relative;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01));
  transition: transform .5s var(--e-out), border-color .4s var(--ease);
}
.fc-post:hover { transform: translateY(-4px); border-color: var(--line-2); }
.fc-post--lead {
  grid-template-columns: 1fr;
  align-items: stretch;
  align-content: start;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.fc-post__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  background: var(--ink-2);
  overflow: hidden;
}
.fc-post--lead .fc-post__media { aspect-ratio: 16 / 9; border-radius: 0; }
.fc-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.35) contrast(1.1) saturate(1.2);
  transition: transform 1s var(--e-out);
}
.fc-post:hover .fc-post__media img { transform: scale(1.06); }
.fc-post__body { min-width: 0; }
.fc-post--lead .fc-post__body { padding: clamp(22px, 2.4vw, 32px); }
.fc-post__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 176, 0, .3);
  border-radius: 999px;
  background: rgba(255, 90, 0, .1);
  color: #ffcfa6;
  font-family: var(--font-head);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.fc-post h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.fc-post--lead h3 { margin-bottom: 12px; font-size: clamp(1.4rem, 2.2vw, 1.9rem); letter-spacing: -.03em; }
.fc-post p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--txt-2);
  font-size: .86rem;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.fc-post--lead p { font-size: .96rem; -webkit-line-clamp: 3; }
.fc-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 12px;
  color: var(--txt-3);
  font-size: .74rem;
}
.fc-post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.fc-post__meta .ic { width: 14px; height: 14px; color: var(--orange-light); }
.fc-post__link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }

/* ============ 18i. FAQ ============ */
.fc-faq {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.5fr);
  align-items: start;
  gap: clamp(32px, 5vw, 80px);
}
.fc-faq__intro { position: sticky; top: calc(var(--nav-h) + 36px); }
.fc-faq__card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(255, 122, 0, .09), rgba(255, 255, 255, .015));
}
.fc-faq__card h3 { margin-bottom: 6px; color: #fff; font-size: 1.05rem; font-weight: 700; }
.fc-faq__card p { margin-bottom: 16px; color: var(--txt-2); font-size: .88rem; line-height: 1.6; }
.fc-faq__card .fc-link + .fc-link { margin-left: 18px; }

.page-home .faq { display: grid; gap: 10px; }
.page-home .faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(168deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01));
  overflow: hidden;
  transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.page-home .faq__item.is-open {
  border-color: rgba(255, 122, 0, .35);
  background: linear-gradient(168deg, rgba(255, 122, 0, .08), rgba(255, 255, 255, .015));
}
.page-home .faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px clamp(18px, 2vw, 26px);
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(.96rem, 1.1vw, 1.05rem);
  font-weight: 600;
  text-align: left;
  transition: color .3s var(--ease);
}
.page-home .faq__q:hover { color: #ffcfa6; }
.page-home .faq__sign {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}
.page-home .faq__sign::before,
.page-home .faq__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: opacity .4s var(--ease);
}
.page-home .faq__sign::before { width: 12px; height: 1.5px; }
.page-home .faq__sign::after  { width: 1.5px; height: 12px; }
.page-home .faq__item.is-open .faq__sign {
  border-color: transparent;
  background: rgba(255, 122, 0, .18);
  transform: rotate(180deg);
}
.page-home .faq__item.is-open .faq__sign::after { opacity: 0; }
.page-home .faq__a { height: 0; overflow: hidden; transition: height .45s var(--ease); }
.page-home .faq__a > div {
  padding: 0 clamp(18px, 2vw, 26px) 22px;
  color: var(--txt-2);
  font-size: .94rem;
  line-height: 1.72;
}
.page-home .faq__a a { color: #ffb27a; text-decoration: underline; text-underline-offset: 3px; }

/* ============ 18j. RESPONSIBLE GAMING ============ */
.fc-rg {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(255, 122, 0, .1), transparent 60%),
    linear-gradient(168deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  overflow: hidden;
}
.fc-rg__top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.fc-rg__top .kicker { margin-bottom: 0; }
.fc-rg__badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: none;
  border: 1px solid rgba(255, 176, 0, .5);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(255, 176, 0, .26), rgba(255, 90, 0, .06) 70%);
  box-shadow: 0 0 40px rgba(255, 120, 0, .25);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.fc-rg__lead h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.fc-rg__lead > p { color: var(--txt-2); font-size: .98rem; line-height: 1.7; }
.fc-rg__actions { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 24px; }
.fc-rg__tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fc-rg__tool {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(8, 8, 10, .6);
  transition: border-color .4s var(--ease);
}
.fc-rg__tool:hover { border-color: var(--line-2); }
.fc-rg__tool > .ic { width: 22px; height: 22px; margin-bottom: 12px; color: var(--gold); }
.fc-rg__tool h3 { margin-bottom: 6px; color: #fff; font-size: .98rem; font-weight: 700; }
.fc-rg__tool p { color: var(--txt-2); font-size: .84rem; line-height: 1.55; }
.fc-rg__safe {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--txt-3);
  font-size: .84rem;
}
.fc-rg__safe .ic { width: 18px; height: 18px; flex: none; color: var(--orange-light); }

/* ============ 18k. RESPONSIVE ============ */
@media (max-width: 1200px) {
  .fc-comps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-home .fc-board__tabs .stab { padding-inline: 16px; }
}

@media (max-width: 1023px) {
  /* stage copy now carries chips + a link, so the stage needs more height */
  .page-home .spanel img { aspect-ratio: 16 / 10; }

  .fc-board__bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .page-home .fc-board__tabs { max-width: 100%; }
  .fc-matches { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .fc-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fc-step:not(:last-child)::after { display: none; }

  .fc-markets { grid-template-columns: 1fr; }
  .fc-markets__intro { position: static; }
  .fc-markets__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .fc-tables { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .fc-avsteps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fc-avstep:nth-child(2n) { border-right: 0; }
  .fc-avstep:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .fc-posts { grid-template-columns: 1fr; }

  .fc-faq { grid-template-columns: 1fr; }
  .fc-faq__intro { position: static; }

  .fc-rg { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  /* Stack the stage: artwork on top, copy card overlapping its lower edge.
     Carrying chips and a link, an overlaid card would hide the image. */
  .page-home .spanel img { aspect-ratio: 16 / 11; }
  .page-home .spanel__body {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -64px 12px 12px;
  }

  .fc-matches { grid-template-columns: 1fr; }
  .fc-board__foot { flex-direction: column; align-items: flex-start; }

  .fc-steps { grid-template-columns: 1fr; }
  .fc-comps__grid { grid-template-columns: 1fr; }
  .fc-markets__grid { grid-template-columns: 1fr; }

  .fc-tables__head { flex-direction: column; align-items: flex-start; }
  .fc-tables { grid-template-columns: 1fr; }

  .fc-avsteps { grid-template-columns: 1fr; }
  .fc-avstep,
  .fc-avstep:nth-child(2n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .fc-avstep:last-child { border-bottom: 0; }

  .fc-post { grid-template-columns: 96px minmax(0, 1fr); gap: 14px; padding: 12px; }
  .fc-post--lead { grid-template-columns: 1fr; padding: 0; }
  .fc-post h3 { font-size: .96rem; }

  .fc-faq__card .fc-link + .fc-link { margin-left: 0; margin-top: 10px; }
  .fc-faq__card .fc-link { display: flex; }

  .fc-rg { padding: 26px 20px; }
  .fc-rg__tools { grid-template-columns: 1fr; }
  .fc-rg__safe { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .livedot::before { animation: none; }
}
