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

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

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

:root {
  --ink: #090a0d;
  --ink-soft: #121319;
  --panel: #18191f;
  --panel-2: #202128;
  --paper: #f3f4ed;
  --paper-2: #e7e9df;
  --white: #ffffff;
  --text: #17181d;
  --muted: #a8abb4;
  --muted-dark: #646871;
  --acid: #d9ff3f;
  --acid-deep: #b5df00;
  --cyan: #5ff3ff;
  --violet: #8b6cff;
  --pink: #ff4fb6;
  --line: rgba(12, 13, 17, 0.15);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(4, 5, 8, 0.2);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Geologica", Arial, 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-inline: 0;
  width: 100%;
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
b {
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.age-strip {
  position: relative;
  z-index: 90;
  min-height: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #050608;
  color: #b7bac2;
  font-size: 0.75rem;
  line-height: 1.35;
}

.age-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 36px;
}

.age-strip b {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font-size: 0.7rem;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(9, 10, 13, 0.87);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-dark);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 76px;
}

.brand {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  color: var(--white);
  font-size: 1.17rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1;
  text-decoration: none;
  transform: skewX(-4deg);
}

.brand__spin {
  color: var(--acid);
}

.brand__skull {
  color: var(--white);
}

.brand i {
  position: absolute;
  right: -14px;
  bottom: -7px;
  width: 43px;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  clip-path: polygon(0 0, 100% 0, 84% 100%, 7% 100%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 27px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: #d4d6dc;
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.72rem;
}

.button--acid {
  background: var(--acid);
  box-shadow: 5px 5px 0 rgba(96, 244, 255, 0.24);
  color: var(--ink);
}

.button--acid:hover {
  background: #e6ff78;
  box-shadow: 8px 8px 0 rgba(96, 244, 255, 0.32);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--cyan);
  background: rgba(95, 243, 255, 0.08);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.menu-backdrop {
  position: fixed;
  z-index: 98;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(3px);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  display: flex;
  width: min(88vw, 390px);
  height: 100dvh;
  flex-direction: column;
  gap: 0;
  padding: 22px;
  overflow-y: auto;
  background: var(--panel);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.45);
  transform: translateX(104%);
  transition: transform 0.27s ease;
}

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

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu__top button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu > a:not(.button) {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  font-size: 1.05rem;
  text-decoration: none;
}

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

.mobile-menu > p {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 15% 30%, rgba(139, 108, 255, 0.13), transparent 30%),
    linear-gradient(115deg, #090a0d 0%, #090a0d 56%, #11131a 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(20px, calc((100vw - var(--container)) / 2));
  width: 1px;
  background: linear-gradient(transparent, rgba(217, 255, 63, 0.38), transparent);
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 30px;
  padding-block: 70px 84px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.eyebrow,
.kicker {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--acid);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 23px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  letter-spacing: -0.068em;
}

