/* tokens */
:root {
  --bg:            #0a0a0c;
  --bg-2:          #101014;
  --surface:       #15151b;
  --surface-2:     #1b1b23;
  --surface-3:     #22222c;
  --line:          #2a2a36;
  --line-soft:     #1f1f29;

  --text:          #ffffff;
  --text-mute:     #a5a5b5;
  --text-dim:      #7d7d8f;

  --gold:          #ffc824;
  --gold-2:        #ffdf5e;
  --gold-deep:     #e8a900;
  --green:         #35c860;
  --green-2:       #2aa94f;
  --red:           #ff4d4d;
  --purple:        #7b4dff;

  --radius-s:      10px;
  --radius:        16px;
  --radius-l:      24px;
  --radius-xl:     32px;

  --shadow:        0 18px 50px rgba(0, 0, 0, .55);
  --shadow-gold:   0 10px 30px rgba(255, 200, 36, .28);
  --shadow-green:  0 10px 30px rgba(53, 200, 96, .25);

  --wrap:          1180px;
  --header-h:      68px;

  --ff:            "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
button { font-family: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(30px, 6vw, 54px); }
h2 { font-size: clamp(25px, 4.4vw, 38px); }
h3 { font-size: clamp(20px, 3vw, 26px); }
h4 { font-size: clamp(18px, 2.4vw, 21px); }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: #000; }

/* layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 56px 0; position: relative; }
.section--tight { padding: 36px 0; }
.section--alt { background: var(--bg-2); }

.section__head { margin-bottom: 26px; }
.section__head p { color: var(--text-mute); max-width: 860px; }

.lead { color: var(--text-mute); font-size: 1.03em; }

/* accent kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 200, 36, .1);
  border: 1px solid rgba(255, 200, 36, .3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* buttons */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: #12120b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); color: #12120b; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 14px 38px rgba(255, 200, 36, .42); }

.btn--green {
  background: linear-gradient(180deg, #47dd75, var(--green-2));
  color: #04240f;
  box-shadow: var(--shadow-green);
}
.btn--green:hover { color: #04240f; box-shadow: 0 14px 38px rgba(53, 200, 96, .4); }

.btn--ghost {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(255, 200, 36, .06); }

.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--lg { padding: 18px 40px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

.btn__ico { width: 18px; height: 18px; flex: 0 0 auto; }

.btn--pulse { position: relative; }
.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%   { opacity: .75; transform: scale(1); }
  70%  { opacity: 0;   transform: scale(1.12); }
  100% { opacity: 0;   transform: scale(1.12); }
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(10, 10, 12, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__in {
  display: flex;
  align-items: center;
  gap: 18px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  transition: opacity .18s ease;
}
.logo:hover { opacity: .82; }
.logo__img {
  width: 80px;
  height: 38px;
  object-fit: contain;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0; padding: 0;
  list-style: none;
}
.nav__list a {
  color: var(--text-mute);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.nav__list a:hover { color: var(--gold); }

.header .btn { margin-left: 4px; }
.header__cta-sm { display: none; }

.nav__cta { display: none; }

.burger {
  display: none;
  width: 42px; height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  padding: 52px 0 34px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 46%;
  transform: scaleX(-1);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 10, 12, .97) 0%,
      rgba(10, 10, 12, .93) 34%,
      rgba(10, 10, 12, .58) 62%,
      rgba(10, 10, 12, .42) 100%),
    linear-gradient(180deg,
      rgba(10, 10, 12, .8) 0%,
      rgba(10, 10, 12, .22) 34%,
      rgba(10, 10, 12, .72) 82%,
      var(--bg) 100%);
}

.hero__in { position: relative; }
.hero__copy { max-width: 640px; }

.hero h1 {
  margin-bottom: .38em;
  text-shadow: 0 6px 32px rgba(0, 0, 0, .7);
}
.hero h1 span { color: var(--gold); }

.hero__sub {
  max-width: 560px;
  margin-bottom: 0;
  color: #d6d6e2;
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.6;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .8);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__cta .btn--ghost {
  background: rgba(12, 12, 16, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__note {
  margin-top: 16px;
  color: #9a9aad;
  font-size: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .9);
}

/* intro */
.intro {
  max-width: 940px;
  padding-left: 24px;
  border-left: 3px solid rgba(255, 200, 36, .45);
}
.intro p {
  color: var(--text-mute);
  font-size: 1.02em;
}

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.stat {
  padding: 16px 14px;
  border-radius: var(--radius);
  background: rgba(21, 21, 27, .74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}
.stat__v {
  display: block;
  font-size: clamp(18px, 2.4vw, 23px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.stat__k {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

/* cards */
.card {
  padding: 26px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line-soft);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: border-color .2s ease, transform .2s ease;
}
.mini:hover { border-color: var(--line); transform: translateY(-3px); }
.mini__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  border-radius: 13px;
  background: rgba(255, 200, 36, .12);
  font-size: 22px;
  line-height: 1;
}
.mini h3 { font-size: 19px; margin-bottom: .45em; }
.mini p { color: var(--text-mute); font-size: 15.5px; margin: 0; }

/* demo / simulator block */
.demo {
  position: relative;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
}
.demo__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0e0e15;
}
.demo__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.demo__poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}
.demo__poster img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.demo__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 55%, rgba(6, 6, 10, .88), rgba(6, 6, 10, .62) 70%, rgba(6, 6, 10, .5));
  z-index: 1;
}
.demo__poster-in { position: relative; z-index: 2; max-width: 520px; }
.demo__poster-in h3 { margin-bottom: .4em; text-shadow: 0 4px 18px rgba(0, 0, 0, .8); }
.demo__poster-in p {
  margin-bottom: 20px;
  color: #e3e3ee;
  font-size: 15px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .9);
}
.demo__poster-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.demo__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}
.demo__bal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}
.demo__bar .btn { margin-left: auto; }

