/* ==========================================================================
   777cx game — play777cx.pk
   main.css — Core stylesheet
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
   01. Reset & base
   02. Typography
   03. Layout primitives
   04. Section headers & dividers
   05. Buttons
   06. Badges, chips, pills
   07. Announcement bar
   08. Header, navigation, drawer
   09. Brand logo lockup
   10. Hero
   11. Device (phone) mockup
   12. Keyword ticker
   13. OG banner showcase
   14. Bonus / offers
   15. Games grid, cards & filters
   16. Screenshot slider
   17. Feature grid
   18. Steps / how-to-start
   19. Data tables & spec lists
   20. Testimonials
   21. Stats band
   22. Long-form prose
   23. Telegram community
   24. FAQ accordion
   25. CTA bands
   26. Footer
   27. Floating actions & mobile bar
   28. Inner page hero & breadcrumbs
   29. Contact form
   30. Utilities
   31. Print
   ========================================================================== */

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

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

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background-color: var(--c-ivory);
  color: var(--c-body);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

body.is-locked { overflow: hidden; }

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

a {
  color: var(--c-emerald-800);
  text-decoration: none;
  transition: color var(--d-fast) var(--ease-out);
}
a:hover { color: var(--c-gold-700); }

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

ul, ol { margin: 0; padding: 0; }

hr {
  border: 0;
  height: 1px;
  background: var(--c-line);
  margin: var(--s-8) 0;
}

::selection {
  background: var(--c-gold-300);
  color: var(--c-emerald-900);
}

/* Visible, high-contrast focus for keyboard users only */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--r-xs);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  z-index: var(--z-skip);
  padding: 12px 26px;
  background: var(--c-emerald-800);
  color: #fff;
  font-weight: var(--fw-bold);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--e-3);
  transition: top var(--d-base) var(--ease-out);
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Screen-reader-only */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   02. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .55em;
  font-family: var(--f-display);
  color: var(--c-ink);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  text-wrap: balance;
}

h1 { font-size: var(--t-h1); line-height: var(--lh-tight); font-weight: var(--fw-black); }
h2 { font-size: var(--t-h2); font-weight: var(--fw-bold); }
h3 { font-size: var(--t-h3); }
h4 { font-size: var(--t-h4); font-weight: var(--fw-semi); letter-spacing: -.012em; }

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

.lead {
  font-size: var(--t-lead);
  line-height: var(--lh-loose);
  color: var(--c-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-size: var(--t-tiny);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-gold-700);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--g-gold);
  border-radius: 2px;
}
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--g-gold);
  border-radius: 2px;
}

/* Gold-filled headline fragment */
.txt-gold {
  background: linear-gradient(135deg, #C9A227 0%, #D4AF37 40%, #9A7B14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.txt-emerald { color: var(--c-emerald-800); }
.txt-muted   { color: var(--c-muted); }

/* Underline flourish beneath a keyword */
.txt-underline {
  position: relative;
  white-space: nowrap;
}
.txt-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .30em;
  background: linear-gradient(90deg, rgba(212,175,55,.42), rgba(212,175,55,.14));
  border-radius: 3px;
  z-index: -1;
}

strong, b { font-weight: var(--fw-bold); color: var(--c-ink); }

/* ==========================================================================
   03. LAYOUT PRIMITIVES
   ========================================================================== */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: calc(var(--container-wide) + var(--gutter) * 2); }
.container--text { max-width: calc(var(--container-text) + var(--gutter) * 2); }

.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--tight  { padding-block: clamp(40px, 2.4rem + 2vw, 68px); }
.section--flush-top { padding-top: 0; }
.section--ivory  { background: var(--c-ivory-deep); }
.section--white  { background: var(--c-white); }
.section--tint   { background: var(--c-emerald-050); }
.section--paper  { background: var(--g-ivory); }

/* Emerald band — used sparingly for contrast moments (still light-friendly) */
.section--emerald {
  background: var(--g-emerald-deep);
  color: rgba(255,255,255,.86);
}
.section--emerald h2,
.section--emerald h3,
.section--emerald h4 { color: #fff; }
.section--emerald .lead { color: rgba(255,255,255,.80); }
.section--emerald .eyebrow { color: var(--c-gold-300); }

/* Decorative top hairline */
.section--hairline::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(620px, 72%);
  height: 1px;
  background: var(--g-hairline);
  opacity: .85;
}

/* Grids */
.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--auto-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--auto-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--auto-200 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.grid--auto-160 { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); }

/* Asymmetric split used across the site */
.split {
  display: grid;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
.split--60-40 { grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr); }
.split--40-60 { grid-template-columns: minmax(0, 1fr) minmax(0, 1.42fr); }
.split--50-50 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split--start { align-items: start; }

/* Generic surface card */
.card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
  padding: clamp(20px, 2vw, 30px);
}
.card--gold {
  border-color: var(--c-line-gold);
  background: var(--g-gold-soft);
}
.card--tint {
  background: var(--c-emerald-050);
  border-color: var(--c-line-emerald);
}
.card--flush { padding: 0; overflow: hidden; }

/* Gold corner accent used on premium cards */
.card--corner::before,
.card--corner::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid var(--c-gold-500);
  opacity: .55;
  transition: opacity var(--d-base) var(--ease-out);
}
.card--corner::before {
  top: 10px; left: 10px;
  border-right: 0; border-bottom: 0;
  border-radius: 8px 0 0 0;
}
.card--corner::after {
  bottom: 10px; right: 10px;
  border-left: 0; border-top: 0;
  border-radius: 0 0 8px 0;
}
.card--corner:hover::before,
.card--corner:hover::after { opacity: 1; }

/* Gold-line divider */
.rule-gold {
  height: 1px;
  background: var(--g-hairline);
  border: 0;
  margin: var(--s-9) 0;
}

/* Decorative background orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}
.orb--emerald { background: rgba(18, 160, 107, .16); }
.orb--gold    { background: rgba(212, 175, 55, .20); }

.section > .container { position: relative; z-index: var(--z-raised); }

/* ==========================================================================
   04. SECTION HEADERS
   ========================================================================== */
.sec-head {
  max-width: 720px;
  margin-bottom: var(--block-gap);
}
.sec-head--center {
  margin-inline: auto;
  text-align: center;
}
.sec-head--center .eyebrow { justify-content: center; }
.sec-head h2 { margin-bottom: .5em; }
.sec-head p { color: var(--c-muted); font-size: var(--t-lead); line-height: var(--lh-loose); }

.sec-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-7);
  max-width: none;
}
.sec-head--split > div { max-width: 660px; }

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */
.btn {
  --btn-py: 15px;
  --btn-px: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--f-display);
  font-size: .985rem;
  font-weight: var(--fw-bold);
  letter-spacing: .012em;
  line-height: 1.1;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition:
    transform var(--d-fast) var(--ease-out),
    box-shadow var(--d-base) var(--ease-out),
    background-color var(--d-base) var(--ease-out),
    border-color var(--d-base) var(--ease-out),
    color var(--d-base) var(--ease-out);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { flex: none; }