.hero h1 em {
  display: block;
  background: linear-gradient(90deg, var(--acid), var(--cyan) 56%, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c5c7ce;
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__proof {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 10px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.hero__proof li {
  padding: 16px 18px 15px 0;
}

.hero__proof li + li {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  color: var(--white);
  font-size: 1.05rem;
}

.hero__proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.microcopy {
  max-width: 580px;
  color: #7e828d;
  font-size: 0.7rem;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 540px;
}

.hero__visual picture,
.hero__visual picture::after {
  position: absolute;
  inset: 0;
}

.hero__visual picture::after {
  background: linear-gradient(90deg, var(--ink) 0%, transparent 27%), linear-gradient(0deg, var(--ink) 0%, transparent 22%);
  content: "";
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.08) contrast(1.03);
}

.hero__orbit {
  position: absolute;
  z-index: 2;
  inset: 10% 1% 12% 5%;
  border: 1px solid rgba(217, 255, 63, 0.21);
  border-radius: 50%;
  pointer-events: none;
}

.hero__orbit span {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 9, 12, 0.85);
  box-shadow: 0 0 30px rgba(95, 243, 255, 0.14);
  color: var(--acid);
  font-size: 0.7rem;
  font-weight: 600;
}

.hero__orbit span:nth-child(1) { top: 6%; left: 13%; }
.hero__orbit span:nth-child(2) { top: 19%; right: 4%; }
.hero__orbit span:nth-child(3) { right: 11%; bottom: 4%; }

.hero__ticket {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 25px;
  width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(18, 19, 25, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: rotate(-2deg);
}

.hero__ticket span,
.hero__ticket strong,
.hero__ticket small {
  display: block;
}

.hero__ticket span {
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__ticket strong {
  margin-block: 6px 3px;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.hero__ticket small {
  color: var(--muted);
  font-size: 0.7rem;
}

.regulation {
  background: var(--acid);
  color: var(--ink);
}

.regulation__grid {
  display: grid;
  min-height: 170px;
  grid-template-columns: 70px 0.9fr 1.35fr;
  align-items: center;
  gap: 34px;
  padding-block: 33px;
}

.regulation__mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 600;
}

.regulation .kicker {
  margin-bottom: 8px;
  color: #4b560c;
}

.regulation h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.regulation p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 128px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.section-heading .kicker {
  margin-bottom: 13px;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.96rem;
  line-height: 1.8;
}

.snapshot,
.review,
.games,
.payments,
.support {
  background: var(--paper);
  color: var(--text);
}

.snapshot .kicker,
.review .kicker,
.games .kicker,
.payments .kicker,
.support .kicker {
  color: #536a00;
}

.facts-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.score-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.score-card__label {
  margin-bottom: auto;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.score-card strong {
  margin-top: 70px;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.score-card p {
  margin-block: 9px 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.score-card__meter {
  height: 7px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.score-card__meter i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--acid), var(--cyan));
}

.score-card small {
  margin-top: 14px;
  color: #757984;
  font-size: 0.65rem;
  line-height: 1.4;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 30px rgba(8, 9, 12, 0.04);
  -webkit-overflow-scrolling: touch;
}

.table-wrap--dark {
  border-color: var(--line-dark);
  background: var(--panel);
  box-shadow: none;
}

.table-wrap--spaced {
  margin-top: clamp(32px, 5vw, 56px);
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.8rem;
  line-height: 1.55;
}

.data-table caption {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.table-wrap--dark .data-table caption {
  border-bottom-color: var(--line-dark);
  color: var(--muted);
}

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

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table thead th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table tbody th {
  width: 27%;
  font-weight: 600;
}

.table-wrap--dark .data-table th,
.table-wrap--dark .data-table td {
  border-bottom-color: var(--line-dark);
  color: #d5d7dd;
}

.table-wrap--dark .data-table tbody th {
  color: var(--white);
}

.review {
  padding-top: 10px;
}

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

.review-card {
  position: relative;
  padding: 35px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.review-card::after {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--card-color);
  content: "";
  filter: blur(5px);
  opacity: 0.16;
}

.review-card--positive { --card-color: var(--acid); }
.review-card--caution { --card-color: var(--violet); }

.review-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--card-color);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
}

.review-card h3 {
  margin-bottom: 22px;
  font-size: 1.55rem;
}

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

.review-card li {
  position: relative;
  padding: 12px 0 12px 23px;
  border-top: 1px solid var(--line);
  color: #4e5158;
  font-size: 0.86rem;
}

.review-card li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-color);
  content: "";
}

.editor-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-top: 22px;
  padding: 28px 34px;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.editor-note span {
  color: #536a00;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editor-note p {
  color: #494c52;
  font-size: 0.87rem;
}

.bonuses,
.account,
.security,
.faq {
  background: var(--ink);
  color: var(--white);
}

.bonuses {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(139, 108, 255, 0.14), transparent 26%),
    var(--ink);
}

.bonuses .section-heading p:last-child,
.account .section-heading p:last-child,
.security .section-heading p:last-child,
.faq .section-heading p:last-child {
  color: var(--muted);
}

.bonus-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.bonus-rail article {
  min-width: 0;
  padding: 24px 20px;
  background: var(--panel);
}

.bonus-rail article:nth-child(even) {
  background: #1d1b29;
}

.bonus-rail span,
.bonus-rail small,
.bonus-rail strong {
  display: block;
}

.bonus-rail span {
  margin-bottom: 28px;
  color: #696d78;
  font-size: 0.68rem;
  font-weight: 600;
}

