:root {
  --bg: #0a0a0c;
  --bg2: #121218;
  --card: #18181f;
  --line: #2a2a33;
  --text: #f4f4f6;
  --muted: #9b9ba8;
  --red: #e30613;
  --red2: #b50410;
  --gold: #e8c478;
  --header: 56px;
  --wrap: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0 0 0.6em;
}
h1,
h2 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(1.7rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.35rem, 3.4vw, 2rem);
}
.wrap {
  width: min(100% - 24px, var(--wrap));
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: 8px;
  top: -40px;
  z-index: 200;
  background: #fff;
  color: #000;
  padding: 8px 12px;
}
.skip:focus {
  top: 8px;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--red {
  background: linear-gradient(180deg, var(--red), var(--red2));
  color: #fff;
}
.btn--ghost {
  background: #1c1c24;
  border-color: var(--line);
}
.btn--gold {
  background: var(--gold);
  color: #111;
}
.btn--lg {
  min-height: 48px;
  padding: 12px 20px;
}
.btn--sm {
  min-height: 36px;
  font-size: 0.85rem;
}
.btn--full {
  width: 100%;
}
.btn:active {
  transform: translateY(1px);
}

.chip {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.14);
  color: #ff6b75;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: calc(var(--header) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: #0a0a0c;
  border-bottom: 1px solid var(--line);
}
.header.is-on {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.header__row {
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--header);
}
.logo {
  flex: 0 0 auto;
}
.logo img {
  width: 78px;
  height: auto;
  aspect-ratio: 300 / 140;
}
.nav {
  display: none;
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(var(--header) + env(safe-area-inset-top) + 8px);
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: auto;
  max-height: calc(100dvh - var(--header) - 24px);
}
.nav.is-open {
  display: flex;
}
.nav a {
  padding: 14px 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.nav a:last-child {
  border: 0;
}
.header__cta {
  display: flex;
  gap: 6px;
  margin-left: auto;
  flex: 0 0 auto;
}
.header__cta .btn {
  padding: 8px 8px;
  font-size: 0.72rem;
}
.burger {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: var(--card);
  border-radius: 10px;
  flex: 0 0 auto;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 28px 0 12px;
}
.hero__grid {
  display: grid;
  gap: 22px;
}
.lead,
.intro {
  color: var(--muted);
  max-width: 62ch;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}
.stats li,
.facts li,
.counters > div,
.pays > div,
.cards article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}
.stats strong,
.counters strong {
  display: block;
  font-size: 1.2rem;
}
.stats span,
.counters span {
  color: var(--muted);
  font-size: 0.78rem;
}

.promo {
  background: linear-gradient(160deg, #241016, #14080b 55%, #1a0c10);
  border: 1px solid #3a151b;
  border-radius: 18px;
  padding: 22px;
}
.promo__kicker {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo h2 {
  font-size: clamp(2rem, 8vw, 3rem);
  color: #fff;
  margin: 0 0 8px;
}
.code {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  padding: 10px 12px;
  background: #0e0e12;
  border-radius: 10px;
  font-size: 0.85rem;
}
.code span {
  color: var(--muted);
  margin-right: auto;
}
.copy {
  background: var(--gold);
  color: #111;
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 0.78rem;
}
.promo small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.75rem;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg2);
  content-visibility: auto;
}
.marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 12px 0;
  font-weight: 800;
  color: #c9c9d3;
  animation: tick 22s linear infinite;
}
@keyframes tick {
  to {
    transform: translateX(-50%);
  }
}

.block {
  padding: 48px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 640px;
}
.block--dim {
  background: var(--bg2);
}
.prose p {
  color: var(--muted);
}
.cta .prose p {
  color: #ffd7db;
}
.split {
  display: grid;
  gap: 22px;
}
.media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}
.media img {
  width: 100%;
  height: auto;
}
.media--space {
  margin: 18px 0;
}
.promo .media {
  margin-bottom: 14px;
}
.wrap > .split + .prose {
  margin-top: 18px;
}
.head {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}
.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.facts b {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
}