/* Primary — gold, the money button */
.btn--gold {
  background: var(--g-gold);
  background-size: 180% 180%;
  color: #2A2004;
  border-color: rgba(154, 123, 20, .55);
  box-shadow: var(--e-gold);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.btn--gold:hover {
  color: #1F1803;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,162,39,.40), 0 3px 10px rgba(201,162,39,.24);
}

/* Secondary — emerald solid */
.btn--emerald {
  background: var(--g-emerald);
  color: #fff;
  border-color: rgba(3, 58, 32, .30);
  box-shadow: var(--e-emerald);
}
.btn--emerald:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(4,106,56,.32);
}

/* Ghost — emerald outline on light */
.btn--ghost {
  background: var(--c-white);
  color: var(--c-emerald-800);
  border-color: var(--c-line-emerald);
  box-shadow: var(--e-1);
}
.btn--ghost:hover {
  color: var(--c-emerald-900);
  border-color: var(--c-emerald-700);
  background: var(--c-emerald-050);
  transform: translateY(-2px);
}

/* Outline gold */
.btn--outline-gold {
  background: transparent;
  color: var(--c-gold-700);
  border-color: var(--c-gold-500);
}
.btn--outline-gold:hover {
  background: var(--c-gold-050);
  color: var(--c-gold-700);
  transform: translateY(-2px);
}

/* On emerald backgrounds */
.btn--on-dark {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.34);
  backdrop-filter: blur(6px);
}
.btn--on-dark:hover {
  background: rgba(255,255,255,.18);
  border-color: var(--c-gold-300);
  color: #fff;
  transform: translateY(-2px);
}

/* Telegram — brand blue-tinted but kept inside the palette with emerald border */
.btn--telegram {
  background: var(--c-white);
  color: var(--c-emerald-900);
  border-color: var(--c-line);
  box-shadow: var(--e-1);
}
.btn--telegram .tg-mark { color: #229ED9; }
.btn--telegram:hover {
  border-color: #229ED9;
  color: var(--c-emerald-900);
  background: #F3FAFE;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,158,217,.20);
}

/* Sizes */
.btn--sm { --btn-py: 10px; --btn-px: 20px; font-size: .865rem; }
.btn--lg { --btn-py: 18px; --btn-px: 38px; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }

/* Link-style CTA with sliding arrow */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: var(--fw-bold);
  color: var(--c-emerald-800);
  font-size: .95rem;
}
.btn-link svg { transition: transform var(--d-base) var(--ease-out); }
.btn-link:hover { color: var(--c-gold-700); }
.btn-link:hover svg { transform: translateX(5px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

/* ==========================================================================
   06. BADGES, CHIPS, PILLS
   ========================================================================== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  font-size: var(--t-tiny);
  font-weight: var(--fw-semi);
  color: var(--c-body);
  box-shadow: var(--e-1);
}
.chip--gold {
  background: var(--c-gold-050);
  border-color: var(--c-line-gold);
  color: var(--c-gold-700);
}
.chip--emerald {
  background: var(--c-emerald-050);
  border-color: var(--c-line-emerald);
  color: var(--c-emerald-800);
}
.chip--on-dark {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.26);
  color: rgba(255,255,255,.90);
  box-shadow: none;
}
.chip svg { flex: none; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

/* Bonus badge — the ₹10,000 hero element */
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 12px;
  background: var(--c-white);
  border: 1px solid var(--c-line-gold);
  border-radius: var(--r-pill);
  box-shadow: var(--e-2), var(--e-inset-gold);
}
.bonus-badge__coin {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--g-gold);
  color: #4A3A08;
  font-family: var(--f-display);
  font-weight: var(--fw-black);
  font-size: .82rem;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.14), 0 3px 8px rgba(201,162,39,.36);
  animation: coin-flip 7s var(--ease-inout) infinite;
}
.bonus-badge__text { line-height: 1.2; }
.bonus-badge__label {
  display: block;
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  color: var(--c-muted);
  font-weight: var(--fw-bold);
}
.bonus-badge__value {
  display: block;
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: var(--fw-black);
  color: var(--c-emerald-800);
}

/* Numbered marker */
.num-marker {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--g-emerald);
  color: #fff;
  font-family: var(--f-display);
  font-weight: var(--fw-black);
  font-size: 1.05rem;
  box-shadow: var(--e-emerald);
}
.num-marker--gold {
  background: var(--g-gold);
  color: #2A2004;
  box-shadow: var(--e-gold);
}

/* Icon tile */
.icon-tile {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--c-emerald-050);
  border: 1px solid var(--c-line-emerald);
  color: var(--c-emerald-800);
  flex: none;
}
.icon-tile--gold {
  background: var(--c-gold-050);
  border-color: var(--c-line-gold);
  color: var(--c-gold-700);
}
.icon-tile--solid {
  background: var(--g-emerald);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--e-emerald);
}

/* ==========================================================================
   07. ANNOUNCEMENT BAR
   ========================================================================== */
.announce {
  position: relative;
  z-index: calc(var(--z-header) + 1);
  background: var(--g-emerald-deep);
  color: rgba(255,255,255,.92);
  font-size: var(--t-tiny);
  border-bottom: 1px solid rgba(212,175,55,.30);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  min-height: 42px;
  padding-block: 8px;
  text-align: center;
  flex-wrap: wrap;
}
.announce strong { color: var(--c-gold-300); font-weight: var(--fw-bold); }
.announce a {
  color: #fff;
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(212,175,55,.6);
  padding-bottom: 1px;
}
.announce a:hover { color: var(--c-gold-300); }
.announce__sep { opacity: .34; }