.bonus-rail small {
  color: var(--acid);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-rail strong {
  margin-block: 4px 8px;
  font-size: clamp(1.1rem, 1.9vw, 1.65rem);
  line-height: 1.08;
}

.bonus-rail p {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.bonus-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.bonus-checklist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
  list-style: none;
}

.bonus-checklist li {
  padding: 19px;
  background: #111218;
}

.bonus-checklist strong,
.bonus-checklist span {
  display: block;
}

.bonus-checklist strong {
  margin-bottom: 5px;
  color: var(--acid);
  font-size: 0.68rem;
}

.bonus-checklist span {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.bonus-details article {
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 22px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel);
}

.detail-number {
  grid-row: 1 / span 2;
  color: var(--acid);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.bonus-details h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.bonus-details p {
  color: var(--muted);
  font-size: 0.78rem;
}

.game-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.game-filter button {
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  color: #45484f;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
}

.game-filter button:hover,
.game-filter button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--acid);
}

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

.game-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  box-shadow: 0 18px 38px rgba(8, 9, 12, 0.1);
  transform: translateY(-4px);
}

.game-card.is-hidden {
  display: none;
}

.game-card__art {
  position: relative;
  display: flex;
  min-height: 164px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
  overflow: hidden;
  background: var(--game-bg);
  color: var(--white);
}

