:root {
  --bg: #0b0e26;
  --bg-deep: #07091b;
  --panel: #121733;
  --panel-2: #171d40;
  --panel-3: #202752;
  --line: #2a315d;
  --line-soft: rgba(255, 255, 255, .09);
  --text: #f7f8ff;
  --muted: #9ca5cf;
  --green: #21c99a;
  --green-light: #5ee5bd;
  --green-dark: #11966f;
  --purple: #8451d9;
  --orange: #ff8b45;
  --yellow: #ffd04a;
  --sidebar: 226px;
  --topbar: 74px;
  --content: 1220px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 55px rgba(0, 0, 0, .22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 7%, rgba(65, 69, 157, .16), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

::selection { color: #071710; background: var(--green-light); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #071710;
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 1300;
  top: 0;
  right: 0;
  left: var(--sidebar);
  height: 3px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #5fe0dc);
}

.sidebar {
  position: fixed;
  z-index: 1200;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: var(--sidebar);
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: #0f1330;
  box-shadow: 14px 0 45px rgba(0, 0, 0, .18);
}

.sidebar__brand {
  display: flex;
  min-height: var(--topbar);
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(135deg, #3745aa, #2a3182);
}

.sidebar__brand img { width: 164px; height: auto; }

.sidebar__nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  padding: 18px 12px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.sidebar__link {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 13px;
  padding: 0 13px;
  color: #aeb6dc;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.sidebar__link::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -12px;
  width: 3px;
  content: "";
  border-radius: 0 3px 3px 0;
  background: var(--green);
  opacity: 0;
}

.sidebar__link svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}

.sidebar__link:hover,
.sidebar__link.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(33, 201, 154, .17), rgba(33, 201, 154, .04));
}

.sidebar__link:hover { transform: translateX(2px); }
.sidebar__link.is-active::before { opacity: 1; }
.sidebar__link.is-active svg { color: var(--green); }

.sidebar__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  margin: 0 12px 12px;
  padding: 12px 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.age-badge {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #ef5d61;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.topbar {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: var(--sidebar);
  display: flex;
  min-height: var(--topbar);
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--sidebar) - var(--content)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(11, 14, 38, .88);
  backdrop-filter: blur(18px);
}

.topbar__status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c9cfea;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.topbar__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 201, 154, .13);
}

.topbar__actions { display: flex; align-items: center; gap: 10px; }
.topbar__mobile-brand, .menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible { outline: 3px solid rgba(94, 229, 189, .45); outline-offset: 3px; }

.button--primary {
  color: #061c15;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  box-shadow: 0 10px 28px rgba(33, 201, 154, .19);
}