/* ==========================================================================
   08. HEADER, NAVIGATION, DRAWER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line-soft);
  transition: box-shadow var(--d-base) var(--ease-out),
              background-color var(--d-base) var(--ease-out),
              border-color var(--d-base) var(--ease-out);
}
.header.is-stuck {
  box-shadow: 0 6px 26px rgba(16,32,26,.09);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--c-line-gold);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  min-height: var(--header-h);
  transition: min-height var(--d-base) var(--ease-out);
}
.header.is-stuck .header__inner { min-height: var(--header-h-sm); }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(2px, .9vw, 10px);
}
.nav__link {
  position: relative;
  padding: 10px 12px;
  font-family: var(--f-display);
  font-size: .94rem;
  font-weight: var(--fw-semi);
  color: var(--c-body);
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-base) var(--ease-out);
}
.nav__link:hover { color: var(--c-emerald-800); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--c-emerald-800); font-weight: var(--fw-bold); }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-left: var(--s-4);
}

/* Circular telegram icon button in the header */
.icon-btn {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-emerald-800);
  box-shadow: var(--e-1);
  transition: transform var(--d-base) var(--ease-spring),
              border-color var(--d-base) var(--ease-out),
              box-shadow var(--d-base) var(--ease-out);
  cursor: pointer;
  flex: none;
}
.icon-btn:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: #229ED9;
  box-shadow: 0 8px 20px rgba(34,158,217,.24);
}
.icon-btn .tg-mark { color: #229ED9; }

/* Hamburger */
.burger {
  display: none;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: var(--e-1);
  cursor: pointer;
  flex: none;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-emerald-800);
  border-radius: 2px;
  transition: transform var(--d-base) var(--ease-out),
              opacity var(--d-fast) linear;
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: var(--c-white);
  z-index: var(--z-drawer);
  transform: translateX(102%);
  transition: transform var(--d-slow) var(--ease-out);
  box-shadow: -20px 0 60px rgba(16,32,26,.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--c-line-gold);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-line-soft);
}
.drawer__close {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-ink);
  cursor: pointer;
}
.drawer__close:hover { border-color: var(--c-emerald-700); color: var(--c-emerald-800); }
.drawer__nav {
  padding: 14px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  font-family: var(--f-display);
  font-size: 1.06rem;
  font-weight: var(--fw-semi);
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line-soft);
}
.drawer__nav a:hover,
.drawer__nav a.is-active { color: var(--c-emerald-800); }
.drawer__nav a.is-active::after { content: "•"; color: var(--c-gold-500); }
.drawer__foot {
  margin-top: auto;
  padding: 22px;
  border-top: 1px solid var(--c-line-soft);
  background: var(--c-emerald-050);
  display: grid;
  gap: 10px;
}
.drawer__meta {
  font-size: var(--t-tiny);
  color: var(--c-muted);
  text-align: center;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 19, .44);
  backdrop-filter: blur(2px);
  z-index: calc(var(--z-drawer) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--d-base) var(--ease-out), visibility var(--d-base);
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   09. BRAND LOGO LOCKUP
   --------------------------------------------------------------------------
   The supplied logo.png is 1536×1024 with the wordmark occupying only a
   narrow horizontal band. We crop to that band with a fixed-ratio window so
   the mark reads large, sharp and correctly weighted at every breakpoint.
   Crop window: x 145→1478, y 322→592  (ratio ≈ 4.94 : 1)
   ========================================================================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand__plate {
  position: relative;
  overflow: hidden;
  width: var(--logo-w);
  height: calc(var(--logo-w) * 0.20255);
  border-radius: 11px;
  background: var(--c-emerald-900);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.45), 0 4px 14px rgba(3,58,32,.22);
  transition: transform var(--d-base) var(--ease-spring),
              box-shadow var(--d-base) var(--ease-out),
              width var(--d-base) var(--ease-out),
              height var(--d-base) var(--ease-out);
}
.brand__plate img {
  position: absolute;
  max-width: none;
  width: calc(var(--logo-w) * 1.1523);
  height: auto;
  left: calc(var(--logo-w) * -0.10877);
  top: calc(var(--logo-w) * -0.24156);
  filter: saturate(1.12) contrast(1.06);
}
.brand:hover .brand__plate {
  transform: translateY(-1px) scale(1.02);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.75), 0 8px 22px rgba(3,58,32,.28);
}
.brand__tag {
  display: none;
  font-size: var(--t-micro);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-muted);
  line-height: 1.3;
  max-width: 92px;
}
.brand--stacked .brand__tag { display: block; }

.brand--footer { --logo-w: var(--logo-w-footer); }
.brand--drawer { --logo-w: 156px; }
.header.is-stuck .brand { --logo-w: 176px; }

/* Inline icon defaults — <svg class="ic"><use href="#i-…"/></svg> */
.ic { flex: none; vertical-align: middle; }

/* Footer plate sits on emerald, so soften the frame */
.footer .brand__plate {
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.55);
}

/* ==========================================================================
   10. HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 3rem + 4vw, 96px) clamp(56px, 3rem + 4vw, 104px);
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(18,160,107,.14), transparent 62%),
    radial-gradient(760px 520px at 4% 106%, rgba(212,175,55,.16), transparent 60%),
    var(--g-ivory);
}
.hero::after {
  /* fine emerald grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,106,56,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,106,56,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(closest-side at 50% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 40%, #000 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: var(--z-raised); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(36px, 4vw, 68px);
  align-items: center;
}

.hero__copy { max-width: 640px; }
.hero h1 {
  font-size: var(--t-hero);
  margin-bottom: var(--s-5);
}
.hero__sub {
  font-size: var(--t-lead);
  line-height: var(--lh-loose);
  color: var(--c-muted);
  max-width: 560px;
  margin-bottom: var(--s-6);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-tiny);
  color: var(--c-faint);
  margin-bottom: var(--s-7);
}
.hero__note svg { color: var(--c-emerald-700); flex: none; }

/* Hero stat strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-line);
}
.hero__stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.45rem, 1.1rem + 1.3vw, 1.95rem);
  font-weight: var(--fw-black);
  color: var(--c-emerald-800);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.hero__stat span {
  display: block;
  font-size: var(--t-tiny);
  color: var(--c-muted);
  margin-top: 3px;
}

/* Hero visual column */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}
.hero__ring {
  position: absolute;
  width: min(500px, 108%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      rgba(212,175,55,0) 0deg,
      rgba(212,175,55,.55) 70deg,
      rgba(18,160,107,.42) 150deg,
      rgba(212,175,55,0) 230deg,
      rgba(212,175,55,.42) 330deg,
      rgba(212,175,55,0) 360deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  opacity: .8;
  z-index: 0;
}
.hero__halo {
  position: absolute;
  width: min(430px, 96%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,160,107,.24) 0%, rgba(212,175,55,.14) 46%, transparent 70%);
  filter: blur(22px);
  z-index: 0;
}

/* Floating info chips around the device */
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  box-shadow: var(--e-3);
  white-space: nowrap;
}
.float-card b {
  display: block;
  font-family: var(--f-display);
  font-size: .96rem;
  color: var(--c-ink);
  line-height: 1.2;
}
.float-card span {
  display: block;
  font-size: var(--t-micro);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: var(--fw-bold);
}
.float-card__dot {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--c-emerald-050);
  color: var(--c-emerald-800);
  flex: none;
}
.float-card__dot--gold { background: var(--c-gold-050); color: var(--c-gold-700); }

.float-card--a { top: 8%;  left: -6%;  }
.float-card--b { top: 40%; right: -8%; }
.float-card--c { bottom: 9%; left: -2%; }

/* ==========================================================================
   11. DEVICE (PHONE) MOCKUP
   ========================================================================== */
.device {
  position: relative;
  z-index: 3;
  width: var(--device-w);
  flex: none;
}
.device__frame {
  position: relative;
  padding: 11px;
  border-radius: 46px;
  background:
    linear-gradient(150deg, #F6EFD9 0%, #D9C27F 16%, #8E7526 42%, #E5D398 62%, #7E6A2A 84%, #F3E9CB 100%);
  box-shadow:
    0 2px 3px rgba(255,255,255,.55) inset,
    0 26px 54px rgba(16,32,26,.24),
    0 8px 18px rgba(16,32,26,.14);
}
.device__screen {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: var(--c-emerald-900);
  aspect-ratio: 9 / 19.3;
  box-shadow: inset 0 0 0 2px rgba(3,58,32,.9);
}
.device__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.device__notch {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  background: #0B1710;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.device__notch::after {
  content: "";
  position: absolute;
  top: 7px; right: 22%;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #2C6B52, #06150E 70%);
}
/* Screen gloss */
.device__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 32%, rgba(255,255,255,0) 74%, rgba(255,255,255,.10) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Side buttons */
.device__frame::before,
.device__frame::after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #B79A45, #7C6621);
}
.device__frame::before { left: -2px; top: 22%; height: 8%; }
.device__frame::after  { right: -2px; top: 26%; height: 14%; }

/* Reflection / pedestal beneath the device */
.device__shadow {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  width: 78%;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(16,32,26,.26), transparent 70%);
  filter: blur(9px);
  z-index: 1;
}

