/* ==========================================================================
   777CX Game — "Royal Ledger" Design System
   cx777play.com.pk · Vanilla CSS3 · Mobile-first · BEM-lite
   --------------------------------------------------------------------------
   00  Tokens
   01  Reset & Base
   02  Layout / Container
   03  Typography helpers
   04  Buttons
   05  Ledger rule & Section heads
   06  Header (utility bar + nav)
   07  Hero
   08  Phone mockup
   09  Marquee
   10  Cards / Grids
   11  Games grid & filters
   12  Screenshot carousel
   13  Bands (navy promo, stats, CTA)
   14  Steps timeline
   15  Accordion / FAQ
   16  Tables
   17  Forms
   18  Footer
   19  Reveal & motion
   20  Utilities & responsive
   ========================================================================== */

/* ==========================================================================
   00 · TOKENS
   ========================================================================== */
:root {
  /* Surfaces */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F7F8FB;
  --color-bg-tertiary: #EFF2F8;

  /* Architecture */
  --color-navy: #0B1D3A;
  --color-navy-soft: #14294B;
  --color-navy-deep: #071427;

  /* Accent */
  --color-gold: #C9A227;
  --color-gold-light: #E8C874;
  --color-gold-pale: #F6EDD2;
  --color-gold-ink: #85680F;          /* AA-safe gold for small text on white */
  --color-gold-foil: linear-gradient(135deg, #C9A227 0%, #F3DA8C 50%, #C9A227 100%);

  /* Text */
  --color-text-body: #1C2438;
  --color-text-muted: #5B6478;
  --color-text-inverse: #EEF2F9;
  --color-text-inverse-muted: #A9B6CC;

  /* Lines & states */
  --color-border-hairline: #E2E6EE;
  --color-border-strong: #CDD5E3;
  --color-success: #1E8A5C;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 29, 58, .05);
  --shadow-sm: 0 2px 8px rgba(11, 29, 58, .06);
  --shadow-md: 0 10px 28px -10px rgba(11, 29, 58, .18);
  --shadow-lg: 0 24px 56px -20px rgba(11, 29, 58, .28);
  --shadow-xl: 0 44px 90px -30px rgba(11, 29, 58, .38);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --fs-xs: .75rem;
  --fs-sm: .8125rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.75rem;

  /* Rhythm */
  --gutter: 1.25rem;
  --maxw: 1240px;
  --maxw-narrow: 860px;
  --section-y: 3.5rem;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Motion */
  --ease-ledger: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 68px;
}

@media (min-width: 768px) {
  :root {
    --gutter: 2.5rem;
    --section-y: 5rem;
    --fs-4xl: 3.25rem;
    --nav-h: 76px;
  }
}

@media (min-width: 1200px) {
  :root {
    --gutter: 4rem;
    --section-y: 6.5rem;
    --fs-4xl: 3.75rem;
    --nav-h: 84px;
  }
}

/* ==========================================================================
   01 · RESET & BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;      /* no horizontal scroll, ever */
}

/* `clip` does the same job without creating a scroll container, which would
   otherwise break `position: sticky` on the header in some browsers. */
@supports (overflow: clip) {
  html,
  body { overflow-x: clip; }
}

body {
  margin: 0;
  background: var(--color-bg-primary);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 .6em;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.012em;
  color: var(--color-navy);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25rem; }
li { margin-bottom: .45em; }

strong { font-weight: 650; color: var(--color-navy); }

hr {
  border: 0;
  height: 1px;
  background: var(--color-border-hairline);
  margin: 2rem 0;
}

::selection {
  background: var(--color-gold);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--color-gold-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--color-navy);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   02 · LAYOUT / CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * .66); }
.section--alt { background: var(--color-bg-secondary); }
.section--tertiary { background: var(--color-bg-tertiary); }

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .grid { gap: 1.75rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .split {
    grid-template-columns: 1.05fr .95fr;
    gap: 4rem;
  }
  .split--media-first > *:first-child { order: 2; }
  .split--media-first > *:last-child { order: 1; }
}