.button--primary:hover { box-shadow: 0 14px 34px rgba(33, 201, 154, .28); }
.button--ghost { color: #e8eafa; background: rgba(255, 255, 255, .05); border-color: var(--line); }
.button--outline { color: var(--green-light); background: transparent; border-color: #3a477c; }
.button--outline:hover { border-color: var(--green); background: rgba(33, 201, 154, .08); }
.button--compact { min-height: 42px; padding-inline: 18px; }
.button--large { min-height: 52px; padding: 14px 25px; font-size: 15px; }
.button--full { width: 100%; }

.page-shell {
  width: calc(100% - var(--sidebar));
  max-width: calc(var(--content) + 72px);
  margin-left: var(--sidebar);
  padding: calc(var(--topbar) + 24px) 36px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, .82fr);
  gap: 16px;
  max-width: var(--content);
  margin: 0 auto;
}

.hero__main {
  position: relative;
  display: flex;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid rgba(107, 121, 215, .28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 35%, rgba(73, 207, 178, .21), transparent 28%),
    radial-gradient(circle at 85% 100%, rgba(88, 54, 188, .45), transparent 45%),
    linear-gradient(135deg, #151b47 0%, #1c2052 50%, #28134e 100%);
  box-shadow: var(--shadow);
}

.hero__main::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 23px 23px;
  opacity: .13;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  width: 62%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 0 48px 48px;
}

.eyebrow, .section-kicker {
  color: var(--green-light);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(33, 201, 154, .12); }

.hero h1 {
  max-width: 570px;
  margin: 16px 0 15px;
  font-size: clamp(42px, 4vw, 68px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 span { color: var(--green-light); }
.hero__copy > p { max-width: 555px; margin: 0; color: #c8ceea; font-size: 16px; line-height: 1.65; }

.hero__offer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0;
}

.hero__offer strong { color: #fff; font-size: 30px; font-weight: 900; letter-spacing: -.03em; }
.hero__offer span { color: var(--yellow); font-size: 18px; font-weight: 850; }
.hero__actions { display: flex; align-items: center; gap: 18px; }
.text-link { color: #e6e8f8; font-size: 14px; font-weight: 750; text-underline-offset: 4px; }
.hero__copy small { margin-top: 14px; color: #8992bb; font-size: 11px; }

.hero__character {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: -42px;
  width: min(43%, 360px);
  height: auto;
  filter: drop-shadow(0 24px 25px rgba(0, 0, 0, .35));
}

.hero__glow {
  position: absolute;
  right: 40px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(94, 229, 189, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(94, 229, 189, .03), 0 0 0 80px rgba(94, 229, 189, .02);
}

.hero__promos { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }

.mini-banner {
  position: relative;
  min-height: 237px;
  overflow: hidden;
  border: 1px solid rgba(107, 121, 215, .26);
  border-radius: 20px;
  background: #11162f;
}

.mini-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(7, 10, 28, .95) 0%, rgba(7, 10, 28, .62) 48%, rgba(7, 10, 28, .06) 100%);
}

.mini-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mini-banner--cashback > img { object-position: 61% center; }
.mini-banner--mystery > img { object-position: 44% center; }

.mini-banner__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 76%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 25px;
}

.mini-banner__copy span { color: var(--green-light); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.mini-banner__copy strong { margin: 5px 0 14px; font-size: 23px; line-height: 1.15; letter-spacing: -.025em; }
.mini-banner__copy a { color: #fff; font-size: 13px; font-weight: 800; text-decoration: none; }

.fact-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--content);
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.fact-strip > div { display: flex; min-width: 0; align-items: center; gap: 10px; padding: 15px 18px; border-right: 1px solid var(--line); }
.fact-strip > div:last-child { border-right: 0; }
.fact-strip strong { color: var(--green-light); font-size: 20px; line-height: 1; white-space: nowrap; }
.fact-strip span { color: #abb3d6; font-size: 11px; font-weight: 700; line-height: 1.3; }

.jump-nav {
  display: flex;
  max-width: var(--content);
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  padding: 9px;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(18, 23, 51, .64);
  scrollbar-width: none;
}

.jump-nav::-webkit-scrollbar { display: none; }
.jump-nav span { padding: 0 10px; color: #747ea9; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.jump-nav a { padding: 7px 12px; color: #c9cfea; border-radius: 8px; font-size: 12px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.jump-nav a:hover { color: #fff; background: var(--panel-3); }

.content-section {
  max-width: var(--content);
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 30px;
}

.section-heading h2, .feature-banner h2, .app-section h2, .closing-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.section-heading > p { margin: 0; color: var(--muted); font-size: 15px; }
.section-heading--with-action { grid-template-columns: 1fr auto; align-items: center; }
.section-heading--small h2 { font-size: clamp(28px, 2.5vw, 39px); }
.section-intro { max-width: 850px; margin: -12px 0 26px; color: var(--muted); }

.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr); gap: 34px; align-items: start; }
.article-copy p { margin: 0 0 18px; color: #cbd0e8; }
.article-copy strong { color: #fff; }
.article-copy h3 { margin: 0 0 18px; font-size: 23px; line-height: 1.25; }
.article-copy--compact { padding: 12px 4px; }

.note-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 22px;
  padding: 17px 18px;
  color: #bfc6e4;
  border: 1px solid rgba(33, 201, 154, .28);
  border-radius: 12px;
  background: rgba(33, 201, 154, .07);
}

.note-box p { margin: 0; font-size: 13px; line-height: 1.6; }
.note-box__icon { display: inline-flex; width: 25px; height: 25px; flex: 0 0 25px; align-items: center; justify-content: center; color: #062118; border-radius: 50%; background: var(--green); font-size: 13px; font-weight: 900; }
.note-box--purple { border-color: rgba(132, 81, 217, .4); background: rgba(132, 81, 217, .09); }
.note-box--purple .note-box__icon { color: #fff; background: var(--purple); }
.note-box code { color: var(--yellow); font-size: 13px; font-weight: 800; }

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.table-wrap table { width: 100%; min-width: 540px; border-collapse: collapse; }
.table-wrap caption { padding: 17px 20px; color: #fff; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 850; text-align: left; }
.table-wrap th, .table-wrap td { padding: 13px 17px; border-bottom: 1px solid rgba(255, 255, 255, .07); font-size: 13px; text-align: left; vertical-align: top; }
.table-wrap tr:last-child th, .table-wrap tr:last-child td { border-bottom: 0; }
.table-wrap th { color: #f0f2ff; font-weight: 750; }
.table-wrap td { color: #adb6d8; }
.table-wrap td strong { color: var(--green-light); }
.table-wrap thead th { color: #8f99c3; background: rgba(255, 255, 255, .03); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.table-wrap--summary table { min-width: 0; }
.table-wrap--summary th { width: 39%; color: #8f99c3; }
.table-wrap--wide table { min-width: 850px; }
.table-wrap--wide td { text-align: center; }

.game-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px; }
.game-card { min-width: 0; text-decoration: none; }
.game-card__media { position: relative; display: block; aspect-ratio: 1; margin-bottom: 10px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 13px; background: var(--panel-2); }
.game-card__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 60%, rgba(4, 6, 20, .7)); opacity: .35; }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; transition: filter .2s ease, transform .25s ease; }
.game-card strong { display: block; overflow: hidden; color: #f5f6ff; font-size: 12px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.game-card > span:last-child { display: block; margin-top: 2px; overflow: hidden; color: #828cb7; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.play-button { position: absolute; z-index: 3; top: 50%; left: 50%; display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; color: #061d16; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(33, 201, 154, .17); font-size: 13px; opacity: 0; transform: translate(-50%, -35%) scale(.8); transition: opacity .2s ease, transform .2s ease; }
.game-card:hover .game-card__media img { filter: brightness(.55); transform: scale(1.06); }
.game-card:hover .play-button { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.game-card:hover strong { color: var(--green-light); }

.category-list { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.category-list div { padding: 18px; border-right: 1px solid var(--line); }
.category-list div:last-child { border-right: 0; }
.category-list strong { display: block; margin-bottom: 4px; color: var(--green-light); font-size: 13px; }
.category-list span { display: block; color: #9ca5ca; font-size: 11px; line-height: 1.5; }

.logo-row { display: grid; grid-template-columns: repeat(6, minmax(100px, 1fr)); align-items: center; gap: 1px; margin-top: 12px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--line); }
.logo-row img { width: 100%; height: 62px; padding: 19px; object-fit: contain; background: var(--panel); filter: grayscale(1) brightness(1.6); opacity: .75; }

.bonus-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; counter-reset: item; }
.bonus-steps article { position: relative; min-height: 235px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(145deg, var(--panel-2), #10152f); }
.bonus-steps article::after { position: absolute; right: -23px; bottom: -54px; width: 145px; height: 145px; content: ""; border: 25px solid rgba(33, 201, 154, .05); border-radius: 50%; }
.bonus-steps__number { position: absolute; top: 19px; right: 23px; color: rgba(255, 255, 255, .06); font-size: 58px; font-weight: 950; line-height: 1; }
.bonus-steps__label { display: block; margin-bottom: 31px; color: var(--green-light); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.bonus-steps strong { display: block; margin-bottom: 10px; font-size: 29px; letter-spacing: -.035em; line-height: 1.1; }
.bonus-steps p { max-width: 360px; margin: 0; color: #9da6ca; font-size: 13px; }

.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 20px; align-items: start; }
.two-column--cashback { margin-top: 0; }
.plain-panel { padding: 25px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.plain-panel h3 { margin: 0 0 18px; font-size: 21px; }

.number-list { display: grid; gap: 12px; margin: 0 0 22px; padding: 0; list-style: none; }
.number-list li { display: flex; align-items: flex-start; gap: 12px; }
.number-list li > span { display: flex; width: 29px; height: 29px; flex: 0 0 29px; align-items: center; justify-content: center; color: #071c16; border-radius: 8px; background: var(--green); font-size: 11px; font-weight: 900; }
.number-list strong { display: block; color: #f6f7ff; font-size: 13px; }
.number-list p { margin: 2px 0 0; color: #929cc2; font-size: 12px; line-height: 1.5; }

.feature-banner {
  position: relative;
  display: flex;
  max-width: var(--content);
  min-height: 390px;
  align-items: center;
  margin: 92px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-banner::after { position: absolute; inset: 0; z-index: 1; content: ""; background: linear-gradient(90deg, rgba(8, 11, 31, .93) 10%, rgba(8, 11, 31, .5) 49%, rgba(8, 11, 31, .06) 76%); }
.feature-banner__content { position: relative; z-index: 2; width: 52%; padding: 48px; }
.feature-banner__content p { max-width: 550px; margin: 17px 0 24px; color: #c5cbe5; }
.feature-banner--loyalty > img { object-fit: contain; background: #10142c; }
.feature-banner--loyalty::after { background: linear-gradient(90deg, rgba(8, 11, 31, .1), rgba(8, 11, 31, .8) 35%, rgba(8, 11, 31, .88) 65%, rgba(8, 11, 31, .1)); }
.feature-banner__content--center { width: 56%; margin: auto; text-align: center; }
.feature-banner__content--center p { margin-right: auto; margin-left: auto; }
.content-section--after-banner { padding-top: 28px; }

.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: #adb6d7; font-size: 13px; line-height: 1.55; }
.check-list li::before { position: absolute; top: .12em; left: 0; display: flex; width: 18px; height: 18px; align-items: center; justify-content: center; content: "✓"; color: #071c16; border-radius: 50%; background: var(--green); font-size: 10px; font-weight: 900; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.case-card { display: flex; min-height: 280px; flex-direction: column; align-items: center; padding: 18px 18px 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: linear-gradient(160deg, var(--panel-2), var(--panel)); text-align: center; }
.case-card img { width: 170px; margin: -5px auto -6px; filter: drop-shadow(0 17px 20px rgba(0, 0, 0, .28)); transition: transform .25s ease; }
.case-card:hover img { transform: translateY(-5px) scale(1.04); }
.case-card > span { margin-bottom: 4px; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.case-card > strong { font-size: 21px; }
.case-card p { margin: 3px 0 0; color: #959fc5; font-size: 12px; }
.case-card--common > span { color: #59e598; }
.case-card--rare > span { color: #bb7fff; }
.case-card--epic > span { color: #ff7b87; }

.inline-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.inline-steps > div { position: relative; padding: 21px; border-right: 1px solid var(--line); }
.inline-steps > div:last-child { border-right: 0; }
.inline-steps > div > span { display: flex; width: 26px; height: 26px; align-items: center; justify-content: center; margin-bottom: 13px; color: var(--green-light); border: 1px solid rgba(33, 201, 154, .4); border-radius: 8px; font-size: 10px; font-weight: 900; }
.inline-steps strong { display: block; font-size: 13px; }
.inline-steps p { margin: 4px 0 0; color: #929cc1; font-size: 11px; line-height: 1.5; }
.center-action { display: flex; justify-content: center; margin-top: 22px; }

.level-table .level-pill { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; color: #071b15; border-radius: 8px; background: var(--green); font-weight: 900; }
.level-table .level-pill--top { color: #241400; background: var(--yellow); }
.table-note { margin: 13px 2px 0; color: #7f89b2; font-size: 11px; }

.vip-cards { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-bottom: 16px; }
.vip-cards article { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); text-align: center; }
.vip-cards img { width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; }
.vip-cards strong { display: block; margin-top: 10px; font-size: 14px; }
.vip-cards span { display: block; margin-bottom: 12px; color: var(--muted); font-size: 11px; }

.promo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.promo-card { position: relative; min-height: 390px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.promo-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 24%, rgba(6, 8, 25, .68) 54%, rgba(6, 8, 25, .98) 77%); }
.promo-card > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 23px; }
.promo-card span { color: var(--green-light); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.promo-card h3 { margin: 4px 0 6px; font-size: 19px; }
.promo-card p { margin: 0 0 12px; color: #afb6d5; font-size: 11px; line-height: 1.5; }
.promo-card a { color: #fff; font-size: 11px; font-weight: 850; text-decoration: none; }

.payment-logos { display: grid; grid-template-columns: repeat(10, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--line); }
.payment-logos div { display: flex; height: 74px; align-items: center; justify-content: center; padding: 20px 15px; background: #fff; }
.payment-logos img { width: 100%; max-width: 72px; max-height: 32px; }

.app-section {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1fr);
  max-width: var(--content);
  min-height: 560px;
  margin: 92px auto 0;
  overflow: hidden;
  border: 1px solid rgba(132, 81, 217, .4);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 70%, rgba(33, 201, 154, .2), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(132, 81, 217, .25), transparent 32%),
    linear-gradient(135deg, #111635, #171536);
  box-shadow: var(--shadow);
}

.app-section__visual { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 560px; overflow: hidden; }
.app-section__orb { position: absolute; bottom: -220px; left: 50%; width: 520px; height: 520px; border: 1px solid rgba(94, 229, 189, .2); border-radius: 50%; box-shadow: 0 0 0 50px rgba(94, 229, 189, .03), 0 0 0 100px rgba(94, 229, 189, .02); transform: translateX(-50%); }
.phone { position: relative; z-index: 2; width: 260px; height: 495px; margin-bottom: -60px; padding: 10px; border: 2px solid #566195; border-radius: 39px; background: #080b21; box-shadow: 0 30px 60px rgba(0, 0, 0, .45); transform: rotate(-4deg); }
.phone__speaker { position: absolute; z-index: 3; top: 17px; left: 50%; width: 74px; height: 18px; border-radius: 10px; background: #07091b; transform: translateX(-50%); }
.phone__screen { display: flex; height: 100%; flex-direction: column; align-items: center; padding: 50px 14px 18px; overflow: hidden; border-radius: 30px; background: linear-gradient(#343e9e, #10152f 37%); }
.phone__screen > img { width: 135px; height: auto; margin-bottom: 32px; }
.phone__offer { color: #fff; font-size: 17px; font-weight: 900; }
.phone__games { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin: 18px 0; }
.phone__games img { width: 88px; border-radius: 9px; }
.phone__button { width: 100%; margin-top: 4px; padding: 9px; color: #062017; border-radius: 9px; background: var(--green); font-size: 11px; font-weight: 900; text-align: center; }
.app-section__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 56px 58px 56px 40px; }
.app-section__content > p { max-width: 610px; margin: 18px 0 23px; color: #bcc4e2; }
.app-section__actions { display: flex; align-items: center; gap: 12px; margin-top: 25px; }
.app-section__actions > a:first-child { display: inline-flex; transition: opacity .2s ease; }
.app-section__actions > a:first-child:hover { opacity: .8; }

.account-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-card { display: flex; min-height: 100%; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 15px; background: var(--panel); }
.process-card__tag { align-self: flex-start; padding: 4px 9px; color: var(--green-light); border: 1px solid rgba(33, 201, 154, .25); border-radius: 20px; background: rgba(33, 201, 154, .06); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.process-card h3 { margin: 14px 0 20px; font-size: 22px; }
.process-card .number-list { flex: 1; }
.process-card > p { margin: -6px 0 20px; color: #9ca5c9; font-size: 13px; }
.process-card--kyc { background: linear-gradient(160deg, rgba(132, 81, 217, .14), var(--panel) 45%); }
.document-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.document-list li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.document-list li > span { color: var(--purple); font-size: 11px; font-weight: 900; }
.document-list strong { display: block; font-size: 12px; }
.document-list p { margin: 2px 0 0; color: #8f98bd; font-size: 11px; line-height: 1.45; }

.license-layout { display: grid; grid-template-columns: 1.35fr .65fr; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.license-layout__content { padding: 42px; }
.license-layout__content h2 { margin: 8px 0 18px; font-size: clamp(30px, 3vw, 44px); letter-spacing: -.045em; line-height: 1.08; }
.license-layout__content > p { margin: 0; color: #bbc3e0; }
.license-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 27px; border: 1px solid var(--line); border-radius: 12px; }
.license-facts div { padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.license-facts div:nth-child(2n) { border-right: 0; }
.license-facts div:nth-child(n+3) { border-bottom: 0; }
.license-facts span { display: block; color: #818bb4; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.license-facts strong { display: block; margin-top: 3px; font-size: 13px; }
.trust-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 1px; background: var(--line); }
.trust-panel img { width: 100%; height: 100%; min-height: 110px; padding: 28px; object-fit: contain; background: #191f43; filter: grayscale(1); opacity: .8; }
.trust-panel img:last-child { grid-column: 1 / -1; }

.responsible-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 28px; margin-top: 18px; padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: rgba(18, 23, 51, .68); }
.responsible-grid h3 { margin: 7px 0 10px; font-size: 24px; }
.responsible-grid p { margin: 0; color: #9ba5c9; font-size: 13px; }
.limit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; padding: 1px; overflow: hidden; border-radius: 10px; background: var(--line); list-style: none; }
.limit-list li { padding: 13px 15px; background: var(--panel-2); }
.limit-list strong { display: block; color: #f3f5ff; font-size: 12px; }
.limit-list span { color: #8f99bd; font-size: 10px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 56px 22px 2px; cursor: pointer; font-size: 16px; font-weight: 780; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { position: absolute; top: 50%; right: 11px; width: 15px; height: 2px; content: ""; border-radius: 2px; background: var(--green); transition: transform .2s ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--green-light); }
.faq-list details > div { overflow: hidden; }
.faq-list details p { max-width: 920px; margin: -5px 0 22px; color: #aab3d3; font-size: 14px; }

.closing-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: var(--content);
  min-height: 225px;
  align-items: center;
  gap: 30px;
  margin: 92px auto 0;
  padding: 40px 42px 40px 270px;
  overflow: hidden;
  border: 1px solid rgba(33, 201, 154, .28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 100%, rgba(33, 201, 154, .22), transparent 30%),
    linear-gradient(120deg, #1f295e, #19143d);
}

.closing-cta > img { position: absolute; bottom: -150px; left: 25px; width: 225px; }
.closing-cta p { max-width: 560px; margin: 10px 0 0; color: #b5bddb; }

.site-footer {
  width: calc(100% - var(--sidebar));
  max-width: calc(var(--content) + 72px);
  margin: 70px 0 0 var(--sidebar);
  padding: 0 36px 35px;
}

.site-footer__top, .site-footer__links, .site-footer__legal { max-width: var(--content); margin-right: auto; margin-left: auto; }
.site-footer__top { display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 26px; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.site-footer__top img { width: 160px; padding: 8px; border-radius: 8px; background: #3a47a5; }
.site-footer__top p { max-width: 640px; margin: 0; color: #8c96bb; font-size: 12px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 23px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.site-footer__links a { color: #b5bdd7; font-size: 11px; font-weight: 750; text-decoration: none; }
.site-footer__legal { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 15px; padding-top: 20px; }
.site-footer__legal p { margin: 0; color: #727ca4; font-size: 10px; }
.mobile-cta { display: none; }
.sidebar-overlay { display: none; }

@media (max-width: 1260px) {
  :root { --sidebar: 78px; }
  .sidebar__brand { justify-content: center; padding: 0 10px; }
  .sidebar__brand img { width: 50px; height: 50px; object-fit: cover; object-position: left; }
  .sidebar__link { justify-content: center; padding: 0; }
  .sidebar__link span, .sidebar__bottom span:last-child { display: none; }
  .sidebar__link::before { left: -12px; }
  .sidebar__bottom { justify-content: center; padding: 10px 5px; }
  .page-shell, .site-footer { padding-right: 24px; padding-left: 24px; }
  .topbar { padding-right: 24px; padding-left: 24px; }
  .game-grid { grid-template-columns: repeat(6, 1fr); }
  .game-card:nth-child(n+7) { display: none; }
  .payment-logos { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__promos { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .mini-banner { min-height: 205px; }
  .fact-strip { grid-template-columns: repeat(3, 1fr); }
  .fact-strip > div:nth-child(3) { border-right: 0; }
  .fact-strip > div:nth-child(n+4) { border-top: 1px solid var(--line); }
  .section-heading { gap: 26px; }
  .intro-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(5, 1fr); }
  .game-card:nth-child(6) { display: none; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card { min-height: 430px; }
  .vip-cards { grid-template-columns: repeat(3, 1fr); }
  .account-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card--kyc { grid-column: 1 / -1; }
  .document-list { grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
  .license-layout { grid-template-columns: 1fr; }
  .trust-panel { grid-template-columns: repeat(5, 1fr); }
  .trust-panel img, .trust-panel img:last-child { grid-column: auto; min-height: 88px; padding: 20px; }
  .app-section { grid-template-columns: minmax(330px, .8fr) 1fr; }
  .app-section__content { padding: 45px 35px 45px 20px; }
}

@media (max-width: 767px) {
  :root { --sidebar: 0px; --topbar: 64px; }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 68px; }
  .reading-progress { left: 0; }
  .sidebar {
    width: min(82vw, 300px);
    transform: translateX(-105%);
    transition: transform .25s ease;
  }
  body.menu-open .sidebar { transform: translateX(0); }
  .sidebar__brand { justify-content: flex-start; padding: 0 20px; }
  .sidebar__brand img { width: 164px; height: auto; object-fit: contain; }
  .sidebar__link { justify-content: flex-start; padding: 0 13px; }
  .sidebar__link span, .sidebar__bottom span:last-child { display: inline; }
  .sidebar__bottom { justify-content: flex-start; padding: 12px 14px; }
  .sidebar-overlay { position: fixed; z-index: 1150; inset: 0; display: block; visibility: hidden; background: rgba(3, 5, 18, .72); opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
  body.menu-open .sidebar-overlay { visibility: visible; opacity: 1; }
  .topbar { left: 0; padding: 0 14px; }
  .topbar__status { display: none; }
  .topbar__mobile-brand { display: flex; width: 132px; align-items: center; }
  .topbar__mobile-brand img { width: 132px; height: auto; padding: 5px; border-radius: 7px; background: #3542a2; }
  .menu-toggle { display: flex; width: 39px; height: 39px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0; color: #fff; border: 1px solid var(--line); border-radius: 9px; background: var(--panel); }
  .menu-toggle span { width: 17px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .topbar__actions .button--ghost { display: none; }
  .topbar__actions .button--primary { min-height: 38px; padding: 8px 13px; font-size: 11px; }
  .page-shell { width: 100%; max-width: none; margin-left: 0; padding: calc(var(--topbar) + 12px) 14px 0; }
  .hero { display: block; }
  .hero__main { min-height: 550px; border-radius: 18px; }
  .hero__copy { width: 100%; justify-content: flex-start; padding: 32px 24px 245px; }
  .hero h1 { max-width: 100%; font-size: 40px; overflow-wrap: normal; }
  .hero__copy, .hero__copy > p { min-width: 0; max-width: 100%; }
  .hero__copy > p { font-size: 14px; }
  .hero__offer { flex-wrap: wrap; margin: 15px 0; }
  .hero__offer strong { font-size: 26px; }
  .hero__offer span { font-size: 15px; }
  .hero__actions { width: 100%; flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .text-link { text-align: center; }
  .hero__character { right: 50%; bottom: -94px; width: 270px; transform: translateX(50%); }
  .hero__glow { right: 50%; bottom: -130px; width: 280px; height: 280px; transform: translateX(50%); }
  .hero__promos { display: flex; gap: 10px; margin: 11px -14px 0; padding: 0 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .hero__promos::-webkit-scrollbar { display: none; }
  .mini-banner { width: 83vw; min-width: 83vw; min-height: 190px; border-radius: 16px; scroll-snap-align: center; }
  .mini-banner__copy { padding: 20px; }
  .mini-banner__copy strong { font-size: 20px; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .fact-strip > div, .fact-strip > div:nth-child(3) { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .fact-strip > div:nth-child(1), .fact-strip > div:nth-child(2) { border-top: 0; }
  .fact-strip > div:nth-child(2n) { border-right: 0; }
  .fact-strip > div:last-child { grid-column: 1 / -1; justify-content: center; border-right: 0; }
  .jump-nav { margin-right: -14px; margin-left: -14px; border-right: 0; border-left: 0; border-radius: 0; }
  .content-section { padding-top: 68px; }
  .section-heading, .section-heading--with-action { grid-template-columns: 1fr; align-items: start; gap: 15px; margin-bottom: 23px; }
  .section-heading h2, .feature-banner h2, .app-section h2, .closing-cta h2 { font-size: 32px; }
  .section-heading > p { font-size: 13px; }
  .intro-grid, .two-column, .account-grid { grid-template-columns: 1fr; }
  .article-copy p { font-size: 14px; }
  .table-wrap { border-radius: 12px; }
  .table-wrap--summary table { min-width: 510px; }
  .game-grid { display: flex; margin-right: -14px; margin-left: -14px; padding: 0 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .game-grid::-webkit-scrollbar { display: none; }
  .game-card, .game-card:nth-child(n) { display: block; width: 132px; min-width: 132px; scroll-snap-align: start; }
  .category-list { grid-template-columns: repeat(2, 1fr); }
  .category-list div { border-bottom: 1px solid var(--line); }
  .category-list div:nth-child(2) { border-right: 0; }
  .category-list div:nth-child(n+3) { border-bottom: 0; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .bonus-steps { grid-template-columns: 1fr; }
  .bonus-steps article { min-height: 190px; }
  .feature-banner { min-height: 510px; margin-top: 68px; border-radius: 17px; align-items: flex-start; }
  .feature-banner > img { object-position: 70% center; }
  .feature-banner::after { background: linear-gradient(180deg, rgba(8, 11, 31, .96) 5%, rgba(8, 11, 31, .72) 56%, rgba(8, 11, 31, .18)); }
  .feature-banner__content, .feature-banner__content--center { width: 100%; padding: 32px 25px; text-align: left; }
  .feature-banner__content--center p { margin-left: 0; }
  .feature-banner--loyalty > img { object-fit: cover; object-position: center bottom; }
  .feature-banner--loyalty::after { background: linear-gradient(180deg, rgba(8, 11, 31, .98), rgba(8, 11, 31, .58) 56%, rgba(8, 11, 31, .2)); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 235px; }
  .case-card img { width: 150px; }
  .inline-steps { grid-template-columns: 1fr; }
  .inline-steps > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .inline-steps > div:last-child { border-bottom: 0; }
  .vip-cards { display: flex; margin-right: -14px; margin-left: -14px; padding: 0 14px; overflow-x: auto; scrollbar-width: none; }
  .vip-cards article { width: 180px; min-width: 180px; }
  .promo-grid { display: flex; margin-right: -14px; margin-left: -14px; padding: 0 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .promo-card { width: 76vw; min-width: 76vw; min-height: 405px; scroll-snap-align: center; }
  .payment-logos { grid-template-columns: repeat(2, 1fr); }
  .app-section { grid-template-columns: 1fr; margin-top: 68px; }
  .app-section__visual { min-height: 430px; }
  .phone { width: 220px; height: 420px; }
  .phone__games img { width: 72px; }
  .app-section__content { padding: 32px 24px 38px; }
  .app-section__actions { flex-wrap: wrap; }
  .process-card--kyc { grid-column: auto; }
  .document-list { grid-template-columns: 1fr; }
  .license-layout__content { padding: 28px 23px; }
  .license-facts { grid-template-columns: 1fr; }
  .license-facts div, .license-facts div:nth-child(2n), .license-facts div:nth-child(n+3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .license-facts div:last-child { border-bottom: 0; }
  .trust-panel { grid-template-columns: repeat(2, 1fr); }
  .trust-panel img:last-child { grid-column: 1 / -1; }
  .responsible-grid { grid-template-columns: 1fr; padding: 22px; }
  .limit-list { grid-template-columns: 1fr; }
  .faq-list summary { font-size: 14px; }
  .closing-cta { grid-template-columns: 1fr; min-height: 460px; margin-top: 68px; padding: 32px 24px 250px; text-align: center; }
  .closing-cta > img { bottom: -116px; left: 50%; width: 245px; transform: translateX(-50%); }
  .closing-cta .button { align-self: end; }
  .site-footer { width: 100%; max-width: none; margin-left: 0; padding: 0 14px 22px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .site-footer__top .button { justify-self: start; }
  .site-footer__legal { grid-template-columns: 42px 1fr; }
  .site-footer__legal p:last-child { grid-column: 1 / -1; }
  .mobile-cta { position: fixed; z-index: 1050; right: 0; bottom: 0; left: 0; display: block; padding: 9px 14px max(9px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(255, 255, 255, .13); background: rgba(12, 15, 39, .96); backdrop-filter: blur(16px); }
  .mobile-cta a { display: flex; min-height: 45px; align-items: center; justify-content: space-between; padding: 5px 8px 5px 15px; color: #fff; border-radius: 10px; background: var(--panel-2); text-decoration: none; }
  .mobile-cta span { font-size: 12px; font-weight: 800; }
  .mobile-cta strong { padding: 8px 18px; color: #062017; border-radius: 8px; background: var(--green); font-size: 12px; }
}

@media (max-width: 390px) {
  .topbar__mobile-brand { width: 112px; }
  .topbar__mobile-brand img { width: 112px; }
  .hero__copy { padding-right: 20px; padding-left: 20px; }
  .hero h1 { font-size: 35px; }
  .hero__copy > p { font-size: 13px; }
  .button--large { padding-right: 16px; padding-left: 16px; }
}

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