/* Variants */
.device--sm { --device-w: clamp(190px, 20vw, 232px); }
.device--sm .device__frame { padding: 8px; border-radius: 34px; }
.device--sm .device__screen { border-radius: 27px; }
.device--sm .device__notch { height: 17px; width: 36%; }

.device--lg { --device-w: clamp(250px, 26vw, 330px); }

/* ==========================================================================
   12. KEYWORD TICKER
   ========================================================================== */
.ticker {
  position: relative;
  overflow: hidden;
  background: var(--c-emerald-900);
  border-block: 1px solid rgba(212,175,55,.28);
  padding-block: 13px;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--c-emerald-900), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--c-emerald-900), transparent); }

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  padding-right: clamp(22px, 3vw, 44px);
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: var(--fw-semi);
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
  white-space: nowrap;
}
.ticker__item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold-500);
  flex: none;
}

/* ==========================================================================
   13. OG BANNER SHOWCASE
   ========================================================================== */
.ogshow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(4,106,56,.10), transparent 60%),
    var(--c-ivory-deep);
}
.ogshow__frame {
  position: relative;
  border-radius: var(--r-2xl);
  padding: clamp(8px, 1vw, 14px);
  background: var(--g-gold);
  box-shadow: var(--e-4);
}
.ogshow__inner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--r-2xl) - 8px);
  background: var(--c-emerald-900);
  line-height: 0;
}
.ogshow__inner img {
  width: 100%;
  height: auto;
  transition: transform 900ms var(--ease-out);
}
.ogshow__frame:hover .ogshow__inner img { transform: scale(1.025); }

/* Glass overlay on the banner */
.ogshow__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: clamp(16px, 2.4vw, 30px);
  background: linear-gradient(0deg, rgba(3,26,15,.92) 8%, rgba(3,26,15,.62) 52%, transparent 100%);
  line-height: var(--lh-normal);
}
.ogshow__overlay h3 {
  color: #fff;
  margin: 0 0 4px;
  font-size: clamp(1.05rem, .9rem + .8vw, 1.6rem);
}
.ogshow__overlay p {
  color: rgba(255,255,255,.80);
  margin: 0;
  font-size: var(--t-small);
  max-width: 52ch;
}
.ogshow__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ogshow__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.ogshow__meta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--e-1);
}
.ogshow__meta-item b {
  display: block;
  font-family: var(--f-display);
  color: var(--c-ink);
  font-size: .98rem;
}
.ogshow__meta-item span {
  display: block;
  font-size: var(--t-tiny);
  color: var(--c-muted);
  margin-top: 2px;
}

/* ==========================================================================
   14. BONUS / OFFERS
   ========================================================================== */
.bonus-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  background: var(--g-emerald-deep);
  color: #fff;
  padding: clamp(28px, 3.6vw, 56px);
  box-shadow: var(--e-4);
  border: 1px solid rgba(212,175,55,.34);
}
.bonus-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -12%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.34), transparent 66%);
  filter: blur(30px);
}
.bonus-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
}
.bonus-hero h2 { color: #fff; }
.bonus-hero p { color: rgba(255,255,255,.82); }
.bonus-amount {
  font-family: var(--f-display);
  font-size: clamp(3rem, 2rem + 6vw, 5.6rem);
  font-weight: var(--fw-black);
  line-height: .96;
  letter-spacing: -.04em;
  background: linear-gradient(160deg, #FFF6DC 0%, #E8D08A 30%, #D4AF37 55%, #FBF2D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  margin: 6px 0 4px;
}
.bonus-hero__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: var(--s-6) 0 0;
}
.bonus-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: var(--t-small);
  color: rgba(255,255,255,.86);
}
.bonus-hero__list svg { color: var(--c-gold-300); flex: none; margin-top: 2px; }

/* Offer cards */
.offer {
  position: relative;
  padding: 26px 24px 24px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-slow) var(--ease-out);
}
.offer:hover::before { transform: scaleX(1); }
.offer__tag {
  display: inline-block;
  font-size: var(--t-micro);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-gold-700);
  margin-bottom: 10px;
}
.offer__value {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: var(--fw-black);
  color: var(--c-emerald-800);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.offer h3 { font-size: 1.06rem; margin-bottom: 8px; }
.offer p { font-size: var(--t-small); color: var(--c-muted); margin: 0; }

/* ==========================================================================
   15. GAMES GRID, CARDS & FILTERS
   ========================================================================== */
.gcard {
  position: relative;
  display: block;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--e-1);
  transition: transform var(--d-base) var(--ease-out),
              box-shadow var(--d-base) var(--ease-out),
              border-color var(--d-base) var(--ease-out);
}
.gcard__media {
  display: block;
  position: relative;
  /* matches the native 211×260 artwork ratio, so nothing is cropped */
  aspect-ratio: 211 / 260;
  overflow: hidden;
  background: var(--c-emerald-050);
}
.gcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--ease-out);
}
.gcard__badge {
  position: absolute;
  top: 9px; left: 9px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.94);
  color: var(--c-emerald-800);
  font-size: var(--t-micro);
  font-weight: var(--fw-black);
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--e-1);
}
.gcard__badge--hot { background: var(--g-gold); color: #2A2004; }
.gcard__badge--new { background: var(--g-emerald); color: #fff; }

/* Hover veil with Play Now */
.gcard__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(3,58,32,.90), rgba(4,106,56,.55));
  opacity: 0;
  transition: opacity var(--d-base) var(--ease-out);
}
.gcard__play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--g-gold);
  color: #2A2004;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: var(--fw-black);
  box-shadow: var(--e-gold);
  transform: translateY(10px) scale(.94);
  transition: transform var(--d-base) var(--ease-spring);
}
.gcard__body {
  padding: 13px 14px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.gcard__body > span:first-child { min-width: 0; }
.gcard__name {
  font-family: var(--f-display);
  font-size: .93rem;
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  line-height: 1.25;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: calc(1.25em * 2);
}
.gcard__tag {
  display: block;
  font-size: var(--t-micro);
  color: var(--c-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: var(--fw-bold);
}
.gcard__rtp {
  flex: none;
  margin-top: 1px;
  font-family: var(--f-mono);
  font-size: var(--t-micro);
  font-weight: 700;
  color: var(--c-gold-700);
  background: var(--c-gold-050);
  border: 1px solid var(--c-line-gold);
  border-radius: var(--r-xs);
  padding: 3px 6px;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .gcard:hover {
    transform: translateY(-7px);
    box-shadow: var(--e-4);
    border-color: var(--c-line-gold);
  }
  .gcard:hover .gcard__media img { transform: scale(1.1); }
  .gcard:hover .gcard__veil { opacity: 1; }
  .gcard:hover .gcard__play { transform: translateY(0) scale(1); }
}
.gcard:focus-visible .gcard__veil { opacity: 1; }
.gcard:focus-visible .gcard__play { transform: none; }

/* Filter bar */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  padding: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
  margin-bottom: var(--s-8);
}
.filters__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 auto;
}
.tab {
  padding: 9px 17px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  color: var(--c-body);
  font-family: var(--f-display);
  font-size: .865rem;
  font-weight: var(--fw-semi);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--d-fast) var(--ease-out);
}
.tab:hover {
  border-color: var(--c-emerald-700);
  color: var(--c-emerald-800);
  background: var(--c-emerald-050);
}
.tab.is-active {
  background: var(--g-emerald);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--e-emerald);
}
.tab__count {
  display: inline-block;
  margin-left: 6px;
  font-size: var(--t-micro);
  opacity: .7;
  font-family: var(--f-mono);
}