/* ==========================================================================
   03 · TYPOGRAPHY HELPERS
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-gold-ink);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--color-gold);
  flex: none;
}
.eyebrow--inverse { color: var(--color-gold-light); }

.lede {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 62ch;
}

.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.9rem; font-size: var(--fs-lg); }
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }
.prose li { color: var(--color-text-body); }

.text-center { text-align: center; }
.text-center .lede,
.text-center .prose { margin-inline: auto; }

.num {
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  color: var(--color-gold-ink);
  font-weight: 700;
}

.gold-text { color: var(--color-gold-ink); }

.foil-text {
  background: var(--color-gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kw {
  color: var(--color-navy);
  font-weight: 600;
}

/* ==========================================================================
   04 · BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease-ledger),
              box-shadow .25s var(--ease-ledger),
              background-color .25s ease,
              color .25s ease,
              border-color .25s ease;
}

.btn svg { flex: none; }

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

/* Gold foil primary */
.btn--gold {
  background: var(--color-gold-foil);
  background-size: 200% 100%;
  color: #2A2103;
  box-shadow: 0 8px 22px -10px rgba(201, 162, 39, .85),
              inset 0 1px 0 rgba(255, 255, 255, .5);
  font-weight: 700;
}
.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg,
              transparent 30%,
              rgba(255, 255, 255, .75) 48%,
              transparent 66%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-ledger);
}
.btn--gold:hover::before { transform: translateX(120%); }
.btn--gold:hover {
  box-shadow: 0 14px 30px -10px rgba(201, 162, 39, .95),
              inset 0 1px 0 rgba(255, 255, 255, .6);
}

/* Navy solid */
.btn--navy {
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--navy:hover { background: var(--color-navy-soft); }

/* Outline on light */
.btn--outline {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy);
}
.btn--outline:hover {
  background: var(--color-navy);
  color: #fff;
}

/* Outline on navy */
.btn--ghost-light {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(232, 200, 116, .55);
  color: var(--color-gold-light);
}
.btn--ghost-light:hover {
  background: rgba(232, 200, 116, .14);
  border-color: var(--color-gold-light);
}

/* Gold hairline ghost (game cards) */
.btn--wire {
  background: #fff;
  border-color: var(--color-gold);
  color: var(--color-gold-ink);
  padding: .6rem 1.1rem;
  font-size: .8125rem;
}
.btn--wire:hover {
  background: var(--color-gold);
  color: #2A2103;
}

/* Telegram */
.btn--tg {
  background: #229ED9;
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(34, 158, 217, .9);
}
.btn--tg:hover { background: #1B8BC0; }

.btn--tg-outline {
  background: #fff;
  border-color: #229ED9;
  color: #12678F;
}
.btn--tg-outline:hover { background: #E8F6FD; }

.btn--sm { padding: .6rem 1.1rem; font-size: .8125rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* ==========================================================================
   05 · LEDGER RULE & SECTION HEADS
   ========================================================================== */
.ledger {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-block: 0;
}
.ledger__line {
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, transparent, var(--color-gold) 22%, var(--color-gold) 78%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s var(--ease-ledger);
}
.ledger.is-visible .ledger__line { transform: scaleX(1); }
.ledger__mark {
  flex: none;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border: 1px solid var(--color-gold);
  background: var(--color-gold-pale);
  opacity: 0;
  transition: opacity .6s ease .35s;
}
.ledger.is-visible .ledger__mark { opacity: 1; }
.ledger--inverse .ledger__mark { background: transparent; border-color: var(--color-gold-light); }
.ledger--inverse .ledger__line {
  background: linear-gradient(90deg, transparent, var(--color-gold-light) 22%, var(--color-gold-light) 78%, transparent);
}

.sec-head { margin-bottom: 2.25rem; }
.sec-head--center { text-align: center; }
.sec-head--center .lede { margin-inline: auto; }
.sec-head h2 { margin-bottom: .55rem; }

.sec-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: .06em;
  margin-right: .55rem;
  vertical-align: .18em;
}

/* ==========================================================================
   06 · HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}

/* Utility bar */
.ubar {
  background: var(--color-navy-deep);
  color: var(--color-text-inverse-muted);
  font-size: var(--fs-xs);
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(201, 162, 39, .18);
}
.ubar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding-block: .35rem;
}
.ubar__left,
.ubar__right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.ubar__left { min-width: 0; }
.ubar__tag {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ubar a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--color-text-inverse-muted);
  transition: color .2s ease;
  white-space: nowrap;
}
.ubar a:hover { color: var(--color-gold-light); }

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--color-gold-light);
  font-weight: 600;
  white-space: nowrap;
}
.live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35D07F;
  box-shadow: 0 0 0 0 rgba(53, 208, 127, .7);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(53, 208, 127, .65); }
  70%  { box-shadow: 0 0 0 9px rgba(53, 208, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0); }
}

.ubar__note {
  color: var(--color-gold-light);
  font-size: .6875rem;
  max-width: 22ch;
  line-height: 1.4;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(201, 162, 39, .35);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--color-text-inverse-muted);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .2rem .55rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--color-gold);
  color: #2A2103;
}

