:root {
  --bg: #090b0d;
  --bg-soft: #0f1115;
  --panel: #17191f;
  --panel-2: #1d2026;
  --panel-3: #242830;
  --line: #2d3139;
  --text: #f5f7f8;
  --text-soft: #c3c7cc;
  --muted: #8e949c;
  --accent: #13c9be;
  --accent-2: #19e0d2;
  --accent-dark: #0b8e88;
  --danger: #ff5a6a;
  --warning: #f1c94a;
  --success: #43d17f;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .28);
  --header-h: 62px;
  --rail-w: 268px;
  --content-w: 1320px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 2%, rgba(19, 201, 190, .07), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--accent);
  color: #07100f;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(23, 25, 31, .97);
  border-bottom: 1px solid rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(100%, 1680px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 0 24px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}
.menu-toggle:hover, .menu-toggle:focus-visible { background: var(--panel-3); outline: none; }
.menu-lines, .menu-lines::before, .menu-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #d9dde0;
  border-radius: 2px;
  content: "";
  transition: transform .18s ease, opacity .18s ease;
}
.menu-lines::before { transform: translateY(-7px); }
.menu-lines::after { transform: translateY(5px); }
body.menu-open .menu-lines { background: transparent; }
body.menu-open .menu-lines::before { transform: translateY(0) rotate(45deg); }
body.menu-open .menu-lines::after { transform: translateY(-2px) rotate(-45deg); }

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
  min-width: 160px;
}
.brand img { width: 160px; height: 40px; object-fit: contain; }
.brand-fallback {
  display: none;
  font-weight: 1000;
  font-style: italic;
  font-size: 30px;
  letter-spacing: -2px;
  white-space: nowrap;
}
.brand-fallback .bet { color: var(--accent); }
.brand-fallback .fm { color: #fff; }

.main-nav { display: flex; align-items: center; gap: 28px; margin-left: 12px; }
.main-nav a {
  color: #eef0f2;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .15s ease;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { color: var(--accent); outline: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 9px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid rgba(19, 201, 190, .28); outline-offset: 2px; }
.btn-primary { background: var(--accent); color: #06100f; box-shadow: 0 10px 24px rgba(19,201,190,.12); }
.btn-primary:hover { background: var(--accent-2); }
.btn-secondary { border-color: #2d8e8a; color: var(--accent-2); background: transparent; }
.btn-secondary:hover { border-color: var(--accent); background: rgba(19,201,190,.08); }
.btn-dark { background: #252930; color: #f4f6f7; border-color: #343942; }
.btn-dark:hover { background: #2c3139; }
.btn-wide { min-width: 220px; }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }

.page-shell {
  width: min(100%, 1680px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--rail-w) minmax(0, 1fr);
  gap: 28px;
  padding: 16px 24px 64px;
}
.desktop-rail {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  align-self: start;
  display: grid;
  gap: 14px;
}
.rail-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.035);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,.13);
}
.rail-nav { display: grid; }
.rail-nav a {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 51px;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #f1f2f4;
  border-radius: 8px;
}
.rail-nav a:last-child { border-bottom: 0; }
.rail-nav a:hover, .rail-nav a:focus-visible { background: #20242b; outline: none; }
.rail-nav a[aria-current="page"] { color: var(--accent-2); background: rgba(19,201,190,.06); }
.rail-nav svg { width: 22px; height: 22px; color: #9da3aa; }
.rail-nav small { display: block; color: var(--muted); font-size: 11px; margin-top: 1px; }
.rail-promo {
  padding: 16px;
  background: linear-gradient(135deg, #113532, #1d2026 72%);
  border-radius: var(--radius);
  border: 1px solid rgba(19,201,190,.18);
}
.rail-promo strong { display: block; font-size: 15px; }
.rail-promo p { margin: 4px 0 14px; font-size: 12px; color: var(--text-soft); }
.rail-promo .btn { width: 100%; min-height: 39px; font-size: 13px; }

.mobile-drawer {
  position: fixed;
  z-index: 90;
  inset: var(--header-h) 0 0 0;
  background: rgba(7,8,10,.76);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease;
}
.mobile-drawer-inner {
  width: min(88vw, 360px);
  height: 100%;
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: 18px;
  transform: translateX(-101%);
  transition: transform .2s ease;
  overflow-y: auto;
}
body.menu-open .mobile-drawer { opacity: 1; visibility: visible; pointer-events: auto; }
body.menu-open .mobile-drawer-inner { transform: translateX(0); }
.mobile-drawer nav { display: grid; gap: 4px; }
.mobile-drawer nav a { padding: 12px 10px; border-radius: 8px; font-weight: 700; }
.mobile-drawer nav a:hover { background: var(--panel-3); color: var(--accent); }
.drawer-divider { height: 1px; background: var(--line); margin: 14px 0; }
.drawer-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

main { min-width: 0; }
.breadcrumbs {
  min-height: 36px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: #50555d; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 34px;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 62px);
  background:
    radial-gradient(circle at 82% 16%, rgba(25,224,210,.27), transparent 22rem),
    radial-gradient(circle at 4% 96%, rgba(44,84,81,.22), transparent 24rem),
    linear-gradient(135deg, #171a20 0%, #0d1113 58%, #102523 100%);
  border: 1px solid rgba(19,201,190,.14);
  box-shadow: var(--shadow);
}
.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(19,201,190,.08);
  border-radius: 50%;
  right: -130px;
  top: -140px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(19,201,190,.08);
  border-radius: 50%;
  right: 70px;
  top: 42px;
}
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(19,201,190,.08); }
h1, h2, h3 { line-height: 1.14; margin-top: 0; letter-spacing: -.025em; }
h1 { font-size: clamp(38px, 4.25vw, 66px); margin-bottom: 20px; max-width: 880px; }
h2 { font-size: clamp(27px, 2.6vw, 40px); margin-bottom: 16px; }
h3 { font-size: 20px; margin-bottom: 10px; }
.hero-lead {
  max-width: 760px;
  margin: 0 0 26px;
  color: #c8cdd1;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 20px;
  color: #a9afb5;
  font-size: 13px;
}
.hero-notes span { display: inline-flex; align-items: center; gap: 7px; }
.hero-notes svg { width: 16px; height: 16px; color: var(--accent); }

.phone-wrap { position: relative; min-height: 390px; display: grid; place-items: center; }
.phone {
  width: min(310px, 80vw);
  border-radius: 38px;
  padding: 9px;
  background: linear-gradient(145deg, #464b54, #15171b 46%, #353941);
  box-shadow: 0 35px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(2.2deg);
}
.phone-screen {
  min-height: 530px;
  overflow: hidden;
  border-radius: 31px;
  background: #0d0f12;
  border: 1px solid rgba(255,255,255,.04);
}
.phone-top { height: 28px; display: flex; justify-content: center; align-items: center; }
.phone-notch { width: 86px; height: 18px; border-radius: 0 0 12px 12px; background: #040506; }
.phone-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px 12px; }
.mini-logo { font-size: 18px; font-weight: 1000; font-style: italic; letter-spacing: -.06em; }
.mini-logo .bet { color: var(--accent); }
.phone-header .dot { width: 30px; height: 30px; border-radius: 9px; background: var(--accent); }
.phone-banner {
  margin: 0 12px 12px;
  padding: 17px;
  min-height: 128px;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(135deg, #6d11b8, #dc268f);
}
.phone-banner small { font-size: 11px; opacity: .9; }
.phone-banner strong { font-size: 19px; max-width: 190px; line-height: 1.1; }
.phone-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 0 12px 12px; }
.phone-tabs span { height: 34px; border-radius: 9px; background: #1d2025; display: grid; place-items: center; font-size: 9px; color: #c4c7cb; }
.phone-tabs span:first-child { color: var(--accent); background: rgba(19,201,190,.08); }
.phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px 12px; }
.phone-card { aspect-ratio: 1.25 / 1; border-radius: 12px; overflow: hidden; background: #202329; position: relative; }
.phone-card img { width: 100%; height: 100%; object-fit: cover; }
.phone-card::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.phone-label { position: absolute; z-index: 2; left: 8px; bottom: 7px; font-size: 9px; font-weight: 800; }
.phone-bottom { height: 42px; margin: 0 12px 12px; border-radius: 11px; background: #1b1e23; display: grid; place-items: center; color: var(--accent); font-weight: 850; font-size: 11px; }

.hero-apk .hero-visual { display: grid; place-items: center; }
.download-card {
  width: min(390px, 100%);
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, #20242a, #14171b);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}
.download-card-icon {
  width: 68px; height: 68px; display: grid; place-items: center; border-radius: 18px;
  background: rgba(19,201,190,.12); color: var(--accent); margin-bottom: 20px;
}
.download-card-icon svg { width: 38px; height: 38px; }
.download-card h2 { font-size: 28px; margin-bottom: 8px; }
.download-card p { color: var(--text-soft); margin: 0 0 18px; }
.meta-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0; }
.meta-chip { background: #111419; border: 1px solid #2b3037; border-radius: 12px; padding: 11px; }
.meta-chip small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.meta-chip strong { display: block; font-size: 13px; margin-top: 2px; }

.hero-casino {
  background:
    radial-gradient(circle at 83% 12%, rgba(241,46,161,.20), transparent 25rem),
    radial-gradient(circle at 40% 110%, rgba(127,28,237,.20), transparent 25rem),
    linear-gradient(135deg, #171a20 0%, #0d0f12 58%, #201023 100%);
  border-color: rgba(196,43,211,.15);
}
.casino-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; transform: rotate(1.4deg); }
.casino-tile { position: relative; min-height: 165px; overflow: hidden; border-radius: 20px; background: #1d2026; box-shadow: 0 20px 45px rgba(0,0,0,.25); }
.casino-tile:first-child { grid-row: span 2; min-height: 342px; }
.casino-tile img { width: 100%; height: 100%; object-fit: cover; }
.casino-tile::after { content:""; position:absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.casino-tile span { position:absolute; z-index:2; left:16px; bottom:14px; font-weight:900; }

.jump-nav {
  margin: 18px 0 0;
  padding: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 14px;
  position: sticky;
  top: calc(var(--header-h) + 8px);
  z-index: 35;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.jump-nav a {
  white-space: nowrap;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 9px;
  color: #c3c7cc;
  font-size: 13px;
  font-weight: 700;
}
.jump-nav a:hover, .jump-nav a:focus-visible { background: #242830; color: var(--accent); outline: none; }

.content-section {
  scroll-margin-top: calc(var(--header-h) + 76px);
  margin-top: 28px;
  padding: clamp(24px, 3.3vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.045);
}
.content-section > :last-child { margin-bottom: 0; }
.section-kicker { color: var(--accent); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; margin-bottom: 9px; }
.content-section p { color: #c6cbd0; margin: 0 0 15px; }
.content-section a:not(.btn):not(.card-link) { color: var(--accent-2); text-decoration: underline; text-decoration-color: rgba(25,224,210,.32); text-underline-offset: 3px; }
.content-section a:not(.btn):hover { text-decoration-color: currentColor; }
.content-section ul, .content-section ol { color: #c6cbd0; padding-left: 22px; }
.content-section li + li { margin-top: 8px; }

.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.feature-card {
  min-width: 0;
  padding: 20px;
  background: #111419;
  border: 1px solid #292e35;
  border-radius: 15px;
}
.feature-icon { width: 42px; height: 42px; display:grid; place-items:center; border-radius:12px; background: rgba(19,201,190,.10); color: var(--accent); margin-bottom:14px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; margin: 0; color: #aeb4ba; }

.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.route-card {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px;
  border-radius: 16px;
  background: linear-gradient(145deg, #121519, #1c2026);
  border: 1px solid #2a2f36;
  transition: transform .15s ease, border-color .15s ease;
}
.route-card:hover { transform: translateY(-2px); border-color: rgba(19,201,190,.45); }
.route-card strong { font-size: 18px; }
.route-card p { margin: 7px 0 18px; font-size: 14px; color: #aeb4ba; }
.card-link { color: var(--accent-2); font-weight: 850; font-size: 13px; display: inline-flex; gap: 7px; align-items: center; }

.steps { counter-reset: steps; display: grid; gap: 12px; margin-top: 22px; }
.step {
  position: relative;
  counter-increment: steps;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: #111419;
  border: 1px solid #292e35;
  border-radius: 14px;
}
.step::before {
  content: counter(steps);
  width: 42px; height: 42px; display:grid; place-items:center;
  border-radius: 12px; background: var(--accent); color: #06100f; font-weight: 950;
}
.step h3 { margin: 2px 0 5px; font-size: 17px; }
.step p { margin: 0; font-size: 14px; }

.info-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  margin: 20px 0 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(19,201,190,.2);
  background: rgba(19,201,190,.07);
}
.info-banner.warning { border-color: rgba(241,201,74,.28); background: rgba(241,201,74,.06); }
.info-banner svg { width: 21px; height: 21px; color: var(--accent); margin-top: 2px; }
.info-banner.warning svg { color: var(--warning); }
.info-banner strong { display: block; margin-bottom: 3px; }
.info-banner p { margin: 0; font-size: 14px; }

.comparison-wrap { overflow-x: auto; margin-top: 22px; border-radius: 14px; border: 1px solid #2b3037; }
table { width: 100%; border-collapse: collapse; min-width: 690px; background: #111419; }
th, td { padding: 15px 17px; text-align: left; border-bottom: 1px solid #292e35; vertical-align: top; }
th { color: #f5f6f7; background: #1d2127; font-size: 13px; }
td { color: #bac0c5; font-size: 14px; }
tr:last-child td { border-bottom: 0; }
.cell-accent { color: var(--accent-2); font-weight: 800; }

.qr-panel {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  margin-top: 22px;
  border-radius: 16px;
  background: #111419;
  border: 1px solid #2a2f36;
}
.qr-panel img { width: 170px; height: 170px; border-radius: 12px; padding: 8px; background: #fff; }
.qr-panel p { margin-bottom: 14px; }

.media-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.media-card { overflow: hidden; min-height: 260px; border-radius: 17px; background: #111419; border: 1px solid #2a2f36; }
.media-thumb { aspect-ratio: 16 / 10; background: #23272e; overflow: hidden; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.media-card:hover img { transform: scale(1.03); }
.media-body { padding: 16px; }
.media-body h3 { margin-bottom: 6px; font-size: 17px; }
.media-body p { margin: 0 0 12px; font-size: 13px; }

.faq-list { display: grid; gap: 10px; margin-top: 22px; }
details {
  background: #111419;
  border: 1px solid #292e35;
  border-radius: 14px;
  overflow: clip;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 18px;
  position: relative;
  font-weight: 800;
  line-height: 1.35;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #242830;
  color: var(--accent);
  font-size: 18px;
}
details[open] summary::after { content: "–"; }
details > div { padding: 0 18px 18px; color: #b9bfc4; }
details > div p { margin: 0; }

.bottom-cta {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #0e3d38, #171a20 58%, #25282e);
  border: 1px solid rgba(19,201,190,.22);
}
.bottom-cta::after { content:""; position:absolute; width:280px; height:280px; border-radius:50%; right:-100px; top:-120px; background: rgba(19,201,190,.08); }
.bottom-cta > * { position:relative; z-index:2; }
.bottom-cta h2 { max-width: 760px; margin-bottom: 10px; }
.bottom-cta p { max-width: 760px; color: #c5cace; margin: 0 0 20px; }

.site-footer {
  border-top: 1px solid #252a30;
  background: #101216;
  padding: 40px 24px 92px;
}
.footer-inner { width: min(100%, 1370px); margin: 0 auto; }
.footer-top { display:grid; grid-template-columns: 1.2fr repeat(3, .8fr); gap: 36px; padding-bottom: 28px; }
.footer-brand p { max-width: 360px; color: var(--muted); font-size: 13px; margin: 14px 0 0; }
.footer-col strong { display:block; margin-bottom:12px; font-size: 14px; }
.footer-links { list-style:none; margin:0; padding:0; }
.footer-links li { margin:0; padding:0; }
.footer-col a { display:block; width:max-content; max-width:100%; color:#9da3aa; font-size:13px; margin:8px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top:1px solid #24282f; padding-top:20px; display:flex; gap:18px; justify-content:space-between; align-items:center; color:#7e858d; font-size:12px; }
.age-badge { width: 38px; height: 38px; display:grid; place-items:center; border-radius:50%; border:2px solid #c8ccd0; color:#fff; font-weight:900; flex:0 0 auto; }

.mobile-sticky-cta {
  position: fixed;
  z-index: 80;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 9px 12px max(9px, env(safe-area-inset-bottom));
  background: rgba(17,19,23,.96);
  border-top: 1px solid #2a2e35;
  backdrop-filter: blur(14px);
}
.mobile-sticky-cta .btn { width: 100%; }

.note-small { color: var(--muted); font-size: 12px; margin-top: 12px; }
.text-accent { color: var(--accent-2); }
.no-margin { margin: 0 !important; }

@media (max-width: 1260px) {
  :root { --rail-w: 230px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 14px; }
  .hero { grid-template-columns: 1fr .78fr; }
}

@media (max-width: 1080px) {
  .menu-toggle { display: inline-grid; }
  .main-nav { display: none; }
  .header-inner { grid-template-columns: auto auto 1fr auto; }
  .page-shell { grid-template-columns: 1fr; }
  .desktop-rail { display: none; }
  .hero { min-height: 470px; }
  .feature-grid, .route-grid, .media-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  :root { --header-h: 58px; }
  .header-inner { padding: 0 13px; gap: 10px; }
  .brand, .brand img { width: 134px; min-width: 134px; height: 34px; }
  .header-actions .btn-secondary { display:none; }
  .header-actions .btn-primary { min-height:40px; padding:9px 14px; }
  .page-shell { padding: 12px 12px 92px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 28px 22px; border-radius: 18px; }
  .hero-visual { order: -1; max-width: 410px; width: 100%; margin: 0 auto 6px; }
  .phone-wrap { min-height: 270px; }
  .phone { width: 220px; border-radius: 29px; }
  .phone-screen { min-height: 366px; border-radius: 23px; }
  .phone-banner { min-height: 88px; padding: 12px; }
  .phone-banner strong { font-size: 14px; }
  .phone-tabs span { height:26px; font-size:7px; }
  .phone-grid { gap:6px; }
  .phone-bottom { height:30px; }
  .download-card { max-width: 430px; margin:0 auto; padding:22px; }
  .casino-mosaic { max-width: 430px; margin:0 auto; }
  .casino-tile { min-height: 118px; }
  .casino-tile:first-child { min-height: 250px; }
  h1 { font-size: clamp(36px, 9.5vw, 52px); }
  .hero-lead { font-size: 17px; }
  .jump-nav { margin-top: 12px; top: calc(var(--header-h) + 6px); }
  .content-section { margin-top: 18px; border-radius: 18px; padding: 25px 20px; }
  .intro-grid { grid-template-columns: 1fr; }
  .feature-grid, .route-grid, .media-card-grid { grid-template-columns: 1fr; }
  .qr-panel { grid-template-columns: 120px 1fr; }
  .qr-panel img { width:120px; height:120px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-sticky-cta { display:block; }
}

@media (max-width: 520px) {
  .menu-toggle { width:38px; height:38px; }
  .brand, .brand img { width: 118px; min-width:118px; height:30px; }
  .header-actions .btn-primary { font-size: 12px; padding: 8px 11px; }
  .breadcrumbs { font-size: 11px; }
  .breadcrumbs ol, .breadcrumbs li { gap:6px; }
  .hero { padding: 24px 18px; }
  .hero-visual { display:none; }
  .hero h1 { font-size: 38px; }
  .cta-row { display:grid; grid-template-columns: 1fr; }
  .cta-row .btn { width:100%; }
  .hero-notes { display:grid; gap:8px; }
  .content-section { padding: 22px 17px; }
  h2 { font-size: 28px; }
  .step { grid-template-columns: 40px 1fr; gap:12px; padding:15px; }
  .step::before { width:36px; height:36px; border-radius:10px; }
  .meta-strip { grid-template-columns:1fr; }
  .qr-panel { grid-template-columns:1fr; text-align:center; }
  .qr-panel img { width:150px; height:150px; margin:0 auto; }
  .footer-top { grid-template-columns:1fr; gap:22px; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { align-items:flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; animation:none !important; }
}

.hash-code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; overflow-wrap: anywhere; word-break: break-all; color: #d9dde3; }

/* v7: safe mobile rendering optimizations. These do not remove content or change layout. */
@media (max-width: 780px) {
  body { text-rendering: auto; }
  .site-header,
  .mobile-sticky-cta {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* Keep non-critical imagery from competing with first-paint resources. */
img[loading="lazy"] { content-visibility: auto; }

/* v17: lightweight scrollspy underline + native horizontal touch scrolling. */
.jump-nav a.is-active,
.jump-nav a[aria-current="location"] {
  color: #c3c7cc;
  background: transparent;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.jump-nav a.is-active:hover,
.jump-nav a.is-active:focus-visible,
.jump-nav a[aria-current="location"]:hover,
.jump-nav a[aria-current="location"]:focus-visible {
  color: var(--accent);
  background: transparent;
  text-decoration-color: var(--accent);
}

@media (max-width: 780px) {
  .jump-nav {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .jump-nav::-webkit-scrollbar { display: none; }
  .jump-nav a { flex: 0 0 auto; }
}