.search {
  position: relative;
  flex: 0 1 260px;
  min-width: 200px;
}
.search input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  font-size: .9rem;
  transition: border-color var(--d-fast) var(--ease-out), background-color var(--d-fast);
}
.search input:focus {
  outline: none;
  border-color: var(--c-emerald-700);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(4,106,56,.12);
}
.search svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--c-faint);
  pointer-events: none;
}

.games-empty {
  display: none;
  text-align: center;
  padding: var(--s-11) var(--s-5);
  color: var(--c-muted);
}
.games-empty.is-visible { display: block; }

.gcard.is-hidden { display: none; }

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--s-9);
}

/* ==========================================================================
   16. SCREENSHOT SLIDER
   ========================================================================== */
.shots {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(880px 480px at 84% 8%, rgba(212,175,55,.14), transparent 62%),
    var(--g-emerald-deep);
}
.shots .sec-head h2 { color: #fff; }
.shots .sec-head p  { color: rgba(255,255,255,.78); }
.shots .eyebrow     { color: var(--c-gold-300); }

.slider { position: relative; }
.slider__viewport {
  overflow: hidden;
  padding-block: 14px;
  /* soft edge fade */
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.slider__track {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  transition: transform 620ms var(--ease-out);
  will-change: transform;
}
.slider__slide {
  flex: 0 0 auto;
  width: var(--slide-w, 240px);
  transition: transform var(--d-slow) var(--ease-out), opacity var(--d-slow) var(--ease-out);
  opacity: .58;
  transform: scale(.93);
}
.slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.slider__slide figcaption {
  margin-top: 14px;
  text-align: center;
  font-size: var(--t-tiny);
  color: rgba(255,255,255,.74);
}
.slider__slide figcaption b {
  display: block;
  font-family: var(--f-display);
  color: #fff;
  font-size: .95rem;
  margin-bottom: 2px;
}

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.slider__btn {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.30);
  color: #fff;
  cursor: pointer;
  transition: all var(--d-base) var(--ease-out);
}
.slider__btn:hover {
  background: var(--g-gold);
  border-color: transparent;
  color: #2A2004;
  transform: scale(1.06);
}
.slider__btn:disabled { opacity: .34; cursor: not-allowed; transform: none; }

.slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  transition: all var(--d-base) var(--ease-out);
}
.slider__dot.is-active {
  width: 30px;
  border-radius: var(--r-pill);
  background: var(--g-gold);
}

/* Screenshot device wrapper (light frame on dark band) */
.shot-device .device__frame {
  background: linear-gradient(150deg, #FDF6E4 0%, #DFC98B 18%, #A78E3C 46%, #EFE0AE 68%, #8E7A34 88%, #FBF4DC 100%);
}

/* ==========================================================================
   17. FEATURE GRID
   ========================================================================== */
.feature {
  position: relative;
  padding: 28px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
  height: 100%;
}
.feature h3 {
  font-size: 1.08rem;
  margin: 18px 0 9px;
}
.feature p {
  font-size: var(--t-small);
  color: var(--c-muted);
  margin: 0;
  line-height: var(--lh-loose);
}
.feature__num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: var(--c-emerald-050);
  letter-spacing: -.04em;
  pointer-events: none;
  transition: color var(--d-base) var(--ease-out);
}
.feature:hover .feature__num { color: var(--c-gold-100); }

/* Compact benefit row */
.benefit {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px dashed var(--c-line);
}
.benefit:last-child { border-bottom: 0; }
.benefit h4 { margin: 0 0 5px; font-size: 1rem; }
.benefit p { margin: 0; font-size: var(--t-small); color: var(--c-muted); }

/* Checklist */
.checklist {
  list-style: none;
  display: grid;
  gap: 13px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: var(--t-small);
  color: var(--c-body);
  line-height: var(--lh-loose);
}
.checklist svg {
  flex: none;
  margin-top: 3px;
  color: var(--c-emerald-700);
}
.checklist--gold svg { color: var(--c-gold-600); }
.checklist--2col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 13px var(--s-7); }

/* ==========================================================================
   18. STEPS / HOW TO START
   ========================================================================== */
.steps {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
}
.step::after {
  /* connector line between steps on wide screens */
  content: "";
  position: absolute;
  top: 52px; right: -14px;
  width: 14px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-gold-300) 0 4px, transparent 4px 8px);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.06rem; margin: 16px 0 8px; }
.step p { font-size: var(--t-small); color: var(--c-muted); margin: 0 0 12px; }
.step__tip {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 11px 13px;
  border-radius: var(--r-sm);
  background: var(--c-gold-050);
  border: 1px solid var(--c-line-gold);
  font-size: var(--t-tiny);
  color: var(--c-gold-700);
  line-height: 1.5;
}
.step__tip svg { flex: none; margin-top: 1px; }

/* Vertical timeline variant (download page) */
.timeline {
  position: relative;
  padding-left: 42px;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 17px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-gold-500), var(--c-emerald-600), var(--c-gold-500));
  opacity: .45;
  border-radius: 2px;
}
.timeline > li {
  position: relative;
  padding-bottom: var(--s-8);
}
.timeline > li:last-child { padding-bottom: 0; }
.timeline > li::before {
  content: counter(tl);
  counter-increment: tl;
  position: absolute;
  left: -42px; top: 0;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--c-white);
  border: 2px solid var(--c-gold-500);
  color: var(--c-emerald-800);
  font-family: var(--f-display);
  font-weight: var(--fw-black);
  font-size: .92rem;
  box-shadow: var(--e-1);
}
.timeline { counter-reset: tl; }
.timeline h3 { font-size: 1.1rem; margin: 4px 0 8px; }
.timeline p { font-size: var(--t-small); color: var(--c-muted); margin: 0 0 8px; }

/* ==========================================================================
   19. DATA TABLES & SPEC LISTS
   ========================================================================== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-white);
  box-shadow: var(--e-1);
  -webkit-overflow-scrolling: touch;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: var(--t-small);
}
table.data caption {
  text-align: left;
  padding: 18px 22px 0;
  font-size: var(--t-tiny);
  color: var(--c-muted);
}
table.data th,
table.data td {
  padding: 15px 22px;
  text-align: left;
  border-bottom: 1px solid var(--c-line-soft);
  vertical-align: top;
}
table.data thead th {
  background: var(--c-emerald-050);
  font-family: var(--f-display);
  font-weight: var(--fw-bold);
  color: var(--c-emerald-900);
  font-size: var(--t-tiny);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  border-bottom: 1px solid var(--c-line-emerald);
  white-space: nowrap;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--c-gold-050); }
table.data td strong { color: var(--c-ink); }

/* Column-header label injected into each <td> for the mobile card view.
   Hidden on desktop, where the real <thead> already labels the column. */
.cell-label {
  display: none;
  font-family: var(--f-display);
  font-size: var(--t-micro);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}

/* Below the breakpoint a table never gets wide enough to require inner
   horizontal scrolling — each row becomes a self-contained card instead,
   so every value is readable without scrolling sideways. */