@media (max-width: 860px) {
  .ubar__left,
  .ubar__note { display: none; }
  .ubar__inner { justify-content: center; }
  .ubar__right { gap: .9rem; }
}
@media (max-width: 420px) {
  .ubar a span,
  .live-dot { font-size: .6875rem; }
}

/* Main nav */
.nav {
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-hairline);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-stuck .nav {
  border-bottom-color: var(--color-gold);
  box-shadow: 0 8px 24px -18px rgba(11, 29, 58, .5);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  transition: height .3s var(--ease-ledger);
}
.site-header.is-stuck .nav__inner { height: calc(var(--nav-h) - 10px); }

/* Brand / logo plate — cropped from the supplied logo artwork */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}
.brand__logo {
  --lh: 38px;
  display: block;
  height: var(--lh);
  width: calc(var(--lh) * 4.757);
  border-radius: 7px;
  background-image: url('../images/logo/logo-web.png');
  background-repeat: no-repeat;
  background-size: calc(var(--lh) * 5.1894) calc(var(--lh) * 3.4596);
  background-position: calc(var(--lh) * -0.3108) calc(var(--lh) * -1.0406);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, .55),
              0 6px 16px -10px rgba(11, 29, 58, .6);
  transition: transform .3s var(--ease-ledger), box-shadow .3s ease;
}
.brand:hover .brand__logo {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--color-gold), 0 10px 22px -12px rgba(11, 29, 58, .65);
}
.site-header.is-stuck .brand__logo { --lh: 34px; }

@media (min-width: 768px) {
  .brand__logo { --lh: 44px; }
  .site-header.is-stuck .brand__logo { --lh: 38px; }
}
@media (min-width: 1200px) {
  .brand__logo { --lh: 48px; }
  .site-header.is-stuck .brand__logo { --lh: 41px; }
}

/* Logo on dark surfaces sits on a clean white plate */
.footer__logo,
.logo-plate {
  display: inline-block;
  padding: 9px 13px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(232, 200, 116, .45),
              0 14px 30px -18px rgba(0, 0, 0, .8);
}
.brand__logo--footer {
  --lh: 44px;
  box-shadow: none;
  border-radius: 5px;
}

/* Nav links */
.nav__links {
  display: none;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  position: relative;
  display: block;
  padding: .55rem .8rem;
  font-size: .9375rem;
  font-weight: 550;
  color: var(--color-navy);
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .3rem;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-ledger);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--color-gold-ink); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: none;
}
.nav__cta { display: none; }

.nav__tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E8F6FD;
  color: #229ED9;
  border: 1px solid rgba(34, 158, 217, .3);
  transition: transform .25s var(--ease-ledger), background .25s ease;
}
.nav__tg:hover { background: #229ED9; color: #fff; transform: translateY(-2px); }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  color: var(--color-navy);
}
.nav__toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease-ledger), opacity .2s ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease-ledger);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-rows: 1fr;
  background: rgba(7, 20, 39, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.nav__drawer.is-open { opacity: 1; visibility: visible; }
.nav__panel {
  width: min(360px, 88vw);
  margin-left: auto;
  height: 100%;
  background: #fff;
  padding: 1.5rem 1.5rem 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease-ledger);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nav__drawer.is-open .nav__panel { transform: none; }
.nav__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-hairline);
}
.nav__panel-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav__panel-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem .25rem;
  font-weight: 600;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border-hairline);
}
.nav__panel-links a[aria-current="page"] { color: var(--color-gold-ink); }
.nav__panel-links a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-gold);
  border-top: 1.5px solid var(--color-gold);
  transform: rotate(45deg);
}

@media (min-width: 992px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ==========================================================================
   07 · HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 88% 10%, rgba(201, 162, 39, .13) 0%, transparent 55%),
    radial-gradient(90% 70% at 4% 92%, rgba(11, 29, 58, .07) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-secondary) 100%);
  padding-block: 3rem calc(var(--section-y) * .9);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero { padding-block: 4.5rem 5.5rem; }
  .hero__grid {
    grid-template-columns: 1.08fr .92fr;
    gap: 3.5rem;
  }
}

.hero h1 {
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--color-gold-ink), var(--color-gold) 55%, var(--color-gold-ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: 1.5rem;
}

.hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.35rem;
  margin-bottom: 1.6rem;
  background: #fff;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.hero__bonus-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.3;
  max-width: 9rem;
}
.hero__bonus-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  color: var(--color-gold-ink);
  line-height: 1;
}