.game-card__art::before {
  position: absolute;
  inset: -45px -35px auto auto;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.game-card__art::after {
  position: absolute;
  inset: 22px 30px auto auto;
  width: 80px;
  height: 80px;
  border: 13px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.game-card__art span,
.game-card__art b {
  position: relative;
  z-index: 1;
}

.game-card__art span {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.game-card__art b {
  color: var(--acid);
  font-size: 2.5rem;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.game-card > div:last-child {
  padding: 20px;
}

.game-card small {
  color: #737780;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.game-card h3 {
  min-height: 2.1em;
  margin-block: 5px 8px;
  font-size: 1rem;
  line-height: 1.08;
}

.game-card p {
  color: var(--muted-dark);
  font-size: 0.7rem;
}

.game-card--book { --game-bg: linear-gradient(135deg, #18111d, #643579); }
.game-card--pray { --game-bg: linear-gradient(135deg, #101617, #256e74); }
.game-card--bass { --game-bg: linear-gradient(135deg, #13220d, #587719); }
.game-card--slots { --game-bg: linear-gradient(135deg, #17131f, #883a78); }
.game-card--live { --game-bg: linear-gradient(135deg, #0f151b, #245c95); }
.game-card--show { --game-bg: linear-gradient(135deg, #22170d, #8b571b); }
.game-card--jackpot { --game-bg: linear-gradient(135deg, #171017, #9b265c); }
.game-card--loyalty { --game-bg: linear-gradient(135deg, #171919, #506800); }

.provider-note {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 14px 32px;
  margin-top: 24px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.provider-note > div span,
.provider-note > div strong {
  display: block;
}

.provider-note > div span {
  color: #708b00;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.provider-note > div strong {
  margin-top: 5px;
  font-size: 0.9rem;
  line-height: 1.3;
}

.provider-note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.provider-note li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  color: #4d5158;
  font-size: 0.66rem;
  font-weight: 600;
}

.provider-note > p {
  grid-column: 2;
  color: var(--muted-dark);
  font-size: 0.68rem;
}

.jackpot-note {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
  padding: 32px 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.jackpot-note .kicker {
  margin-bottom: 8px;
}

.jackpot-note h3 {
  margin: 0;
  font-size: 1.55rem;
}

.jackpot-note > p {
  color: var(--muted);
  font-size: 0.84rem;
}

.payments {
  background: var(--paper-2);
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.payment-logos > div {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(8, 9, 12, 0.13);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 9, 12, 0.05);
}

.payment-logos img {
  max-width: 86px;
  max-height: 34px;
}

.payment-word {
  color: #13151b;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.payment-word--instant {
  color: #075c57;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.payment-word--jeton { color: #2e65dc; }
.payment-word--astro { color: #2f1c85; font-size: 0.87rem; }

.table-note {
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-size: 0.72rem;
}

.withdrawal-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.withdrawal-flow article {
  min-height: 184px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
}

.withdrawal-flow article > span {
  color: #789500;
  font-size: 0.65rem;
  font-weight: 600;
}

.withdrawal-flow h3 {
  margin-block: 20px 8px;
  font-size: 1rem;
}

.withdrawal-flow p {
  color: var(--muted-dark);
  font-size: 0.73rem;
}

.withdrawal-flow > i {
  color: #92969d;
  font-style: normal;
}

.account__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.step-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.step-list li > span {
  color: var(--acid);
  font-size: 0.7rem;
  font-weight: 600;
}

.step-list h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.step-list p {
  color: var(--muted);
  font-size: 0.82rem;
}

.mobile {
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
}

.mobile::after {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(9, 10, 13, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(9, 10, 13, 0.04), 0 0 0 120px rgba(9, 10, 13, 0.03);
  content: "";
}

.mobile__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.mobile .section-heading p:last-child {
  color: #3e470b;
}

.mobile .kicker {
  color: #4c5a00;
}

.mobile-points {
  display: grid;
  gap: 10px;
}

.mobile-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(9, 10, 13, 0.16);
}

.mobile-points article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 600;
}

.mobile-points h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.mobile-points p {
  color: #47520b;
  font-size: 0.78rem;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.phone {
  position: relative;
  z-index: 2;
  width: 278px;
  height: 552px;
  padding: 10px;
  overflow: hidden;
  border: 2px solid #343641;
  border-radius: 42px;
  background: #090a0d;
  box-shadow: 28px 32px 0 rgba(9, 10, 13, 0.11), 0 30px 70px rgba(9, 10, 13, 0.25);
  color: var(--white);
  transform: rotate(4deg);
}

.phone__top,
.phone__header,
.phone__tabs,
.phone__dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone__top {
  height: 28px;
  padding-inline: 12px;
  color: #b8bbc3;
  font-size: 0.55rem;
}

.phone__top i {
  width: 74px;
  height: 18px;
  border-radius: 12px;
  background: #010102;
}

.phone__header {
  height: 48px;
  padding-inline: 11px;
  border-bottom: 1px solid var(--line-dark);
}

.phone__header b {
  color: var(--acid);
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: -0.07em;
}

.phone__header b span {
  color: var(--white);
}

.phone__hero {
  display: flex;
  height: 160px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 19px;
  border-radius: 0 0 22px 22px;
  background:
    radial-gradient(circle at 75% 30%, rgba(95, 243, 255, 0.4), transparent 25%),
    linear-gradient(135deg, #1f1736, #101217 70%);
}

.phone__hero small {
  color: var(--cyan);
  font-size: 0.52rem;
  letter-spacing: 0.11em;
}

.phone__hero strong {
  margin-block: 5px;
  color: var(--acid);
  font-size: 2.45rem;
  line-height: 0.95;
}

.phone__hero span {
  color: #c2c5cc;
  font-size: 0.67rem;
}

.phone__tabs {
  padding: 16px 10px 10px;
  color: #747883;
  font-size: 0.55rem;
}

.phone__tabs span:first-child {
  color: var(--acid);
}

.phone__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 9px;
}

.phone__cards i {
  height: 75px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2b1c41, #1d5663);
}

.phone__cards i:nth-child(2) { background: linear-gradient(135deg, #3d161f, #8b581e); }
.phone__cards i:nth-child(3) { background: linear-gradient(135deg, #12291e, #467a30); }
.phone__cards i:nth-child(4) { background: linear-gradient(135deg, #161d37, #713963); }

.phone__dock {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  height: 48px;
  padding-inline: 12px;
  border-top: 1px solid var(--line-dark);
  background: #0f1015;
  color: #747883;
  font-size: 0.72rem;
}

.phone__dock b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 1.1rem;
}

.phone-tag {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.phone-tag--one { top: 90px; right: 10px; transform: rotate(-6deg); }
.phone-tag--two { bottom: 90px; left: 0; transform: rotate(4deg); }

.security {
  background:
    radial-gradient(circle at 15% 80%, rgba(95, 243, 255, 0.08), transparent 25%),
    var(--ink);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.security-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel);
}

.security-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(217, 255, 63, 0.45);
  border-radius: 50%;
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 600;
}

.security-grid h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
}

.security-grid p {
  color: var(--muted);
  font-size: 0.77rem;
}

.security .table-wrap {
  border-color: var(--line-dark);
  background: var(--panel);
}

.security .data-table caption {
  border-bottom-color: var(--line-dark);
  color: var(--muted);
}

.security .data-table th,
.security .data-table td {
  border-bottom-color: var(--line-dark);
  color: #ced0d6;
}

.security .data-table tbody th {
  color: var(--white);
}

.responsible {
  background: var(--violet);
  color: var(--ink);
}

.responsible__grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 310px;
  align-items: center;
  gap: 54px;
}

.responsible__badge {
  display: grid;
  width: 135px;
  height: 135px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 10px 10px 0 rgba(9, 10, 13, 0.18);
}

.responsible__badge span,
.responsible__badge small {
  grid-area: 1 / 1;
}

.responsible__badge span {
  margin-top: -18px;
  font-size: 2.3rem;
  font-weight: 600;
}

.responsible__badge small {
  margin-top: 46px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.responsible .kicker {
  color: #251c50;
}

.responsible h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

.responsible p {
  color: #211a42;
  font-size: 0.88rem;
}

.responsible ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(9, 10, 13, 0.25);
  list-style: none;
}

.responsible li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(9, 10, 13, 0.25);
}

.responsible li strong {
  font-size: 0.82rem;
}

.responsible li span {
  color: #2d2358;
  font-size: 0.68rem;
  text-align: right;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.support-grid article {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.support-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
}

.support-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.support-grid p {
  color: var(--muted-dark);
  font-size: 0.76rem;
}

.support-grid small {
  display: block;
  margin-top: 18px;
  color: #708b00;
  font-size: 0.63rem;
  font-weight: 600;
}

.faq {
  border-top: 1px solid var(--line-dark);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 80px;
}

.faq__intro {
  position: sticky;
  top: 120px;
}

.faq__stamp {
  display: grid;
  width: 110px;
  height: 110px;
  margin-top: 40px;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.7;
  text-align: center;
  transform: rotate(-7deg);
}

.faq__stamp span {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.accordion {
  border-top: 1px solid var(--line-dark);
}

.accordion__item {
  border-bottom: 1px solid var(--line-dark);
}

.accordion__item h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.accordion__item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.accordion__item button span {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.accordion__item button span::before,
.accordion__item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease;
}

.accordion__item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__item > div {
  padding: 0 64px 24px 0;
}

.accordion__item > div p {
  color: var(--muted);
  font-size: 0.84rem;
}

.verdict {
  background: var(--acid);
  color: var(--ink);
}

.verdict__box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 45px 80px;
}

.verdict .kicker {
  color: #536300;
}

.verdict h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
}

.verdict__box > p {
  color: #394204;
  font-size: 0.9rem;
}

.verdict__box .button {
  grid-column: 2;
  justify-self: start;
}

.site-footer {
  padding-block: 60px 100px;
  background: #050608;
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.brand--footer {
  font-size: 1.65rem;
}

.footer-top > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.2fr;
  gap: 40px;
  padding-block: 40px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  color: var(--acid);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  color: #a8abb4;
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: #666a74;
  font-size: 0.66rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 0.75rem;
  }

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

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

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

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

  .responsible__grid {
    grid-template-columns: 130px 1fr;
  }

  .responsible__grid ul {
    grid-column: 2;
  }
}

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

  .age-strip__inner span:last-child,
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero,
  .hero__grid {
    min-height: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 60px 0;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(3rem, 9vw, 5.4rem);
  }

  .hero__visual {
    min-height: 530px;
    margin-inline: -16px;
  }

  .hero__visual picture::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 24%), linear-gradient(0deg, var(--ink) 0%, transparent 18%);
  }

  .hero__visual img {
    object-position: 62% center;
  }

  .regulation__grid {
    grid-template-columns: 62px 1fr;
  }

  .regulation__grid > p {
    grid-column: 2;
  }

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

  .facts-layout {
    grid-template-columns: 1fr;
  }

  .score-card {
    min-height: 290px;
  }

  .score-card strong {
    margin-top: 50px;
  }

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

  .jackpot-note,
  .provider-note,
  .account__grid,
  .mobile__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .account__grid,
  .mobile__grid,
  .faq__grid {
    gap: 45px;
  }

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

  .withdrawal-flow > i {
    display: none;
  }

  .phone-stage {
    min-height: 610px;
  }

  .security-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq__intro {
    position: static;
  }

  .faq__stamp {
    display: none;
  }

  .verdict__box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .verdict__box .button {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    z-index: 70;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 15px;
    border: 1px solid var(--line-dark);
    border-radius: 13px;
    background: rgba(12, 13, 17, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
  }

  .mobile-cta div {
    min-width: 0;
  }

  .mobile-cta small,
  .mobile-cta strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-cta small {
    color: var(--acid);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    font-size: 0.7rem;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

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

  .age-strip {
    font-size: 0.68rem;
  }

  .brand {
    font-size: 1.02rem;
  }

  .section {
    padding-block: 72px;
  }

  .hero__grid {
    padding-top: 47px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 14vw, 4.7rem);
    line-height: 0.98;
  }

  .hero__lead {
    font-size: 0.94rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__proof {
    grid-template-columns: 1fr;
  }

  .hero__proof li,
  .hero__proof li + li {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    padding: 11px 0;
    border-left: 0;
  }

  .hero__proof li + li {
    border-top: 1px solid var(--line-dark);
  }

  .hero__proof span {
    margin: 0;
  }

  .hero__visual {
    min-height: 410px;
    margin-inline: -12px;
  }

  .hero__orbit {
    inset: 11% 2% 13% 2%;
  }

  .hero__ticket {
    right: 12px;
    bottom: 18px;
    width: 205px;
  }

  .regulation__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 36px;
  }

  .regulation__grid > p {
    grid-column: auto;
  }

  .regulation__mark {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .review-grid,
  .bonus-details,
  .game-grid,
  .security-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 27px;
  }

  .editor-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .bonus-rail {
    display: flex;
    margin-inline: -12px;
    padding-inline: 12px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .bonus-rail::-webkit-scrollbar {
    display: none;
  }

  .bonus-rail article {
    min-width: min(75vw, 270px);
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .bonus-details article {
    grid-template-columns: 78px 1fr;
  }

  .bonus-checklist {
    grid-template-columns: 1fr;
  }

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

  .game-card__art {
    min-height: 180px;
  }

  .jackpot-note {
    gap: 18px;
    padding: 26px;
  }

  .provider-note {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .provider-note > p {
    grid-column: auto;
  }

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

  .withdrawal-flow {
    grid-template-columns: 1fr;
  }

  .withdrawal-flow article {
    min-height: 0;
  }

  .account__grid {
    gap: 24px;
  }

  .step-list li {
    grid-template-columns: 44px 1fr;
  }

  .mobile__grid {
    gap: 28px;
  }

  .phone-stage {
    min-height: 575px;
  }

  .phone {
    width: 256px;
    height: 520px;
  }

  .phone-tag--one { right: 0; }
  .phone-tag--two { left: 0; }

  .responsible__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .responsible__grid ul {
    grid-column: auto;
  }

  .responsible__badge {
    width: 105px;
    height: 105px;
  }

  .responsible__badge span {
    font-size: 1.8rem;
  }

  .faq__grid {
    gap: 10px;
  }

  .accordion__item button {
    padding: 19px 0;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-grid {
    gap: 28px;
  }

  .mobile-cta .button {
    min-height: 42px;
    padding-inline: 13px;
  }
}

@media (max-width: 390px) {
  .mobile-cta strong {
    max-width: 135px;
  }

  .mobile-cta .button {
    font-size: 0.64rem;
  }

  .phone-tag {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .age-strip,
  .site-header,
  .mobile-menu,
  .menu-backdrop,
  .mobile-cta,
  .hero__visual,
  .hero__actions,
  .game-filter {
    display: none !important;
  }

  body,
  .section,
  .hero,
  .regulation,
  .responsible,
  .verdict,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }

  .hero,
  .hero__grid {
    min-height: 0;
  }

  .hero__grid,
  .account__grid,
  .faq__grid,
  .responsible__grid,
  .verdict__box {
    display: block;
  }
}