.hero__grid > *,
.cards-2 > *,
.cards-3 > *,
.step > *,
.casino > *,
.casino-row > *,
.cta-band > *,
.callout > *,
.footer__top > * { min-width: 0; }

/* tables */
.tbl-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table.tbl {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 15.5px;
}
table.tbl th,
table.tbl td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
table.tbl thead th {
  background: var(--surface-2);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
table.tbl tbody tr:last-child td { border-bottom: 0; }
table.tbl tbody tr:hover { background: rgba(255, 255, 255, .02); }
table.tbl td:first-child { font-weight: 700; color: var(--text); white-space: nowrap; }
table.tbl td { color: var(--text-mute); }

.risk {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .02em;
}
.risk--low  { background: rgba(53, 200, 96, .15);  color: #58e08a; }
.risk--mid  { background: rgba(255, 200, 36, .15); color: var(--gold); }
.risk--high { background: rgba(255, 140, 40, .15); color: #ff9f42; }
.risk--max  { background: rgba(255, 77, 77, .15);  color: #ff7676; }

/* steps */
.steps { display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-l);
  background: var(--surface);
  border: 1px solid var(--line-soft);
}
.step__n {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold-deep));
  color: #12120b;
  font-size: 22px;
  font-weight: 900;
}
.step h3 { font-size: 20px; margin-bottom: .4em; }
.step p { color: var(--text-mute); margin-bottom: 0; }
.step__media {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.step__media img { width: 100%; }
.step__cap {
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 13.5px;
  font-style: italic;
}

/* callout */
.callout {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255, 200, 36, .07);
  border: 1px solid rgba(255, 200, 36, .28);
}
.callout__ico { font-size: 26px; line-height: 1.2; }
.callout strong { color: var(--gold); }
.callout p { color: #e0e0ec; margin: 0; font-size: 15.5px; }

/* carousel */
.carousel { position: relative; }
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid var(--line);
  background: var(--surface);
}
.carousel__track {
  display: flex;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
}
.carousel__slide img { width: 100%; }
.carousel__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(12, 12, 16, .82);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
  z-index: 3;
}
.carousel__btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.carousel__btn--prev { left: 12px; }
.carousel__btn--next { right: 12px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel__dot {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.carousel__dot.is-active { width: 26px; border-radius: 999px; background: var(--gold); }

/* casino card */
.casino {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid rgba(255, 200, 36, .3);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}
.casino__media { position: relative; }
.casino__media img { width: 100%; height: auto; }
.casino__rank {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #12120b;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.casino__body { padding: 28px; }
.casino__bonus {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.2;
}
.casino__body p { color: var(--text-mute); font-size: 15.5px; }
.casino__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 12.5px;
  font-weight: 700;
}

.casino-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: border-color .2s ease;
}
.casino-row + .casino-row { margin-top: 12px; }
.casino-row:hover { border-color: rgba(255, 200, 36, .35); }
.casino-row__name { font-weight: 800; font-size: 17px; }
.casino-row__bonus { color: var(--gold); font-weight: 700; font-size: 15.5px; }

/* trust */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.trust__i {
  padding: 18px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mute);
}
.trust__i span { display: block; font-size: 24px; margin-bottom: 6px; }