.hero__quickstats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-hairline);
}
.hero__quickstat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
  color: var(--color-navy);
  line-height: 1.2;
}
.hero__quickstat > span {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Decorative rings behind the mockup */
.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
}
.hero__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 132%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  opacity: .85;
}
.hero__rings circle { fill: none; stroke-linecap: round; }
.hero__rings .ring-a {
  stroke: rgba(201, 162, 39, .45);
  stroke-width: 1;
  stroke-dasharray: 6 14;
  transform-origin: 50% 50%;
  animation: spin 46s linear infinite;
}
.hero__rings .ring-b {
  stroke: rgba(11, 29, 58, .14);
  stroke-width: 1;
  transform-origin: 50% 50%;
  animation: spin 62s linear infinite reverse;
}
.hero__rings .ring-c {
  stroke: rgba(201, 162, 39, .28);
  stroke-width: 2;
  stroke-dasharray: 120 460;
  transform-origin: 50% 50%;
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 162, 39, .28), transparent 62%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}

/* Floating coin chips */
.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .85rem;
  background: #fff;
  border: 1px solid var(--color-border-hairline);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 650;
  color: var(--color-navy);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 3;
}
.hero__chip svg { color: var(--color-gold-ink); }
.hero__chip--a { top: 12%; left: -2%; animation: float-a 6.5s ease-in-out infinite; }
.hero__chip--b { bottom: 16%; right: -2%; animation: float-b 7.5s ease-in-out infinite; }

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

@media (max-width: 480px) {
  .hero__chip--a { left: 0; }
  .hero__chip--b { right: 0; }
}

/* ==========================================================================
   08 · PHONE MOCKUP
   ========================================================================== */
.phone {
  position: relative;
  width: 100%;
  max-width: 290px;
  margin-inline: auto;
  animation: phone-float 7s ease-in-out infinite;
}
.phone--lg { max-width: 320px; }
.phone--sm { max-width: 230px; }

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-14px) rotate(-1.2deg); }
}

.phone__frame {
  position: relative;
  padding: 9px;
  border-radius: 2.6rem;
  background:
    linear-gradient(150deg, #24406E 0%, #0B1D3A 34%, #071427 78%, #16294A 100%);
  box-shadow:
    0 0 0 1.5px rgba(201, 162, 39, .5),
    0 42px 80px -28px rgba(11, 29, 58, .55),
    0 8px 24px -12px rgba(11, 29, 58, .35),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.phone__screen {
  position: relative;
  aspect-ratio: 1280 / 2688;
  border-radius: 2.05rem;
  overflow: hidden;
  background: #0B1D3A;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Dynamic-island style pill — small enough not to obscure the screenshot */
.phone__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 26%;
  height: 15px;
  border-radius: 999px;
  background: #04101F;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06);
  z-index: 4;
}
.phone__speaker {
  position: absolute;
  top: 13.5px;
  left: 56%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(120, 150, 190, .55);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, .9);
  z-index: 5;
}

.phone__btn {
  position: absolute;
  width: 2.5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #C9A227, #8A6D12);
  right: -2.5px;
}
.phone__btn--power { top: 26%; height: 10%; }
.phone__btn--vol-a { left: -2.5px; right: auto; top: 18%; height: 6%; }
.phone__btn--vol-b { left: -2.5px; right: auto; top: 26%; height: 6%; }

.phone__reflection {
  position: absolute;
  inset: 9px;
  border-radius: 2.05rem;
  pointer-events: none;
  z-index: 6;
  background: linear-gradient(115deg,
              rgba(255, 255, 255, .22) 0%,
              rgba(255, 255, 255, .05) 22%,
              transparent 42%);
  mix-blend-mode: screen;
}

.phone__shine {
  position: absolute;
  inset: 9px;
  border-radius: 2.05rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 7;
}
.phone__shine::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: rotate(12deg);
  animation: phone-sweep 6.5s ease-in-out infinite;
}
@keyframes phone-sweep {
  0%, 62%  { transform: translateX(0) rotate(12deg); }
  100%     { transform: translateX(360%) rotate(12deg); }
}

/* Badge that sits on the mockup */
.phone__badge {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
  bottom: 8%;
  left: -14%;
}
.phone__badge strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gold-ink);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.phone__badge > span {
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}

@media (max-width: 560px) {
  .phone__badge { left: -6%; bottom: 4%; }
}

/* ==========================================================================
   09 · MARQUEE
   ========================================================================== */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 1.15rem;
  background: var(--color-navy);
  border-block: 1px solid rgba(201, 162, 39, .3);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee__group {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-inline: 1.6rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--color-text-inverse);
  white-space: nowrap;
}
.marquee__item svg { color: var(--color-gold-light); flex: none; }
.marquee__item::after {
  content: '';
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--color-gold);
  margin-left: 1.6rem;
}