@media (max-width: 640px) {
  .table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  table.data {
    display: block;
    width: 100%;
    min-width: 0;
    border-collapse: separate;
  }
  table.data caption { padding: 0 0 14px; }
  table.data thead {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0; padding: 0; margin: -1px;
  }
  table.data tbody { display: block; }
  table.data tr {
    display: block;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    box-shadow: var(--e-1);
    overflow: hidden;
    margin-bottom: 12px;
  }
  table.data tr:last-child { margin-bottom: 0; }
  table.data td {
    display: block;
    width: auto;
    white-space: normal;
    word-break: break-word;
    padding: 12px 16px;
  }
  table.data tr > td:first-child {
    background: var(--c-emerald-050);
    border-bottom: 1px solid var(--c-line-emerald);
  }
  table.data tr > td:first-child .cell-label { display: none; }
  table.data td .cell-label { display: block; }
}

/* Spec list — key/value pairs */
.specs {
  list-style: none;
  display: grid;
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--e-1);
}
.specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: var(--t-small);
}
.specs li:last-child { border-bottom: 0; }
.specs li:nth-child(odd) { background: var(--c-paper); }
.specs dt, .specs .k { color: var(--c-muted); }
.specs dd, .specs .v {
  margin: 0;
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  font-family: var(--f-display);
  text-align: right;
}

/* ==========================================================================
   20. TESTIMONIALS
   ========================================================================== */
.quote {
  position: relative;
  padding: 30px 26px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 22px;
  font-family: var(--f-display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--c-gold-100);
  pointer-events: none;
}
.quote__stars {
  display: flex;
  gap: 3px;
  color: var(--c-gold-500);
  margin-bottom: 14px;
}
.quote p {
  font-size: var(--t-small);
  line-height: var(--lh-loose);
  color: var(--c-body);
  margin: 0 0 20px;
  flex: 1;
}
.quote__who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line-soft);
}
.quote__avatar {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--g-emerald);
  color: #fff;
  font-family: var(--f-display);
  font-weight: var(--fw-black);
  font-size: .95rem;
  flex: none;
  box-shadow: var(--e-1);
}
.quote__who b {
  display: block;
  font-family: var(--f-display);
  font-size: .93rem;
  color: var(--c-ink);
  line-height: 1.3;
}
.quote__who span {
  display: block;
  font-size: var(--t-micro);
  color: var(--c-muted);
}

/* ==========================================================================
   21. STATS BAND
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--e-2);
}
.stat {
  background: var(--c-white);
  padding: 30px 22px;
  text-align: center;
  transition: background-color var(--d-base) var(--ease-out);
}
.stat:hover { background: var(--c-gold-050); }
.stat__val {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--c-emerald-800);
  line-height: 1.05;
  letter-spacing: -.03em;
  display: block;
}
.stat__val .unit { color: var(--c-gold-600); }
.stat__label {
  display: block;
  margin-top: 7px;
  font-size: var(--t-tiny);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: var(--fw-bold);
}

/* On emerald band */
.section--emerald .stats { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.16); }
.section--emerald .stat { background: rgba(255,255,255,.05); }
.section--emerald .stat:hover { background: rgba(255,255,255,.10); }
.section--emerald .stat__val { color: var(--c-gold-300); }
.section--emerald .stat__label { color: rgba(255,255,255,.72); }

/* ==========================================================================
   22. LONG-FORM PROSE
   ========================================================================== */
.prose {
  font-size: var(--t-body);
  line-height: var(--lh-loose);
  color: var(--c-body);
}
.prose > * + * { margin-top: 1.1em; }
.prose h2 {
  font-size: var(--t-h2);
  margin-top: 1.7em;
  margin-bottom: .5em;
  padding-top: .5em;
  position: relative;
}
.prose h2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 3px;
  border-radius: 3px;
  background: var(--g-gold);
}
.prose h3 {
  font-size: var(--t-h3);
  margin-top: 1.5em;
  margin-bottom: .45em;
  color: var(--c-emerald-900);
}
.prose h4 {
  margin-top: 1.4em;
  margin-bottom: .35em;
  color: var(--c-emerald-800);
}
.prose > h2:first-child,
.prose > h3:first-child { margin-top: 0; }
.prose ul, .prose ol {
  padding-left: 1.25em;
  display: grid;
  gap: .55em;
}
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li {
  position: relative;
  padding-left: 1.55em;
}
.prose ul > li::before {
  content: "";
  position: absolute;
  left: .28em; top: .62em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--c-gold-500);
  transform: rotate(45deg);
}
.prose ol { list-style: decimal; }
.prose ol > li::marker {
  color: var(--c-emerald-700);
  font-weight: var(--fw-bold);
  font-family: var(--f-display);
}
.prose a {
  font-weight: var(--fw-semi);
  border-bottom: 1px solid var(--c-line-gold);
}
.prose a:hover { border-bottom-color: var(--c-gold-500); }
.prose blockquote {
  margin: 1.6em 0;
  padding: 20px 24px;
  border-left: 3px solid var(--c-gold-500);
  background: var(--c-gold-050);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--c-body);
  font-size: var(--t-small);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose code {
  font-family: var(--f-mono);
  font-size: .88em;
  background: var(--c-emerald-050);
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--c-emerald-900);
}

/* Callout box */
.callout {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--c-emerald-050);
  border: 1px solid var(--c-line-emerald);
  border-left: 3px solid var(--c-emerald-700);
}
.callout--gold {
  background: var(--c-gold-050);
  border-color: var(--c-line-gold);
  border-left-color: var(--c-gold-500);
}
.callout--warn {
  background: #FFF8EC;
  border-color: rgba(180,118,26,.28);
  border-left-color: var(--c-warn);
}
.callout h4 { margin: 0 0 6px; font-size: .99rem; }
.callout p { margin: 0; font-size: var(--t-small); color: var(--c-muted); }
.callout svg { flex: none; margin-top: 2px; color: var(--c-emerald-700); }
.callout--gold svg { color: var(--c-gold-600); }
.callout--warn svg { color: var(--c-warn); }

/* Two-column prose on desktop */
.prose-cols {
  display: grid;
  gap: clamp(28px, 3vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

/* Sticky mini table-of-contents */
.toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  padding: 22px 24px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
}
.toc h4 {
  font-size: var(--t-tiny);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  color: var(--c-gold-700);
  margin: 0 0 14px;
}
.toc ol { list-style: none; display: grid; gap: 3px; counter-reset: toc; }
.toc a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--r-xs);
  font-size: var(--t-small);
  color: var(--c-body);
  border-left: 2px solid transparent;
}
.toc a:hover {
  background: var(--c-emerald-050);
  border-left-color: var(--c-gold-500);
  color: var(--c-emerald-800);
}

/* ==========================================================================
   23. TELEGRAM COMMUNITY
   ========================================================================== */
