@font-face {
  font-family: "Geologica";
  src: url("/fonts/Geologica-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("/fonts/Geologica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("/fonts/Geologica-Medium.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #f7f8ff;
  --ink-muted: #b9bbca;
  --ink-dark: #12131c;
  --paper: #f5f5fa;
  --paper-soft: #e9eaf2;
  --night: #080711;
  --night-2: #11101e;
  --night-3: #19172a;
  --plum: #25143a;
  --violet: #6724a9;
  --cyan: #27e2db;
  --cyan-deep: #0ab7b4;
  --coral: #ff4f8c;
  --gold: #f6c86c;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(13, 15, 26, .13);
  --shadow: 0 24px 70px rgba(3, 3, 10, .28);
  --radius: 26px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--night);
  font-family: "Geologica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  position: fixed;
  inset: 0;
  overflow: hidden;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  color: var(--ink-dark);
  background: var(--cyan);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.age-bar {
  position: relative;
  z-index: 80;
  min-height: 31px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #d7d7e3;
  background: #05050b;
  font-size: 12px;
  letter-spacing: .02em;
}

.age-bar__inner {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.age-bar b {
  margin-right: 7px;
  color: var(--cyan);
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 6, 14, .94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .15);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  height: 68px;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1;
}

.brand__mark {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  transform: rotate(-8deg);
  border: 2px solid var(--cyan);
  border-radius: 9px 16px 9px 16px;
  background: linear-gradient(145deg, rgba(39, 226, 219, .22), rgba(103, 36, 169, .38));
  box-shadow: inset 0 0 16px rgba(39, 226, 219, .17), 0 0 22px rgba(39, 226, 219, .14);
}

.brand__mark::before,
.brand__mark::after {
  position: absolute;
  content: "";
  background: var(--cyan);
}

.brand__mark::before {
  width: 4px;
  height: 19px;
  top: 5px;
  left: 8px;
  transform: skew(-15deg);
  border-radius: 8px;
}

.brand__mark::after {
  width: 12px;
  height: 4px;
  right: 5px;
  bottom: 6px;
  transform: skew(-15deg);
  border-radius: 8px;
}

.brand em {
  color: var(--cyan);
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 29px);
}

.desktop-nav a {
  position: relative;
  padding-block: 22px;
  color: #d9d9e5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--cyan);
  content: "";
  transition: transform .2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
}

.button--primary {
  color: #051313;
  background: linear-gradient(135deg, #4af6ed, var(--cyan));
  box-shadow: 0 11px 26px rgba(39, 226, 219, .22);
}

.button--primary:hover {
  box-shadow: 0 14px 34px rgba(39, 226, 219, .34);
}

.button--ghost {
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.button--ghost:hover {
  border-color: var(--cyan);
  background: rgba(39, 226, 219, .07);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 5px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(2, 2, 8, .76);
  opacity: 0;
  transition: opacity .24s ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(340px, calc(100vw - 36px));
  height: 100dvh;
  overflow-y: auto;
  padding: 18px 18px 28px;
  transform: translateX(104%);
  border-left: 1px solid var(--line);
  color: #fff;
  background: #0d0b17;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .5);
  visibility: hidden;
  transition: transform .24s ease, visibility .24s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__top {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mobile-menu__top button {
  width: 42px;
  height: 42px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.mobile-menu > a:not(.button) {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 600;
}

.mobile-menu > a:not(.button)::after {
  color: var(--cyan);
  content: "↗";
}

.mobile-menu .button {
  width: 100%;
  margin-top: 24px;
}

.mobile-menu p {
  margin: 18px 4px 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 3vw, 44px) 0 clamp(64px, 8vw, 100px);
  background:
    radial-gradient(circle at 15% 25%, rgba(103, 36, 169, .25), transparent 27%),
    radial-gradient(circle at 85% 75%, rgba(39, 226, 219, .09), transparent 28%),
    linear-gradient(180deg, #0c0916 0%, #080711 100%);
}

.hero::before {
  position: absolute;
  width: 440px;
  height: 440px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid rgba(39, 226, 219, .12);
  content: "";
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(44px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
  text-align: center;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-banner {
  position: relative;
  display: grid;
  min-height: 370px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  border: 1px solid rgba(39, 226, 219, .25);
  border-radius: 32px;
  background: #171024;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-banner::after {
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  top: 55%;
  left: 25%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 52px;
  content: "";
}

.hero-banner__copy {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4vw, 48px);
}

.offer-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(39, 226, 219, .35);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(39, 226, 219, .08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-banner h2 {
  max-width: 520px;
  margin: 0 0 16px;
  font-size: clamp(34px, 4.25vw, 54px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}

.hero-banner h2 strong {
  color: var(--cyan);
  font-weight: inherit;
}

.offer-line {
  display: block;
}

.hero-banner__copy > p {
  max-width: 520px;
  margin: 0 0 23px;
  color: #d1cfdd;
  font-size: 16px;
  line-height: 1.55;
}

.hero-banner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 17px;
  color: #c9c8d2;
  font-size: 12px;
}

.hero-banner__meta span::before {
  margin-right: 7px;
  color: var(--cyan);
  content: "◆";
  font-size: 8px;
}

.hero-banner__art {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 36%;
}

.hero-banner__art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #171024 0%, rgba(23, 16, 36, .9) 8%, rgba(23, 16, 36, .12) 48%, rgba(23, 16, 36, 0) 100%);
  content: "";
}

.hero-banner__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__intro {
  max-width: 930px;
  margin: 27px auto 0;
  color: #c3c2ce;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  text-align: center;
}

.hero__main-cta {
  display: flex;
  justify-content: center;
  margin-top: 23px;
}

.hero__main-cta .button {
  min-width: 276px;
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 116px) 0;
}

.section--paper {
  color: var(--ink-dark);
  background: var(--paper);
}

.section--soft {
  color: var(--ink-dark);
  background: var(--paper-soft);
}

.section--violet {
  background:
    radial-gradient(circle at 12% 85%, rgba(39, 226, 219, .08), transparent 25%),
    linear-gradient(145deg, #181024, #0d0b18 58%, #121325);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 50px;
}

.section-heading--split > p {
  margin: 0;
}

.kicker {
  margin: 0 0 9px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section:not(.section--paper):not(.section--soft) .kicker {
  color: var(--cyan);
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.section-heading > p:not(.kicker),
.section-heading > div + p {
  margin: 17px 0 0;
  color: #5f6170;
  font-size: 17px;
  line-height: 1.7;
}

.section:not(.section--paper):not(.section--soft) .section-heading > p:not(.kicker),
.section:not(.section--paper):not(.section--soft) .section-heading > div + p {
  color: var(--ink-muted);
}

.games-strip {
  padding: 52px 0 66px;
  border-top: 1px solid var(--line);
  background: #0d0c17;
}

.strip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.strip-top h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.03em;
}

.game-tabs {
  display: flex;
  gap: 7px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
}

.game-tabs button {
  min-height: 38px;
  padding: 8px 15px;
  border: 0;
  border-radius: 999px;
  color: #aeadba;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.game-tabs button[aria-selected="true"] {
  color: #031314;
  background: var(--cyan);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.game-card {
  position: relative;
  display: flex;
  min-height: 188px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--card-a, #39205f), var(--card-b, #111322));
  isolation: isolate;
}

.game-card::before {
  position: absolute;
  z-index: -1;
  width: 132px;
  height: 132px;
  top: -30px;
  right: -20px;
  transform: rotate(18deg);
  border: 20px solid rgba(255, 255, 255, .10);
  border-radius: 38% 62% 52% 48%;
  content: "";
}

.game-card::after {
  position: absolute;
  z-index: -1;
  width: 55px;
  height: 55px;
  top: 25px;
  right: 32px;
  transform: rotate(45deg);
  border: 2px solid var(--cyan);
  border-radius: 15px;
  content: "";
  opacity: .75;
}

.game-card:nth-child(2) { --card-a: #0e5260; --card-b: #151325; }
.game-card:nth-child(3) { --card-a: #57301e; --card-b: #1b1023; }
.game-card:nth-child(4) { --card-a: #263867; --card-b: #15101f; }
.game-card:nth-child(5) { --card-a: #214f3d; --card-b: #101b20; }
.game-card:nth-child(6) { --card-a: #5e194a; --card-b: #1c1021; }
.game-card:nth-child(7) { --card-a: #203762; --card-b: #100f1c; }
.game-card:nth-child(8) { --card-a: #4c421d; --card-b: #15141d; }

.game-card small {
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.game-card strong {
  margin-top: 3px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 22px;
}

.verdict-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(155deg, #39215d, #171323 68%);
  box-shadow: 0 18px 40px rgba(31, 23, 49, .15);
}

.verdict-card::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -80px;
  transform: rotate(22deg);
  border: 1px solid rgba(39, 226, 219, .25);
  border-radius: 40px;
  content: "";
}

.verdict-card__label {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.verdict-card strong {
  display: block;
  max-width: 360px;
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.15;
}

.verdict-card p {
  margin: 0;
  color: #cbc8d5;
}

.verdict-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.verdict-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.verdict-points span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  transform: rotate(45deg);
  background: var(--cyan);
  content: "";
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 40px rgba(31, 23, 49, .08);
  scrollbar-color: var(--violet) transparent;
}

.data-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  color: var(--ink-dark);
  font-size: 14px;
}

.data-table caption {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
  color: #5d5d6a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.data-table th,
.data-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  vertical-align: top;
}

.data-table tr:last-child > * {
  border-bottom: 0;
}

.data-table th {
  width: 34%;
  color: #242532;
  font-weight: 700;
}

.data-table td {
  color: #555765;
}

.data-table thead th {
  width: auto;
  color: #fff;
  background: #171522;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: #185754;
  background: #dff7f5;
  font-size: 11px;
  font-weight: 700;
}

.tag--caution {
  color: #7b3e12;
  background: #fff0d7;
}

.review-grid,
.feature-grid,
.promo-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.review-card,
.feature-card,
.promo-card,
.security-card {
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 15px 42px rgba(24, 20, 43, .06);
}

.review-card h3,
.feature-card h3,
.promo-card h3,
.security-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.review-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-card li,
.check-list li {
  position: relative;
  padding: 9px 0 9px 29px;
  border-bottom: 1px solid rgba(13, 15, 26, .08);
  color: #555765;
}

.review-card li:last-child,
.check-list li:last-child {
  border-bottom: 0;
}

.review-card li::before,
.check-list li::before {
  position: absolute;
  top: 14px;
  left: 2px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 5px;
  color: #0b3634;
  background: var(--cyan);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.review-card--caution li::before {
  color: #fff;
  background: var(--coral);
  content: "!";
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}

.review-card__top h3 {
  margin: 0;
}

.review-card__icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border-radius: 12px;
  color: #053b39;
  background: var(--cyan);
  font-size: 21px;
  font-weight: 800;
}

.review-card--caution .review-card__icon {
  color: #fff;
  background: var(--coral);
}

.bonus-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 26px;
}

.bonus-ticket {
  position: sticky;
  top: 94px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(39, 226, 219, .28);
  border-radius: 29px;
  background:
    radial-gradient(circle at 100% 0, rgba(39, 226, 219, .19), transparent 32%),
    linear-gradient(145deg, #28143f, #12101c 68%);
  box-shadow: var(--shadow);
}

.bonus-ticket::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -75px;
  bottom: -75px;
  transform: rotate(33deg);
  border: 18px solid rgba(255, 255, 255, .04);
  border-radius: 54px;
  content: "";
}

.bonus-ticket span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bonus-ticket strong {
  display: block;
  margin: 12px 0 8px;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -.06em;
  line-height: .98;
}

.bonus-ticket strong em {
  color: var(--cyan);
  font-style: normal;
}

.bonus-ticket p {
  margin: 0 0 24px;
  color: #c4c2ce;
}

.bonus-ticket .button {
  position: relative;
  z-index: 1;
  width: 100%;
}

.bonus-copy {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
}

.info-card h3 {
  margin: 0 0 11px;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: #bcbac7;
}

.number-list {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
  gap: 12px;
}

.number-list li {
  position: relative;
  min-height: 54px;
  padding: 4px 0 4px 66px;
  color: #c8c6d0;
}

.number-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(39, 226, 219, .32);
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(39, 226, 219, .07);
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  font-size: 12px;
  font-weight: 800;
}

.promo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.promo-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.promo-card::before {
  display: block;
  width: 36px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
}

.promo-card:nth-child(even)::before {
  background: var(--violet);
}

.promo-card p {
  margin: 0;
  color: #676876;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.catalog-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1b172a, #0e0d17);
}

.catalog-card::after {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 55px;
  right: -70px;
  transform: rotate(31deg);
  border: 24px solid rgba(39, 226, 219, .08);
  border-radius: 60px;
  content: "";
}

.catalog-card:nth-child(2)::after {
  border-color: rgba(255, 79, 140, .09);
}

.catalog-card span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-card h3 {
  max-width: 420px;
  margin: 11px 0 13px;
  font-size: 29px;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.catalog-card p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-muted);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.metric strong {
  display: block;
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 26px;
}

.metric span {
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: normal;
  text-transform: none;
}

.provider-cloud,
.payment-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.provider-cloud span,
.payment-cloud span {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #dedde7;
  background: rgba(255, 255, 255, .05);
  font-size: 12px;
  font-weight: 600;
}

.payment-cloud {
  margin: 0 0 24px;
}

.payment-cloud span {
  min-width: 120px;
  border-color: var(--line-dark);
  color: #2b2d38;
  background: #fff;
  box-shadow: 0 7px 20px rgba(20, 18, 35, .05);
}

.payment-cloud span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  transform: rotate(45deg);
  background: var(--violet);
  content: "";
}

.note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--violet);
  border-radius: 0 15px 15px 0;
  color: #555765;
  background: rgba(103, 36, 169, .07);
  font-size: 13px;
}

.note strong {
  color: var(--ink-dark);
}

.withdrawal-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: start;
  gap: 22px;
}

.side-card {
  padding: 29px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(150deg, #402064, #171321);
  box-shadow: var(--shadow);
}

.side-card h3 {
  margin: 0 0 13px;
  font-size: 25px;
}

.side-card p {
  margin: 0 0 18px;
  color: #c8c5d2;
}

.side-card ul {
  margin: 0;
  padding-left: 19px;
  color: #d9d7df;
}

.side-card li + li {
  margin-top: 8px;
}

.security-grid {
  grid-template-columns: repeat(3, 1fr);
}

.security-card {
  min-height: 250px;
}

.security-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(103, 36, 169, .24);
  border-radius: 15px;
  color: var(--violet);
  background: rgba(103, 36, 169, .07);
  font-size: 19px;
  font-weight: 800;
}

.security-card p {
  margin: 0;
  color: #646674;
}

.mobile-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  border: 1px solid rgba(39, 226, 219, .19);
  border-radius: 31px;
  background: linear-gradient(135deg, #1d1230, #10101b);
  box-shadow: var(--shadow);
}

.mobile-panel__copy {
  padding: clamp(30px, 5vw, 58px);
}

.mobile-panel__copy h2 {
  margin-bottom: 18px;
}

.mobile-panel__copy p {
  margin: 0 0 25px;
  color: var(--ink-muted);
}

.phone-art {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(39, 226, 219, .2), transparent 38%),
    repeating-linear-gradient(135deg, transparent 0 36px, rgba(255, 255, 255, .025) 36px 37px);
}

.phone {
  position: absolute;
  width: 230px;
  height: 410px;
  top: 45px;
  left: 50%;
  padding: 12px;
  transform: translateX(-50%) rotate(5deg);
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 38px;
  background: #07060c;
  box-shadow: 0 34px 65px rgba(0, 0, 0, .45);
}

.phone::before {
  position: absolute;
  z-index: 2;
  width: 75px;
  height: 19px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050409;
  content: "";
}

.phone__screen {
  height: 100%;
  overflow: hidden;
  padding: 44px 15px 15px;
  border-radius: 27px;
  background: linear-gradient(160deg, #2c1749, #10121f);
}

.phone__logo {
  display: block;
  margin-bottom: 21px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}

.phone__hero {
  height: 90px;
  margin-bottom: 12px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--violet), #182b45 65%, var(--cyan));
}

.phone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone__grid i {
  display: block;
  height: 68px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .09);
}

.phone__cta {
  height: 34px;
  margin-top: 12px;
  border-radius: 99px;
  background: var(--cyan);
}

.responsible {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background: rgba(255, 255, 255, .04);
}

.responsible__age {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  box-shadow: inset 0 0 0 9px rgba(255, 79, 140, .08);
}

.responsible h2 {
  margin-bottom: 8px;
  font-size: clamp(29px, 3vw, 40px);
}

.responsible p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: regsteps;
}

.step-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  counter-increment: regsteps;
}

.step-card::before {
  display: grid;
  width: 51px;
  height: 51px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--violet);
  content: counter(regsteps, decimal-leading-zero);
  font-size: 13px;
  font-weight: 800;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.step-card p {
  margin: 0;
  color: #656674;
}

.steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.faq-list {
  display: grid;
  max-width: 930px;
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 68px;
  padding: 17px 21px;
  grid-template-columns: 1fr 35px;
  align-items: center;
  gap: 18px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-question span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--cyan);
  font-size: 20px;
  transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 78px 22px 21px;
  color: var(--ink-muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.final-cta {
  padding: 0 0 clamp(75px, 9vw, 115px);
  background: #0d0c17;
}

.final-cta__panel {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 280px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(39, 226, 219, .28);
  border-radius: 31px;
  background:
    radial-gradient(circle at 80% 25%, rgba(39, 226, 219, .15), transparent 30%),
    linear-gradient(135deg, #351a56, #11101e 68%);
}

.final-cta__panel::after {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 25%;
  bottom: -130px;
  transform: rotate(45deg);
  border: 24px solid rgba(255, 255, 255, .05);
  border-radius: 44px;
  content: "";
}

.final-cta h2 {
  max-width: 680px;
  margin-bottom: 12px;
}

.final-cta p {
  max-width: 720px;
  margin: 0;
  color: #c6c4d0;
}

.site-footer {
  padding: 52px 0 88px;
  border-top: 1px solid var(--line);
  background: #05050b;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.footer-copy {
  max-width: 710px;
  margin-top: 18px;
  color: #858493;
  font-size: 12px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 32px;
}

.footer-nav a {
  color: #b4b3bf;
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #74727f;
  font-size: 11px;
}

.footer-18 {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--coral);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 155px 1fr auto;
    gap: 14px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .header-actions .button--ghost {
    display: none;
  }

  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header,
  .header-inner {
    height: 62px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-actions .button--ghost {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-banner {
    min-height: 440px;
    grid-template-columns: 1fr;
  }

  .hero-banner__copy {
    width: 64%;
    padding: 38px;
  }

  .hero-banner__art {
    inset: 0 0 0 27%;
  }

  .hero-banner__art::after {
    background: linear-gradient(90deg, #171024 0%, rgba(23, 16, 36, .85) 22%, rgba(23, 16, 36, .06) 70%);
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .snapshot-grid,
  .bonus-layout,
  .withdrawal-grid,
  .mobile-panel {
    grid-template-columns: 1fr;
  }

  .bonus-ticket {
    position: relative;
    top: auto;
  }

  .security-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .phone-art {
    min-height: 430px;
  }

  .responsible {
    grid-template-columns: 110px 1fr;
  }

  .responsible .button {
    grid-column: 2;
    width: max-content;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .age-bar {
    display: none;
  }

  .brand {
    gap: 7px;
    font-size: 17px;
  }

  .brand__mark {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    border-radius: 8px 13px 8px 13px;
  }

  .brand__mark::before {
    height: 15px;
    top: 4px;
    left: 7px;
  }

  .brand__mark::after {
    width: 10px;
    right: 4px;
    bottom: 5px;
  }

  .header-actions .button--small {
    min-height: 39px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: 41px;
  }

  .hero-banner {
    min-height: 550px;
    align-items: end;
    border-radius: 24px;
  }

  .hero-banner__copy {
    width: 100%;
    padding: 270px 23px 25px;
    background: linear-gradient(0deg, #171024 0%, rgba(23, 16, 36, .98) 67%, rgba(23, 16, 36, .05) 100%);
  }

  .hero-banner__art {
    inset: 0;
    height: 320px;
  }

  .hero-banner__art::after {
    background: linear-gradient(0deg, #171024 0%, rgba(23, 16, 36, 0) 54%);
  }

  .hero-banner__art img {
    object-position: 69% center;
  }

  .hero-banner h2 {
    font-size: 38px;
  }

  .hero-banner__copy > p {
    font-size: 14px;
  }

  .hero-banner .button {
    width: 100%;
  }

  .hero-banner__meta {
    gap: 6px 13px;
    font-size: 10px;
  }

  .hero__intro {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__main-cta .button {
    width: 100%;
  }

  .strip-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-tabs {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
  }

  .game-tabs button {
    flex: 1 0 auto;
  }

  .game-grid {
    gap: 10px;
  }

  .game-card {
    min-height: 145px;
    padding: 13px;
    border-radius: 16px;
  }

  .game-card strong {
    font-size: 13px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section h2 {
    font-size: 34px;
  }

  .section-heading > p:not(.kicker),
  .section-heading > div + p {
    font-size: 15px;
  }

  .review-grid,
  .feature-grid,
  .promo-grid,
  .catalog-grid,
  .security-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .verdict-card,
  .review-card,
  .feature-card,
  .promo-card,
  .security-card,
  .bonus-ticket,
  .catalog-card,
  .side-card,
  .step-card {
    padding: 24px;
    border-radius: 21px;
  }

  .promo-card,
  .security-card,
  .step-card {
    min-height: auto;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .payment-cloud span {
    min-width: calc(50% - 5px);
    flex: 1 0 calc(50% - 5px);
  }

  .phone-art {
    min-height: 390px;
  }

  .phone {
    width: 205px;
    height: 370px;
    top: 28px;
  }

  .responsible {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
    padding: 25px;
  }

  .responsible__age {
    width: 78px;
    height: 78px;
    font-size: 24px;
  }

  .responsible .button {
    grid-column: auto;
    width: 100%;
  }

  .faq-question {
    min-height: 64px;
    padding: 15px 16px;
    grid-template-columns: 1fr 32px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 16px 19px;
    font-size: 14px;
  }

  .final-cta__panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .final-cta__panel .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }

  .brand {
    font-size: 15px;
  }

  .header-actions .button--small {
    padding-inline: 11px;
    letter-spacing: .02em;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-banner {
    min-height: 570px;
  }

  .hero-banner__copy {
    padding-top: 290px;
  }

  .game-card::before {
    right: -45px;
  }

  .data-table {
    min-width: 520px;
  }
}

@media (max-width: 340px) {
  .hero-banner h2 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