/* ==========================================================================
   10 · CARDS
   ========================================================================== */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--color-border-hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease-ledger),
              box-shadow .3s var(--ease-ledger),
              border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, .5);
}
.card h3 { font-size: var(--fs-lg); margin-bottom: .5rem; }
.card p { color: var(--color-text-muted); font-size: .9375rem; }
.card--flat:hover { transform: none; box-shadow: var(--shadow-xs); }
.card--tinted { background: var(--color-bg-secondary); }

.card__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: .05em;
  margin-bottom: .9rem;
  display: block;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-gold-pale);
  color: var(--color-gold-ink);
  border: 1px solid rgba(201, 162, 39, .35);
  margin-bottom: 1.05rem;
  flex: none;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: .9rem;
  color: var(--color-text-muted);
}
.card__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .45rem;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid var(--color-gold);
}

/* Feature list (checkmarks) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .7rem;
  color: var(--color-text-body);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-gold-pale);
  border: 1px solid rgba(201, 162, 39, .5);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 6.5px;
  top: .68em;
  width: 7px;
  height: 4px;
  border-left: 1.8px solid var(--color-gold-ink);
  border-bottom: 1.8px solid var(--color-gold-ink);
  transform: rotate(-45deg);
}
.checklist--inverse li { color: var(--color-text-inverse); }
.checklist--inverse li::before { background: rgba(232, 200, 116, .16); border-color: rgba(232, 200, 116, .5); }
.checklist--inverse li::after { border-color: var(--color-gold-light); }

/* Quote cards */
.quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--color-border-hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease-ledger), box-shadow .3s var(--ease-ledger);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote__stars { color: var(--color-gold); display: flex; gap: .15rem; }
.quote blockquote {
  margin: 0;
  font-size: .9375rem;
  color: var(--color-text-body);
  line-height: 1.75;
}
.quote__by {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-hairline);
  margin-top: auto;
}
.quote__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-navy);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  flex: none;
}
.quote__by strong { display: block; font-size: .875rem; line-height: 1.3; }
.quote__by > div span { font-size: var(--fs-xs); color: var(--color-text-muted); }

/* Media panel (image inside a gold-hairline frame) */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-hairline);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-tertiary);
}
.media-frame img { width: 100%; height: auto; }
.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, .35);
  pointer-events: none;
}

/* ==========================================================================
   11 · GAMES GRID & FILTERS
   ========================================================================== */
.filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filters__search {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.filters__search input {
  width: 100%;
  padding: .8rem 1rem .8rem 2.75rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: #fff;
  font-size: .9375rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.filters__search input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .14);
}
.filters__search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab {
  padding: .5rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: #fff;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s var(--ease-ledger);
}
.tab:hover { border-color: var(--color-gold); color: var(--color-gold-ink); }
.tab[aria-selected="true"] {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
}
.tab[aria-selected="true"]:hover { color: var(--color-gold-light); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
@media (min-width: 560px) { .games-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; } }
@media (min-width: 900px) { .games-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
@media (min-width: 1200px) { .games-grid { grid-template-columns: repeat(5, 1fr); } }

.games-grid--featured { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .games-grid--featured { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .games-grid--featured { grid-template-columns: repeat(4, 1fr); } }

.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border-hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.game-card:hover,
.game-card:focus-within {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 36px -16px rgba(11, 29, 58, .4);
  border-color: rgba(201, 162, 39, .55);
  z-index: 2;
}
.game-card.is-hidden { display: none; }

.game-card__media {
  position: relative;
  aspect-ratio: 211 / 260;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}
.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-ledger);
}
.game-card:hover .game-card__media img { transform: scale(1.06); }

.game-card__tag {
  position: absolute;
  top: .5rem;
  left: .5rem;
  padding: .18rem .5rem;
  border-radius: 999px;
  background: rgba(7, 20, 39, .82);
  color: var(--color-gold-light);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.game-card__body {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .75rem .8rem .9rem;
  flex: 1;
}
.game-card__title {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 650;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-card__meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: -.3rem;
}
.game-card .btn { margin-top: auto; }

.games-empty {
  display: none;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-lg);
}
.games-empty.is-shown { display: block; }