.tg-card {
  position: relative;
  overflow: hidden;
  padding: 32px 30px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  box-shadow: var(--e-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.tg-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -50px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,158,217,.13), transparent 68%);
  pointer-events: none;
}
.tg-card__icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(140deg, #2AABEE, #229ED9);
  color: #fff;
  box-shadow: 0 8px 22px rgba(34,158,217,.34);
  flex: none;
}
.tg-card h3 { margin: 0; font-size: 1.22rem; }
.tg-card p { margin: 0; font-size: var(--t-small); color: var(--c-muted); flex: 1; }
.tg-card__handle {
  font-family: var(--f-mono);
  font-size: var(--t-tiny);
  color: var(--c-emerald-800);
  background: var(--c-emerald-050);
  border: 1px solid var(--c-line-emerald);
  padding: 5px 10px;
  border-radius: var(--r-xs);
  align-self: flex-start;
}
.tg-card--gold { border-color: var(--c-line-gold); background: var(--g-gold-soft); }

/* ==========================================================================
   24. FAQ ACCORDION
   ========================================================================== */
.faq {
  display: grid;
  gap: 12px;
}
.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--d-base) var(--ease-out),
              box-shadow var(--d-base) var(--ease-out);
}
.faq__item.is-open {
  border-color: var(--c-line-gold);
  box-shadow: var(--e-2);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: var(--fw-semi);
  color: var(--c-ink);
  line-height: 1.4;
  transition: color var(--d-fast) var(--ease-out);
}
.faq__q:hover { color: var(--c-emerald-800); }
.faq__item.is-open .faq__q { color: var(--c-emerald-800); }
.faq__icon {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--c-line-gold);
  background: var(--c-gold-050);
  transition: transform var(--d-base) var(--ease-out),
              background-color var(--d-base) var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--c-gold-700);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity var(--d-fast) var(--ease-out);
}
.faq__icon::before { width: 11px; height: 2px; }
.faq__icon::after  { width: 2px; height: 11px; }
.faq__item.is-open .faq__icon {
  background: var(--g-gold);
  transform: rotate(180deg);
}
.faq__item.is-open .faq__icon::after { opacity: 0; }
.faq__item.is-open .faq__icon::before { background: #2A2004; }

.faq__panel {
  height: 0;
  overflow: hidden;
  transition: height var(--d-slow) var(--ease-inout);
}
.faq__panel-inner {
  padding: 0 22px 22px;
  font-size: var(--t-small);
  line-height: var(--lh-loose);
  color: var(--c-muted);
  border-top: 1px solid var(--c-line-soft);
  padding-top: 18px;
  margin-top: 2px;
}
.faq__item.is-open .faq__panel-inner { animation: panel-in var(--d-base) var(--ease-out); }
.faq__panel-inner p + p { margin-top: .8em; }
.faq__panel-inner ul { display: grid; gap: 7px; margin: .7em 0 0; list-style: none; }
.faq__panel-inner ul li { position: relative; padding-left: 1.4em; }
.faq__panel-inner ul li::before {
  content: "";
  position: absolute; left: .2em; top: .58em;
  width: 6px; height: 6px;
  background: var(--c-gold-500);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ==========================================================================
   25. CTA BANDS
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  padding: clamp(34px, 4vw, 62px);
  background: var(--g-emerald-deep);
  color: #fff;
  box-shadow: var(--e-4);
  border: 1px solid rgba(212,175,55,.30);
  text-align: center;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}
.cta-band::before {
  top: -120px; left: -70px;
  width: 320px; height: 320px;
  background: rgba(212,175,55,.30);
}
.cta-band::after {
  bottom: -140px; right: -60px;
  width: 340px; height: 340px;
  background: rgba(18,160,107,.34);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p {
  color: rgba(255,255,255,.82);
  max-width: 62ch;
  margin-inline: auto;
  font-size: var(--t-lead);
}
.cta-band .btn-row { justify-content: center; margin-top: var(--s-7); }
.cta-band__foot {
  margin-top: var(--s-6);
  font-size: var(--t-tiny);
  color: rgba(255,255,255,.62);
}

/* ==========================================================================
   26. FOOTER
   ========================================================================== */
.footer {
  position: relative;
  background: var(--g-emerald-deep);
  color: rgba(255,255,255,.72);
  padding-top: clamp(48px, 3rem + 2.6vw, 82px);
  font-size: var(--t-small);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 56px);
  padding-bottom: var(--s-9);
}
.footer h4 {
  color: #fff;
  font-size: var(--t-tiny);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,.30);
}
.footer p { color: rgba(255,255,255,.66); line-height: var(--lh-loose); }
.footer__links { list-style: none; display: grid; gap: 11px; }
.footer__links a {
  color: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-small);
}
.footer__links a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 1px;
  background: var(--c-gold-500);
  transform: rotate(45deg);
  opacity: .55;
  transition: opacity var(--d-fast), transform var(--d-fast);
  flex: none;
}
.footer__links a:hover { color: var(--c-gold-300); }
.footer__links a:hover::before { opacity: 1; transform: rotate(45deg) scale(1.3); }

.footer__brandcol .brand { margin-bottom: 18px; }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
  transition: all var(--d-base) var(--ease-out);
}
.footer__social a:hover {
  background: var(--g-gold);
  border-color: transparent;
  color: #2A2004;
  transform: translateY(-3px);
}

/* Disclaimer block — affiliate + responsible gaming */
.footer__disclaimer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s-6);
  align-items: start;
}
.footer__age {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 2px solid var(--c-gold-500);
  color: var(--c-gold-300);
  font-family: var(--f-display);
  font-weight: var(--fw-black);
  font-size: 1.12rem;
  flex: none;
  background: rgba(212,175,55,.08);
}
.footer__disclaimer p {
  font-size: var(--t-tiny);
  color: rgba(255,255,255,.62);
  line-height: var(--lh-loose);
  margin: 0 0 .7em;
}
.footer__disclaimer p:last-child { margin-bottom: 0; }
.footer__disclaimer strong { color: rgba(255,255,255,.92); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: 24px 0 34px;
  font-size: var(--t-tiny);
  color: rgba(255,255,255,.54);
}
.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.footer__bottom a { color: rgba(255,255,255,.66); }
.footer__bottom a:hover { color: var(--c-gold-300); }

/* Keyword cloud in footer — semantic SEO, not stuffing */
.footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 22px 0 0;
}
.footer__tags span {
  font-size: var(--t-micro);
  color: rgba(255,255,255,.50);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ==========================================================================
   27. FLOATING ACTIONS & MOBILE BAR
   ========================================================================== */
.fab {
  position: fixed;
  right: clamp(14px, 2.4vw, 28px);
  bottom: clamp(78px, 8vw, 30px);
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 15px;
  border-radius: var(--r-pill);
  background: linear-gradient(140deg, #2AABEE, #229ED9);
  color: #fff;
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: var(--fw-bold);
  box-shadow: 0 10px 28px rgba(34,158,217,.36);
  border: 1px solid rgba(255,255,255,.30);
  transition: transform var(--d-base) var(--ease-spring), box-shadow var(--d-base);
}
.fab__btn:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 34px rgba(34,158,217,.46);
}
.fab__btn svg { flex: none; }
.fab__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: halo 3s var(--ease-out) infinite;
  pointer-events: none;
}
.fab__label { white-space: nowrap; }

.to-top {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-line-gold);
  color: var(--c-emerald-800);
  box-shadow: var(--e-2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--d-base) var(--ease-out);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--c-gold-050); transform: translateY(-3px); }