.tabs {
  display: flex;
  gap: 6px;
}
.tab {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--card);
  font-weight: 700;
}
.tab.is-on {
  background: var(--red);
}
.games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.game {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
}
.game.is-off {
  display: none;
}
.game__art {
  height: 110px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 900;
}
.g1 {
  background: radial-gradient(circle at 40% 30%, #ff6b7d, #8a0010);
}
.g2 {
  background: radial-gradient(circle at 40% 30%, #ffd36a, #7a4a00);
}
.g3 {
  background: radial-gradient(circle at 40% 30%, #9b7cff, #2a1060);
}
.g4 {
  background: radial-gradient(circle at 40% 30%, #6ad3ff, #063a66);
}
.g5 {
  background: radial-gradient(circle at 40% 30%, #7dffb0, #0a5a32);
}
.g6 {
  background: radial-gradient(circle at 40% 30%, #ff9a4a, #6a2200);
}
.game__meta {
  padding: 10px 12px 0;
}
.game h3 {
  margin: 0;
  font-size: 0.95rem;
}
.game p,
.game a {
  color: var(--muted);
  font-size: 0.8rem;
}
.game a {
  padding: 10px 12px 12px;
  font-weight: 800;
  color: var(--gold);
}

.checks {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.checks li {
  position: relative;
  padding: 6px 0 6px 22px;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.counters {
  display: grid;
  gap: 10px;
}

.table-wrap {
  overflow: auto;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  background: #15151c;
  color: var(--gold);
}
.cards {
  display: grid;
  gap: 10px;
}
.cards h3 {
  margin: 0 0 4px;
}

.steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.steps b {
  color: var(--gold);
}
.steps h3 {
  margin: 0 0 4px;
}
.steps p {
  margin: 0;
  color: var(--muted);
}

.pays {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.pays b {
  display: block;
}
.pays span {
  color: var(--muted);
  font-size: 0.8rem;
}

.phone {
  width: min(220px, 70%);
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #08080c;
}
.phone__screen {
  min-height: 280px;
  border-radius: 20px;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(180deg, #e30613, #6a0008);
}
.phone strong {
  font-size: 3rem;
  line-height: 1;
}
.center {
  text-align: center;
}
.center .intro {
  margin-inline: auto;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.badges li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}
.faq p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta {
  padding: 48px 0;
  background: linear-gradient(160deg, #e30613, #7a0710);
}
.cta p {
  color: #ffd7db;
}
.resp {
  padding: 18px 0;
  background: #141414;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 36px 0 24px;
  border-top: 1px solid var(--line);
  background: #070709;
}
.footer__grid {
  display: grid;
  gap: 22px;
}
.footer img {
  width: 110px;
  margin-bottom: 10px;
}
.footer p,
.footer a,
.footer span {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer nav,
.footer__grid > div {
  display: grid;
  gap: 8px;
}
.footer strong {
  color: #fff;
}
.footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 0.78rem;
}
.age {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #555;
  border-radius: 50%;
  color: #ddd;
  font-weight: 900;
}

@media (min-width: 420px) {
  .logo img {
    width: 112px;
  }
}

@media (min-width: 760px) {
  :root {
    --header: 72px;
  }
  .wrap {
    width: min(100% - 40px, var(--wrap));
  }
  .logo img {
    width: 132px;
  }
  .header__cta .btn {
    font-size: 0.92rem;
    padding: 10px 16px;
    min-height: 44px;
  }
  .hero__grid,
  .split,
  .head {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
  .head {
    align-items: end;
    justify-content: space-between;
  }
  .games,
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .game__art {
    height: 140px;
  }
  .pays {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero {
    padding: 48px 0 24px;
  }
  .phone {
    margin: 0;
  }
}

@media (min-width: 960px) {
  .burger {
    display: none;
  }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    max-height: none;
    background: none;
    border: 0;
    margin-right: auto;
    margin-left: 18px;
  }
  .nav a {
    padding: 0;
    border: 0;
    color: #c4c4ce;
    font-size: 0.92rem;
  }
  .nav a:hover {
    color: #fff;
  }
  .header__cta {
    margin-left: 0;
  }
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .marquee__track {
    animation: none;
  }
}