.games-count {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.games-count strong { color: var(--color-gold-ink); }

/* ==========================================================================
   12 · SCREENSHOT CAROUSEL
   ========================================================================== */
.shots {
  position: relative;
  overflow: hidden;
}
.shots__viewport {
  position: relative;
  overflow: hidden;
  padding-block: 1.5rem 2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.shots__track {
  --shot-w: 190px;
  --shot-gap: 1.1rem;
  display: flex;
  gap: var(--shot-gap);
  will-change: transform;
  transition: transform .75s var(--ease-ledger);
}
@media (min-width: 620px) { .shots__track { --shot-w: 220px; --shot-gap: 1.5rem; } }
@media (min-width: 992px) { .shots__track { --shot-w: 250px; --shot-gap: 2rem; } }

.shots__item {
  flex: 0 0 var(--shot-w);
  width: var(--shot-w);
  opacity: .38;
  transform: scale(.84);
  filter: saturate(.7);
  transition: opacity .75s var(--ease-ledger),
              transform .75s var(--ease-ledger),
              filter .75s var(--ease-ledger);
}
.shots__item.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.shots__item .phone { animation: none; max-width: none; }
.shots__item.is-active .phone { animation: phone-float 8s ease-in-out infinite; }

.shots__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0;
  transition: opacity .5s ease;
}
.shots__item.is-active .shots__caption { opacity: 1; }

.shots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: .5rem;
}
.shots__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  background: #fff;
  color: var(--color-navy);
  cursor: pointer;
  transition: all .25s var(--ease-ledger);
  flex: none;
}
.shots__arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.shots__dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.shots__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all .3s var(--ease-ledger);
}
.shots__dot[aria-current="true"] {
  background: var(--color-gold);
  border-color: var(--color-gold);
  width: 26px;
  border-radius: 999px;
}

/* ==========================================================================
   13 · BANDS
   ========================================================================== */
.band-navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(201, 162, 39, .22) 0%, transparent 55%),
    radial-gradient(70% 100% at 92% 100%, rgba(201, 162, 39, .14) 0%, transparent 50%),
    linear-gradient(150deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: var(--color-text-inverse);
  padding-block: var(--section-y);
  border-block: 1px solid rgba(201, 162, 39, .3);
}
.band-navy h2,
.band-navy h3 { color: #fff; }
.band-navy p { color: var(--color-text-inverse-muted); }
.band-navy .lede { color: var(--color-text-inverse-muted); }

/* `strong` defaults to navy ink — unreadable on the dark bands and footer */
.band-navy strong,
.footer strong,
.checklist--inverse strong { color: var(--color-gold-light); }

.band-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 68px);
  pointer-events: none;
}

.band-navy__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .band-navy__inner { grid-template-columns: 1.15fr .85fr; gap: 4rem; }
}

.bonus-dial {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(232, 200, 116, .4);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(4px);
  text-align: center;
}
.bonus-dial::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(232, 200, 116, .18);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}
.bonus-dial__label {
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-gold-light);
}
.bonus-dial__value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 3.9rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: var(--color-gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bonus-dial__note {
  font-size: var(--fs-sm);
  color: var(--color-text-inverse-muted);
  max-width: 30ch;
}

/* Stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border-hairline);
  border: 1px solid var(--color-border-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  background: #fff;
  padding: 1.75rem 1.25rem;
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.6vw, 2.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-gold-ink);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.stat__label {
  font-size: var(--fs-xs);
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--color-text-muted);
  margin-top: .35rem;
}
.stats--inverse { background: rgba(232, 200, 116, .28); border-color: rgba(232, 200, 116, .3); }
.stats--inverse .stat { background: rgba(7, 20, 39, .55); }
.stats--inverse .stat__value {
  background: var(--color-gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats--inverse .stat__label { color: var(--color-text-inverse-muted); }

/* OG banner showcase */
.og-banner {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(201, 162, 39, .55), var(--shadow-xl);
  transition: transform .4s var(--ease-ledger), box-shadow .4s var(--ease-ledger);
  background: #05130A;
}
.og-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1.5px var(--color-gold), 0 50px 100px -30px rgba(11, 29, 58, .5);
}
.og-banner img { width: 100%; height: auto; }
.og-banner__sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.og-banner__sweep::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 35%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: rotate(14deg);
  animation: og-sweep 7s ease-in-out infinite;
}
@keyframes og-sweep {
  0%, 55% { transform: translateX(0) rotate(14deg); }
  100%    { transform: translateX(420%) rotate(14deg); }
}
.og-banner__cta {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
}
@media (max-width: 620px) {
  .og-banner__cta { display: none; }
}

.og-note {
  margin-top: 1rem;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-align: center;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 3rem;
  background:
    radial-gradient(100% 90% at 85% 0%, rgba(201, 162, 39, .14) 0%, transparent 58%),
    linear-gradient(180deg, #FFFFFF, var(--color-bg-secondary));
  border-bottom: 1px solid var(--color-border-hairline);
}
@media (min-width: 768px) { .page-hero { padding-block: 4rem 4.25rem; } }
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.1rem); margin-bottom: .85rem; }
.page-hero .lede { font-size: var(--fs-md); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  letter-spacing: .04em;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: .4rem; color: var(--color-gold); }
.breadcrumb a:hover { color: var(--color-gold-ink); }