/* Sticky mobile bottom bar */
.mbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-fab);
  display: none;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -6px 24px rgba(16,32,26,.10);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 4px 8px;
  font-size: var(--t-micro);
  font-weight: var(--fw-bold);
  color: var(--c-muted);
  position: relative;
}
.mbar a.is-active { color: var(--c-emerald-800); }
.mbar a.is-active::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--g-gold);
}
.mbar a svg { flex: none; }
.mbar a.mbar--cta { color: var(--c-gold-700); }

/* ==========================================================================
   28. INNER PAGE HERO & BREADCRUMBS
   ========================================================================== */
.phero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(40px, 2.6rem + 3vw, 78px);
  background:
    radial-gradient(760px 400px at 82% 0%, rgba(18,160,107,.13), transparent 62%),
    radial-gradient(600px 380px at 6% 100%, rgba(212,175,55,.14), transparent 62%),
    var(--g-ivory);
  border-bottom: 1px solid var(--c-line-soft);
}
.phero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 56px);
  align-items: center;
}
.phero h1 { margin-bottom: var(--s-4); }
.phero p.lead { max-width: 60ch; }
.phero__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: var(--t-tiny);
  color: var(--c-faint);
  margin-bottom: var(--s-5);
}
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-top: 1.4px solid var(--c-faint);
  border-right: 1.4px solid var(--c-faint);
  transform: rotate(45deg);
}
.crumbs a { color: var(--c-muted); font-weight: var(--fw-semi); }
.crumbs a:hover { color: var(--c-emerald-800); }
.crumbs [aria-current] { color: var(--c-emerald-800); font-weight: var(--fw-bold); }

/* ==========================================================================
   29. CONTACT FORM
   ========================================================================== */
.form {
  display: grid;
  gap: var(--s-5);
}
.form__row {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.field { display: grid; gap: 7px; }
.field > label {
  font-size: var(--t-tiny);
  font-weight: var(--fw-bold);
  color: var(--c-ink);
  letter-spacing: .02em;
}
.field > label .req { color: var(--c-danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-white);
  font-size: .95rem;
  color: var(--c-ink);
  transition: border-color var(--d-fast) var(--ease-out),
              box-shadow var(--d-fast) var(--ease-out);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--c-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-emerald-700);
  box-shadow: 0 0 0 3px rgba(4,106,56,.12);
}
.field__hint {
  font-size: var(--t-micro);
  color: var(--c-faint);
}
.field__error {
  font-size: var(--t-micro);
  color: var(--c-danger);
  font-weight: var(--fw-semi);
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--c-danger); }
.field.has-error .field__error { display: block; }

.form__consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: var(--t-tiny);
  color: var(--c-muted);
  line-height: 1.6;
}
.form__consent input { margin-top: 3px; accent-color: var(--c-emerald-800); width: 17px; height: 17px; flex: none; }

.form__status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: var(--t-small);
  font-weight: var(--fw-semi);
}
.form__status.is-visible { display: block; }
.form__status--ok {
  background: var(--c-emerald-050);
  border: 1px solid var(--c-line-emerald);
  color: var(--c-emerald-800);
}

/* Contact method cards */
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--e-1);
}
.contact-card h3 { margin: 0 0 5px; font-size: 1.03rem; }
.contact-card p { margin: 0 0 10px; font-size: var(--t-small); color: var(--c-muted); }

/* ==========================================================================
   30. UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mx-auto     { margin-inline: auto; }
.mt-0  { margin-top: 0; }
.mt-4  { margin-top: var(--s-4); }
.mt-5  { margin-top: var(--s-5); }
.mt-6  { margin-top: var(--s-6); }
.mt-7  { margin-top: var(--s-7); }
.mt-8  { margin-top: var(--s-8); }
.mt-9  { margin-top: var(--s-9); }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: var(--s-4); }
.mb-6  { margin-bottom: var(--s-6); }
.mb-7  { margin-bottom: var(--s-7); }
.mb-8  { margin-bottom: var(--s-8); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }
.gap-6 { gap: var(--s-6); }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.relative { position: relative; }
.maxw-60ch { max-width: 60ch; }
.maxw-70ch { max-width: 70ch; }
.h-full { height: 100%; }
.nowrap { white-space: nowrap; }
.list-none { list-style: none; }

/* ==========================================================================
   31. RESPONSIVE
   ========================================================================== */
@media (max-width: 1120px) {
  .nav__link { padding: 10px 9px; font-size: .90rem; }
  .header__actions .btn--gold { --btn-px: 22px; font-size: .90rem; }
}

@media (max-width: 1000px) {
  :root { --logo-w: 182px; }
  .nav { display: none; }
  .burger { display: grid; }
  .header__actions { margin-left: auto; }
  .header__actions .btn--gold { display: none; }

  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { max-width: 640px; margin-inline: auto; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__note, .eyebrow { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__visual { order: -1; min-height: 0; margin-bottom: var(--s-6); }
  .float-card--a { left: 0; top: 4%; }
  .float-card--b { right: 0; }
  .float-card--c { left: 2%; }

  .split--60-40,
  .split--40-60,
  .split--50-50 { grid-template-columns: 1fr; }

  .bonus-hero__grid { grid-template-columns: 1fr; }
  .phero__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step::after { display: none; }
  .toc { position: static; }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
    --header-h-sm: 60px;
    --logo-w: 160px;
  }
  .header.is-stuck .brand { --logo-w: 150px; }

  body { padding-bottom: 62px; }   /* room for the mobile bar */
  .mbar { display: block; }
  .fab { bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }

  .announce__inner { font-size: var(--t-micro); gap: var(--s-3); }
  .announce__sep { display: none; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--auto-160 { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--s-4); }

  .sec-head--split { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: var(--s-3); }
  .float-card { padding: 9px 12px; }
  .float-card b { font-size: .84rem; }
  .float-card span { font-size: 9px; }

  .ogshow__overlay { position: static; background: var(--c-emerald-900); }

  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer__disclaimer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom nav { justify-content: center; }

  .fab__label { display: none; }
  .fab__btn { padding: 15px; border-radius: 50%; }

  .filters { padding: 13px; }
  .search { flex: 1 1 100%; }

  .timeline { padding-left: 36px; }
  .timeline > li::before { left: -36px; width: 30px; height: 30px; font-size: .82rem; }
  .timeline::before { left: 14px; }
}

@media (max-width: 460px) {
  :root { --gutter: 18px; --logo-w: 144px; }
  .btn { --btn-px: 22px; font-size: .92rem; }
  .btn--lg { --btn-px: 26px; font-size: .98rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__stats { grid-template-columns: 1fr; text-align: left; }
  .hero__stat { display: flex; align-items: baseline; gap: 10px; }
  .hero__stat span { margin-top: 0; }
  .float-card--b { display: none; }
  .bonus-badge { padding: 8px 16px 8px 8px; }
}

/* Fine-tune very wide screens: keep the generous side gutters growing */
@media (min-width: 1600px) {
  :root { --gutter: clamp(92px, 8vw, 150px); }
}

/* ==========================================================================
   32. PRINT
   ========================================================================== */
@media print {
  .header, .announce, .footer__social, .fab, .mbar, .to-top,
  .hero__visual, .slider__nav, .ticker, .drawer, .scrim { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .section { padding-block: 18px; }
  a { color: #000; text-decoration: underline; }
  .card, .feature, .faq__item { box-shadow: none; border-color: #ccc; }
  .faq__panel { height: auto !important; }
}