/* cta banner */
.cta-band {
  position: relative;
  margin: 8px 0;
  padding: 36px 32px;
  border-radius: var(--radius-l);
  background:
    radial-gradient(1200px 300px at 20% 0%, rgba(255, 200, 36, .18), transparent 60%),
    linear-gradient(135deg, #1a1a22, #121218);
  border: 1px solid rgba(255, 200, 36, .26);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band h3 { margin-bottom: .3em; font-size: clamp(21px, 3vw, 28px); }
.cta-band p { margin: 0; color: var(--text-mute); font-size: 15.5px; }

/* faq */
.faq { display: grid; gap: 12px; }
.faq__i {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__i.is-open { border-color: rgba(255, 200, 36, .35); }
.faq__h {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: inherit;
}
.faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
}
.faq__q::after {
  content: "+";
  margin-left: auto;
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--gold);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease, background .2s ease;
}
.faq__i.is-open .faq__q::after { transform: rotate(45deg); background: var(--gold); color: #000; }
.faq__a {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}
.faq__a-in {
  padding: 0 22px 20px;
  color: var(--text-mute);
  font-size: 15.5px;
}

/* legal pages */
.legal { max-width: 860px; }
.legal__back { margin-bottom: 20px; font-size: 14.5px; }
.legal__back a { color: var(--text-mute); font-weight: 600; }
.legal__back a:hover { color: var(--gold); }

.legal h1 { margin-bottom: .3em; }
.legal__meta {
  margin-bottom: 30px;
  color: var(--text-dim);
  font-size: 14px;
}
.legal__lead {
  padding: 20px 24px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 3px solid rgba(255, 200, 36, .55);
  color: #d0d0dd;
}

.legal h2 {
  margin: 38px 0 .55em;
  font-size: clamp(21px, 3vw, 27px);
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { color: var(--text-mute); }
.legal strong { color: var(--text); }
.legal em { color: #c4c4d2; }

.legal ul {
  margin: 0 0 1.05em;
  padding: 0;
  list-style: none;
}
.legal li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 26px;
  color: var(--text-mute);
}
.legal li::before {
  content: "";
  position: absolute;
  left: 4px; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.legal table.tbl { min-width: 0; }
.legal table.tbl td:first-child { white-space: normal; }

/* footer legal row */
.footer__legal {
  padding: 20px 0 4px;
}
.footer__links--legal a,
.footer__links--legal span {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
}
.footer__links--legal span { color: var(--gold); }
.footer__links--legal a:hover { color: var(--gold); }

/* sticky mobile cta */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 12, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.sticky-cta__txt { font-size: 13px; line-height: 1.3; color: var(--text-mute); }
.sticky-cta__txt b { display: block; color: var(--gold); font-size: 14px; }
.sticky-cta .btn { margin-left: auto; white-space: nowrap; }

/* footer */
.footer {
  padding: 46px 0 34px;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__top p { color: var(--text-dim); font-size: 14.5px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer__links a { color: var(--text-mute); font-size: 14.5px; font-weight: 600; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  color: var(--text-dim);
  font-size: 13.5px;
}
.footer__bottom > span:last-child { flex: 1 1 320px; min-width: 0; }
.age {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

/* responsive */
@media (max-width: 1024px) {
  .hero { min-height: 540px; }
  .hero__bg img { object-position: 58% 42%; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 42px 0; }

  .hero {
    min-height: 0;
    padding: 30px 0 28px;
  }
  .hero__bg img { object-position: 0% 50%; transform: none; }
  .hero__bg::after {
    background:
      linear-gradient(180deg,
        rgba(10, 10, 12, .5) 0%,
        rgba(10, 10, 12, .82) 30%,
        rgba(10, 10, 12, .95) 52%,
        var(--bg) 80%);
  }
  .hero__copy { max-width: none; }
  .hero__sub { max-width: none; font-size: 16px; }
  .hero__cta { margin-top: 22px; }
  .intro { padding-left: 18px; }
  .header__in { gap: 10px; }
  .nav { display: none; }
  .nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--bg);
    border-top: 1px solid var(--line-soft);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav.is-open .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px calc(28px + env(safe-area-inset-bottom));
  }
  .nav.is-open .nav__list a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 17px;
    color: var(--text);
  }
  .nav.is-open .nav__cta { display: block; margin-top: 22px; }
  .nav.is-open .nav__cta a {
    display: flex;
    width: 100%;
    padding: 17px 24px;
    border-bottom: 0;
    font-size: 16px;
    color: #12120b;
  }
  .burger { display: block; margin-left: 0; }

  .header .header__cta {
    display: inline-flex;
    margin-left: auto;
    padding: 11px 18px;
    font-size: 13.5px;
  }
  .header__cta-lg { display: none; }
  .header__cta-sm { display: inline; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; }
  .cta-band .btn { width: 100%; }
  .casino-row { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .casino-row .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; gap: 22px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 560px) {
  table.tbl { min-width: 440px; font-size: 14.5px; }
  table.tbl th, table.tbl td { padding: 12px 14px; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step__n { width: 44px; height: 44px; font-size: 19px; border-radius: 13px; }
  .card, .casino__body { padding: 20px; }
  .hero__cta .btn { width: 100%; }
  .carousel__btn { width: 38px; height: 38px; font-size: 17px; }
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }
  .callout { grid-template-columns: 1fr; }
  .demo__bar .btn { margin-left: 0; flex: 1 0 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