/* ==========================================================================
   14 · STEPS TIMELINE
   ========================================================================== */
.steps {
  position: relative;
  display: grid;
  gap: 1.75rem;
  counter-reset: step;
}
@media (min-width: 900px) {
  .steps--3 { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
  .steps--4 { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
  .steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.4s var(--ease-ledger);
  }
  .steps.is-visible::before { transform: scaleX(1); }
}

.step {
  position: relative;
  text-align: center;
  padding-inline: .5rem;
}
.step__badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold-ink);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, .1);
  z-index: 1;
}
.section--alt .step__badge { background: var(--color-bg-secondary); }
.step h3 { font-size: var(--fs-lg); margin-bottom: .5rem; }
.step p { color: var(--color-text-muted); font-size: .9375rem; }

/* Vertical numbered ledger steps (download page) */
.vsteps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: vstep;
}
.vstep {
  position: relative;
  padding: 0 0 2rem 3.75rem;
  margin: 0;
}
.vstep::before {
  counter-increment: vstep;
  content: counter(vstep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: #fff;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-gold-ink);
}
.vstep::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 50px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--color-gold), rgba(201, 162, 39, .12));
}
.vstep:last-child { padding-bottom: 0; }
.vstep:last-child::after { display: none; }
.vstep h3 { font-size: var(--fs-lg); margin-bottom: .4rem; padding-top: .35rem; }
.vstep p { color: var(--color-text-muted); font-size: .9375rem; }

/* ==========================================================================
   15 · ACCORDION / FAQ
   ========================================================================== */
.faq {
  border-top: 1px solid var(--color-border-hairline);
}
.faq__item {
  border-bottom: 1px solid var(--color-border-hairline);
}
.faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem .25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 620;
  color: var(--color-navy);
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--color-gold-ink); }
.faq__item summary::after {
  content: '';
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: .45em;
  border-right: 1.6px solid var(--color-gold);
  border-bottom: 1.6px solid var(--color-gold);
  transform: rotate(45deg);
  transition: transform .3s var(--ease-ledger);
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item[open] summary { color: var(--color-gold-ink); }
.faq__answer {
  padding: 0 .25rem 1.5rem;
  color: var(--color-text-muted);
  font-size: .9375rem;
  max-width: 78ch;
  animation: faq-open .4s var(--ease-ledger);
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* Table of contents */
.toc {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-hairline);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.toc h2 { font-size: var(--fs-lg); margin-bottom: .85rem; }
.toc ol {
  margin: 0;
  padding-left: 1.25rem;
  columns: 1;
  font-size: .9375rem;
}
@media (min-width: 768px) { .toc ol { columns: 2; column-gap: 2.5rem; } }
.toc li { margin-bottom: .4rem; break-inside: avoid; }
.toc a { color: var(--color-text-body); }
.toc a:hover { color: var(--color-gold-ink); text-decoration: underline; text-underline-offset: 3px; }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.legal-meta strong { color: var(--color-navy); }

/* Callout */
.callout {
  padding: 1.35rem 1.5rem;
  background: var(--color-gold-pale);
  border: 1px solid rgba(201, 162, 39, .4);
  border-radius: var(--radius);
  font-size: .9375rem;
  margin-block: 1.75rem;
}
.callout strong { color: var(--color-gold-ink); }
.callout--navy {
  background: var(--color-bg-tertiary);
  border-color: var(--color-border-strong);
}

/* ==========================================================================
   16 · TABLES
   ========================================================================== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border-hairline);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 480px;
}
thead th {
  background: var(--color-navy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: var(--fs-xs);
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: left;
  padding: .85rem 1rem;
  white-space: nowrap;
}
tbody td {
  padding: .85rem 1rem;
  border-top: 1px solid var(--color-border-hairline);
  vertical-align: top;
  color: var(--color-text-body);
}
tbody tr:nth-child(even) td { background: var(--color-bg-secondary); }
tbody th {
  padding: .85rem 1rem;
  border-top: 1px solid var(--color-border-hairline);
  text-align: left;
  font-weight: 650;
  color: var(--color-navy);
  white-space: nowrap;
}

/* ==========================================================================
   17 · FORMS
   ========================================================================== */
.form {
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: .4rem; }
.field label {
  font-size: var(--fs-sm);
  font-weight: 650;
  color: var(--color-navy);
  letter-spacing: .01em;
}
.field label .req { color: #B3261E; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: #fff;
  font-size: .9375rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .14);
}
.field__hint { font-size: var(--fs-xs); color: var(--color-text-muted); }

@media (min-width: 620px) {
  .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}

.form__status {
  display: none;
  padding: .9rem 1.15rem;
  border-radius: 10px;
  font-size: .9rem;
  background: rgba(30, 138, 92, .1);
  border: 1px solid rgba(30, 138, 92, .35);
  color: #14624099;
  color: #146240;
}
.form__status.is-shown { display: block; }
.form__status textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: .875rem;
  line-height: 1.6;
  resize: vertical;
}

/* Contact channel cards */
.channel {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-hairline);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease-ledger), box-shadow .3s var(--ease-ledger), border-color .3s;
}
.channel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(34, 158, 217, .45); }
.channel__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #E8F6FD;
  color: #229ED9;
  flex: none;
}
.channel__icon--gold { background: var(--color-gold-pale); color: var(--color-gold-ink); }
.channel h3 { margin-bottom: .3rem; }
.channel p { color: var(--color-text-muted); font-size: .9375rem; }
.channel .btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   18 · FOOTER
   ========================================================================== */
.footer {
  position: relative;
  background: var(--color-navy-deep);
  color: var(--color-text-inverse-muted);
  padding-block: 3.5rem 0;
  font-size: .9rem;
  border-top: 2px solid var(--color-gold);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: radial-gradient(80% 100% at 50% 0%, rgba(201, 162, 39, .12), transparent 70%);
  pointer-events: none;
}
.footer__inner { position: relative; }

.footer__top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}
@media (min-width: 1100px) {
  .footer__top { grid-template-columns: 1.7fr 1fr 1fr 1.35fr; }
}

.footer__brand p {
  color: var(--color-text-inverse-muted);
  font-size: .9rem;
  margin-top: 1.15rem;
  max-width: 42ch;
}
.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(232, 200, 116, .35);
  background: rgba(255, 255, 255, .04);
  color: var(--color-gold-light);
  transition: all .25s var(--ease-ledger);
}
.footer__social a:hover {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer__col h3 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: .6rem; }
.footer__col a {
  color: var(--color-text-inverse-muted);
  transition: color .2s ease, padding-left .2s ease;
  font-size: .9rem;
}
.footer__col a:hover { color: var(--color-gold-light); padding-left: 4px; }

.footer__kw {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.footer__kw span {
  display: inline-block;
  padding: .28rem .65rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: .6875rem;
  color: var(--color-text-inverse-muted);
  letter-spacing: .02em;
}

.footer__disclaimer {
  padding-block: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.footer__disclaimer p {
  font-size: .8125rem;
  line-height: 1.8;
  color: #8E9BB3;
  max-width: 100ch;
}
.footer__disclaimer p + p { margin-top: .85rem; }
.footer__disclaimer strong { color: var(--color-gold-light); font-weight: 600; }

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .8rem;
  border: 1px solid rgba(232, 200, 116, .45);
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}
.badge-18--solid {
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border-color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem 2rem;
  font-size: var(--fs-xs);
  color: #7C8AA3;
}
.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}
.footer__bottom a:hover { color: var(--color-gold-light); }

/* Back to top */
.to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 150;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: #fff;
  color: var(--color-gold-ink);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease-ledger);
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--color-gold); color: #2A2103; }

/* Floating Telegram */
.tg-float {
  position: fixed;
  right: 1.15rem;
  bottom: 4.6rem;
  z-index: 150;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #229ED9;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(34, 158, 217, .9);
  transition: transform .3s var(--ease-ledger), background .25s ease;
}
.tg-float:hover { transform: scale(1.08); background: #1B8BC0; }
.tg-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(34, 158, 217, .5);
  animation: tg-ping 2.4s ease-out infinite;
}
@keyframes tg-ping {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ==========================================================================
   19 · REVEAL & MOTION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-ledger), transform .8s var(--ease-ledger);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .ledger__line { transform: scaleX(1) !important; }
  .ledger__mark { opacity: 1 !important; }
  .steps::before { transform: scaleX(1) !important; }
  .shots__item { opacity: 1; transform: none; filter: none; }
}

/* ==========================================================================
   20 · UTILITIES
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mt-4 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.25rem; }

.keywords-inline {
  font-size: .9375rem;
  color: var(--color-text-muted);
}
.keywords-inline strong { color: var(--color-navy); font-weight: 600; }

/* Print */
@media print {
  .site-header, .footer__top, .to-top, .tg-float, .marquee, .shots { display: none !important; }
  body { color: #000; }
}
