:root {
  --ink: #050607;
  --ink-soft: #15171b;
  --paper: #ffffff;
  --field: #edefF2;
  --line: #d8dbe2;
  --text: #343841;
  --muted: #686e79;
  --mint: #00d997;
  --mint-bright: #00ffad;
  --violet: #9b00ed;
  --red: #d52b1e;
  --red-dark: #9f2018;
  --ivory: #f6f0e2;
  --gold: #b79851;
  --shadow: 0 3px 14px rgba(12, 15, 20, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  background: var(--field);
  overflow-x: clip;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgba(213, 43, 30, 0.025) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(0deg, transparent 0 49.7%, rgba(0, 217, 151, 0.025) 49.7% 50.3%, transparent 50.3%),
    var(--field);
  background-size: 72px 72px;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  width: 100%;
  max-width: none;
  text-wrap: wrap;
}

h1 {
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 650;
}

h3 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 650;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--mint-bright);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 75px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(213, 43, 30, 0.16), transparent 14%, transparent 86%, rgba(0, 217, 151, 0.12)),
    var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 135px;
  display: inline-flex;
  align-items: center;
}

.brand:focus-visible,
.primary-nav > ul a:focus-visible,
.site-footer a:focus-visible,
.geo-toggle:focus-visible,
.geo-menu__link:focus-visible,
.sidebar a:focus-visible,
.button:focus-visible,
.platform-button:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--mint-bright);
  outline-offset: 3px;
}

.primary-nav ul,
.site-footer ul,
.sidebar ul,
.sidebar ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.primary-nav > ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.primary-nav > ul a::before,
.primary-nav > ul a::after,
.site-footer a::before,
.site-footer a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  transition: width 180ms ease;
}

.primary-nav > ul a::before,
.site-footer a::before {
  top: 5px;
  left: 6px;
  background: var(--red);
}

.primary-nav > ul a::after,
.site-footer a::after {
  right: 6px;
  bottom: 5px;
  background: var(--mint-bright);
}

.primary-nav > ul a:hover::before,
.primary-nav > ul a:hover::after,
.primary-nav > ul a:focus-visible::before,
.primary-nav > ul a:focus-visible::after,
.primary-nav > ul a[aria-current="page"]::before,
.primary-nav > ul a[aria-current="page"]::after,
.site-footer a:hover::before,
.site-footer a:hover::after {
  width: 20px;
}

.primary-nav > ul a:hover,
.primary-nav > ul a[aria-current="page"] {
  color: #fff;
}

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

.mobile-nav-actions {
  display: none;
}

.locale-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 4px;
  font-size: 13px;
  font-weight: 750;
}

.locale-badge i {
  width: 25px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--red) 0 33.33%, #fff 33.33% 66.66%, var(--red) 66.66%);
}

.geo-switcher {
  display: flex;
  align-items: center;
}

.geo-toggle {
  min-width: 66px;
  height: 44px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: #0c0f13;
  border: 1px solid var(--mint-bright);
  border-radius: 9px;
  cursor: pointer;
}

.geo-flag {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #fff;
}

.geo-caret {
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--mint-bright);
  border-left: 2px solid var(--mint-bright);
  transform: translateY(2px) rotate(45deg);
  transition: transform 160ms ease;
}

.geo-toggle[aria-expanded="true"] .geo-caret {
  transform: translateY(-2px) rotate(225deg);
}

.geo-menu {
  position: fixed;
  z-index: 110;
  top: 84px;
  left: 50%;
  width: min(calc(100vw - 32px), 720px);
  max-height: calc(100dvh - 100px);
  padding: 12px;
  color: #fff;
  background: #101318;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.48);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(-50%);
}

.geo-menu[hidden] {
  display: none;
}

.geo-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.geo-menu__link,
.site-footer .footer-geo-link {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.geo-menu__link {
  min-height: 48px;
  padding: 8px 11px;
  background: #34383e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.geo-menu__link:hover,
.geo-menu__link:focus-visible {
  color: #fff;
  background: #41464e;
}

.geo-menu__link[aria-current="page"],
.site-footer .footer-geo-link[aria-current="page"] {
  color: #001810;
  background: var(--mint-bright);
  border-color: var(--mint-bright);
}

.geo-code {
  display: none;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 150ms ease, transform 150ms ease;
}

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

.button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.button:active {
  transform: translateY(2px) scale(0.985);
  box-shadow:
    inset 0 2px 0 rgba(0, 0, 0, 0.28),
    inset 0 5px 0 rgba(255, 255, 255, 0.08),
    inset 0 8px 0 rgba(0, 0, 0, 0.08);
  transition-duration: 55ms;
}

.button--main {
  color: var(--ink);
  background: linear-gradient(100deg, var(--mint-bright), #36e7ba);
  box-shadow: 0 6px 18px rgba(0, 255, 173, 0.22);
}

.button--bonus {
  color: #fff;
  background: linear-gradient(100deg, var(--violet), #c000ff);
  box-shadow: 0 6px 18px rgba(155, 0, 237, 0.24);
}

.button--login {
  min-height: 40px;
  padding-inline: 18px;
}

.button--signup {
  min-height: 40px;
  color: #fff;
  background: linear-gradient(100deg, var(--violet), #c000ff);
  box-shadow: 0 6px 18px rgba(155, 0, 237, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 9px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-scrim {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transform-origin: 50% 50%;
  transition: transform 180ms ease, width 180ms ease, background 180ms ease;
}

.page-shell {
  width: min(100%, 1600px);
  margin: 20px auto 0;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1020px) 240px;
  gap: 20px;
  align-items: start;
}

.main-column,
.content-flow,
.content-section,
.section-content,
.section-heading {
  min-width: 0;
  width: 100%;
}

.main-column,
.content-flow {
  display: grid;
  gap: 20px;
}

.sidebar {
  position: sticky;
  top: 95px;
  display: grid;
  gap: 20px;
  max-height: calc(100vh - 115px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.sidebar-card,
.mobile-rail-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.sidebar-title {
  padding: 11px 14px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.sidebar-quick li + li,
.article-nav li + li {
  border-top: 1px solid #eceef2;
}

.sidebar-quick a {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  font-size: 13px;
  transition: color 160ms ease, background 160ms ease;
}

.sidebar-quick a::before,
.article-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(var(--red), var(--mint));
  transform: translateY(-50%);
  transition: height 180ms ease;
}

.sidebar-quick a:hover,
.article-nav a:hover,
.article-nav a[aria-current="true"] {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(213, 43, 30, 0.06), rgba(0, 217, 151, 0.06));
}

.sidebar-quick a:hover::before,
.article-nav a:hover::before,
.article-nav a[aria-current="true"]::before {
  height: 24px;
}

.sidebar-quick i {
  color: var(--red);
  font-style: normal;
  transition: transform 160ms ease, color 160ms ease;
}

.sidebar-quick a:hover i {
  color: var(--mint);
  transform: translateX(3px);
}

.article-nav {
  max-height: 320px;
  overflow-y: auto;
}

.article-nav a {
  position: relative;
  display: block;
  padding: 9px 12px;
  color: #4a4f59;
  font-size: 12px;
  line-height: 1.35;
}

.mobile-rail-card {
  padding: 17px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(213, 43, 30, 0.2), transparent 38%),
    linear-gradient(315deg, rgba(0, 217, 151, 0.14), transparent 42%),
    var(--ink);
}

.mobile-rail-card__icons {
  display: flex;
  gap: 9px;
  margin-bottom: 10px;
}

.mobile-rail-card p {
  font-size: 18px;
  font-weight: 800;
}

.mobile-rail-card span {
  display: block;
  margin: 5px 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.mobile-rail-card .button {
  width: 100%;
  min-height: 40px;
  padding-inline: 14px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 10px;
}

.game-card {
  display: block;
  min-width: 0;
}

.game-card:focus-visible {
  outline: 3px solid var(--mint-bright);
  outline-offset: 3px;
}

.game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 170ms ease, filter 170ms ease;
}

.game-card span {
  display: block;
  margin-top: 5px;
  color: #555b65;
  font-size: 9px;
  line-height: 1.2;
}

.game-card:hover img {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 381px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 42px 30px;
  color: #fff;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-focus-x) var(--hero-focus-y);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 10, 0.94) 0%, rgba(4, 6, 10, 0.75) 42%, rgba(4, 6, 10, 0.18) 75%),
    linear-gradient(0deg, rgba(4, 6, 10, 0.36), transparent 48%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 14px;
  pointer-events: none;
  background:
    linear-gradient(var(--gold), var(--gold)) left top / 36px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left top / 1px 36px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 36px 1px no-repeat,
    linear-gradient(var(--red), var(--red)) right bottom / 1px 36px no-repeat;
  opacity: 0.68;
}

.hero--copy-right {
  justify-content: flex-end;
}

.hero--copy-right::before {
  background:
    linear-gradient(270deg, rgba(4, 6, 10, 0.96) 0%, rgba(4, 6, 10, 0.8) 44%, rgba(4, 6, 10, 0.12) 78%),
    linear-gradient(0deg, rgba(4, 6, 10, 0.3), transparent 50%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(55%, 590px);
}

.hero__copy h1 {
  color: var(--mint-bright);
}

.hero__copy p {
  width: 100%;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.55;
}

.hero__copy > .button,
.hero__copy > .platform-buttons {
  margin-top: 16px;
}

.hero__cutout {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 0;
  width: min(40%, 520px);
  max-height: 96%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-button {
  display: grid;
  grid-template-columns: 26px auto;
  gap: 11px;
  align-items: center;
  width: 190px;
  min-height: 56px;
  padding: 8px 16px;
  color: #fff;
  background: rgba(6, 8, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.platform-button:hover {
  transform: translateY(-2px);
  border-color: var(--mint);
  box-shadow: 0 10px 26px rgba(0, 217, 151, 0.14);
}

.platform-button:active {
  transform: translateY(2px) scale(0.985);
}

.platform-button span,
.platform-button small,
.platform-button strong {
  display: block;
  line-height: 1.1;
}

.platform-button small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.platform-button strong {
  color: #fff;
  font-size: 16px;
}

.content-section {
  position: relative;
  isolation: isolate;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.content-section::before,
.content-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 18px;
  height: 18px;
  opacity: 0.58;
  transition: width 190ms ease, height 190ms ease, opacity 190ms ease;
}

.content-section::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.content-section::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
}

.content-section:hover::before,
.content-section:hover::after {
  width: 42px;
  height: 42px;
  opacity: 1;
}

.section-heading {
  position: relative;
  grid-column: 1 / -1;
  margin-bottom: 20px;
  padding-bottom: 13px;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e7e9ed;
}

.section-heading > span {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  width: 112px;
  height: 3px;
  background:
    linear-gradient(90deg, var(--red) 0 29%, transparent 29% 35%, var(--gold) 35% 64%, transparent 64% 70%, var(--mint) 70% 100%);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(.2, .75, .2, 1);
}

.reveal-seam.is-visible .section-heading > span {
  transform: scaleX(1);
}

.section-content {
  display: flow-root;
}

.section-content > * {
  width: 100%;
  max-width: none;
}

.section-content > * + * {
  margin-top: 20px;
}

.section-content p,
.section-content li,
.faq-answer,
.service-block p {
  font-size: 15px;
  line-height: 23.25px;
}

.section-content h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-content h3 + * {
  margin-top: 0;
}

.source-list,
.steps-thread {
  padding: 0;
  list-style: none;
}

.source-list li,
.steps-thread li {
  position: relative;
  min-height: 28px;
  padding-left: 30px;
}

.source-list li + li,
.steps-thread li + li {
  margin-top: 11px;
}

.source-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--mint);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--red);
  transform: translateY(-50%) rotate(45deg) scale(0.78);
  transition: transform 170ms ease, background 170ms ease;
}

.source-list li:hover::before {
  background: var(--red);
  transform: translateY(-50%) rotate(135deg) scale(0.95);
}

.steps-thread {
  counter-reset: step;
}

.steps-thread li {
  counter-increment: step;
  padding-left: 46px;
}

.steps-thread li::before {
  content: counter(step);
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--ivory);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

.steps-thread li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 27px;
  bottom: -13px;
  width: 5px;
  background: linear-gradient(90deg, var(--red) 0 2px, transparent 2px 3px, var(--mint) 3px 5px);
}

.table-wrap {
  position: relative;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  border: 1px solid #cfd3da;
  border-radius: 5px;
  scrollbar-color: var(--mint) #eceef1;
  scrollbar-width: thin;
}

.table-wrap:focus-visible {
  outline: 3px solid rgba(0, 217, 151, 0.36);
  outline-offset: 2px;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

th,
td {
  padding: 12px 14px;
  vertical-align: middle;
  border-right: 1px solid #e1e3e8;
  border-bottom: 1px solid #e1e3e8;
  font-size: 13px;
  line-height: 1.45;
}

tr > :last-child {
  border-right: 0;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

thead th {
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

tbody tr:nth-child(even) > * {
  background: linear-gradient(90deg, rgba(246, 240, 226, 0.74), rgba(0, 217, 151, 0.035));
}

tbody th {
  position: sticky;
  z-index: 2;
  left: 0;
  min-width: 168px;
  color: var(--ink);
  background: var(--ivory);
  font-weight: 750;
  box-shadow: 3px 0 0 rgba(213, 43, 30, 0.16);
  transition: box-shadow 170ms ease, color 170ms ease;
}

tbody tr:hover > * {
  background-color: rgba(0, 217, 151, 0.07);
}

tbody tr:hover th {
  color: var(--red-dark);
  box-shadow: 6px 0 0 var(--mint);
}

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

.pros-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pros-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
}

.pros-card--positive::after {
  left: 0;
  background: var(--mint);
}

.pros-card--negative::after {
  right: 0;
  background: var(--red);
}

.pros-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 24px rgba(17, 21, 28, 0.11);
}

.pros-card h3 {
  margin: 0 0 16px;
}

.bonus-offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  counter-reset: bonus-offer;
}

.bonus-offer-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  min-width: 0;
  padding: 22px 20px 20px;
  background: linear-gradient(145deg, #fff 42%, rgba(0, 217, 151, 0.055));
  border: 1px solid #d9dde3;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(17, 21, 28, 0.07);
  counter-increment: bonus-offer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bonus-offer-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.bonus-offer-card::before {
  content: counter(bonus-offer, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 26px;
  color: var(--mint-bright);
  background: var(--ink);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.bonus-offer-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--gold) 33% 66%, var(--mint) 66%);
}

.section-content .bonus-offer-card h3 {
  width: calc(100% - 48px);
  margin: 0 48px 13px 0;
  font-size: 17px;
  line-height: 1.35;
}

.section-content .bonus-offer-card p {
  margin: 0;
  padding: 0;
  color: #555b65;
  background: transparent;
  border: 0;
  font-size: 14px;
  line-height: 1.6;
}

.bonus-offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 217, 151, 0.66);
  box-shadow: 0 12px 28px rgba(17, 21, 28, 0.11);
}

.promo-banner {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 30px;
  color: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.promo-banner picture,
.promo-banner picture::after {
  position: absolute;
  inset: 0;
}

.promo-banner picture {
  z-index: -2;
}

.promo-banner picture::after {
  content: "";
  z-index: 1;
}

.promo-banner--copy-left picture::after {
  background: linear-gradient(90deg, rgba(4, 6, 9, 0.96) 0%, rgba(4, 6, 9, 0.74) 45%, rgba(4, 6, 9, 0.08) 78%);
}

.promo-banner--copy-right picture::after {
  background: linear-gradient(270deg, rgba(4, 6, 9, 0.96) 0%, rgba(4, 6, 9, 0.74) 45%, rgba(4, 6, 9, 0.08) 78%);
}

.promo-banner picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x) var(--focus-y);
}

.promo-banner--copy-right {
  justify-content: flex-end;
}

.promo-banner__copy {
  position: relative;
  z-index: 1;
  width: min(54%, 520px);
}

.promo-banner__title {
  color: var(--mint-bright);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.promo-banner__subtitle {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.promo-banner__copy .button {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #d8dce3;
  border-radius: 5px;
  background: #fff;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 43, 30, 0.5);
  box-shadow: 0 7px 20px rgba(15, 18, 24, 0.08);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 13px 16px;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  position: relative;
  width: 26px;
  height: 26px;
  border: 2px solid var(--red);
  background: var(--ivory);
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 4px var(--gold);
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 170ms ease;
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary {
  color: var(--red-dark);
  background: linear-gradient(90deg, rgba(213, 43, 30, 0.06), rgba(0, 217, 151, 0.04));
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 16px 17px;
  border-top: 1px solid #eceef1;
}

.faq-answer > * {
  width: 100%;
  max-width: none;
}

.faq-answer > * + * {
  margin-top: 14px;
}

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

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid var(--ink);
  border-radius: 5px;
}

.section-content .reviews-summary p {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  color: #fff;
  background: var(--ink);
  border: 0;
}

.reviews-summary span,
.reviews-summary small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.reviews-summary strong {
  color: var(--mint-bright);
  font-size: 17px;
}

.review-card {
  padding: 17px;
  background: linear-gradient(135deg, rgba(246, 240, 226, 0.82), #fff 58%);
  border: 1px solid #dedfe3;
  border-left: 4px solid var(--mint);
  border-radius: 5px;
  transition: transform 170ms ease, border-color 170ms ease;
}

.review-card:hover {
  transform: translateY(-3px);
  border-left-color: var(--red);
}

.section-content .review-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
}

.review-card__author {
  color: var(--ink);
  font-weight: 800;
}

.review-card__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7px 12px;
  margin-top: 10px;
  padding-top: 9px;
  color: var(--muted);
  border-top: 1px solid #e2e4e8;
  font-size: 11px;
}

.review-card__facts strong {
  color: var(--ink);
}

.review-card__facts time {
  color: var(--red-dark);
  font-weight: 750;
}

.review-card blockquote {
  margin-top: 10px;
  color: #515660;
  font-size: 14px;
  line-height: 1.55;
}

.author-card,
.responsible-panel {
  padding: 17px 18px;
  border-radius: 5px;
}

.author-card {
  background: var(--ink);
  color: #fff;
  border-left: 4px solid var(--gold);
}

.author-card p {
  color: rgba(255, 255, 255, 0.82);
}

.author-card p + p {
  margin-top: 7px;
}

.author-card strong {
  display: inline-block;
  min-width: 145px;
  color: var(--mint-bright);
}

.responsible-panel {
  background: #f4f6f7;
  border: 1px solid #d5d9df;
  border-left: 4px solid var(--red);
}

.responsible-panel h3 {
  margin-top: 0;
}

.section-cta {
  margin-top: 20px;
}

.section-content > a.button {
  width: fit-content;
  max-width: 100%;
}

.section-content > .section-platform-buttons {
  width: fit-content;
  max-width: 100%;
}

.site-footer {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(213, 43, 30, 0.12), transparent 28%),
    linear-gradient(315deg, rgba(0, 217, 151, 0.1), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(183, 152, 81, 0.07) 47px 48px),
    var(--ink);
}

.site-footer__inner,
.footer-geos,
.footer-bottom {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-inline: 30px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
  gap: 40px;
  padding-top: 38px;
  padding-bottom: 32px;
}

.footer-geos {
  padding-top: 22px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-geo-link {
  min-height: 52px;
  padding: 8px 12px;
  background: #34383e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.site-footer .footer-geo-link:hover,
.site-footer .footer-geo-link:focus-visible {
  color: #fff;
  background: #41464e;
}

.site-footer .footer-geo-link::before,
.site-footer .footer-geo-link::after {
  display: none;
}

.footer-brand p {
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer nav > p {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  position: relative;
  display: inline-block;
  padding: 2px 7px;
  font-size: 13px;
}

.footer-responsible {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.footer-responsible strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 16px;
}

.footer-responsible p {
  font-size: 12px;
  line-height: 1.5;
}

.footer-bottom {
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.service-main,
.not-found {
  width: min(100%, 1080px);
  margin: 20px auto 0;
  padding: 0 30px;
}

.service-block,
.not-found section {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--red-dark);
}

.service-eyebrow {
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-block > h1 {
  margin-top: 7px;
  margin-bottom: 24px;
}

.service-qa {
  padding: 17px 0;
  border-top: 1px solid #e5e7eb;
}

.service-qa h2 {
  font-size: 20px;
  line-height: 1.35;
}

.service-qa p {
  margin-top: 8px;
  width: 100%;
  max-width: none;
}

.not-found {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

.not-found section {
  width: min(100%, 620px);
  text-align: center;
}

.not-found section > p {
  color: var(--red);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.not-found h1 {
  margin-top: 10px;
}

.not-found span {
  display: block;
  margin-top: 12px;
}

.not-found .button {
  margin-top: 20px;
}

@media (max-width: 1359px) {
  .page-shell {
    width: min(100%, 1080px);
    display: block;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 1040px) {
  .site-header__inner {
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .primary-nav > ul a {
    padding-inline: 10px;
    font-size: 12px;
  }

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

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

  .footer-geos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 60px;
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    height: 60px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .site-header__inner {
    padding-inline: 16px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .brand {
    width: 116px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 2;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    width: 20px;
    background: var(--red);
    transform: translate(1px, 5px) rotate(32deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    width: 14px;
    margin-left: 7px;
    background: var(--gold);
    transform: rotate(-18deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    width: 20px;
    background: var(--mint);
    transform: translate(1px, -5px) rotate(-32deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 102;
    top: 60px;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 60px);
    padding: 16px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scaleY(0.96);
    transform-origin: top;
    visibility: hidden;
    transition: transform 190ms ease, opacity 160ms ease, visibility 190ms step-end;
  }

  .menu-scrim {
    position: fixed;
    z-index: 101;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(2, 3, 4, 0.56);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
    visibility: visible;
    transition: transform 190ms ease, opacity 160ms ease, visibility 0s;
  }

  .primary-nav.is-open + .menu-scrim {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .primary-nav ul {
    width: min(100%, 480px);
    margin: 0 auto;
    display: grid;
    gap: 0;
  }

  .primary-nav > ul a {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .mobile-nav-actions {
    width: min(100%, 480px);
    margin: 16px auto 0;
    padding-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding-inline: 14px;
  }

  .header-actions {
    justify-self: end;
    order: 3;
  }

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

  .locale-badge {
    display: none;
  }

  .page-shell,
  .service-main,
  .not-found {
    margin-top: 16px;
    padding-inline: 16px;
  }

  .main-column,
  .content-flow {
    gap: 16px;
  }

  .site-footer__inner,
  .footer-geos,
  .footer-bottom {
    padding-inline: 16px;
  }

  .geo-menu {
    top: 68px;
    max-height: calc(100dvh - 80px);
  }
}

@media (max-width: 820px) and (min-width: 701px) {
  .hero {
    min-height: 0;
    padding: 34px 26px;
  }

  .hero__copy,
  .hero--copy-right .hero__copy {
    width: min(68%, 520px);
  }

  .hero__cutout {
    width: 44%;
  }

  .promo-banner__copy {
    width: min(64%, 480px);
  }

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

  .bonus-offer-grid--five .bonus-offer-card,
  .bonus-offer-grid--five .bonus-offer-card:nth-child(-n + 2) {
    grid-column: auto;
  }

  .bonus-offer-grid--five .bonus-offer-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    background-size: 56px 56px;
  }

  main,
  .site-footer {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  h1 {
    font-size: clamp(27px, 8.2vw, 34px);
  }

  h2 {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.2;
  }

  h3 {
    font-size: 18px;
    line-height: 1.45;
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
    padding: 30px 20px;
    background-position: var(--hero-focus-x) var(--hero-focus-y);
  }

  .hero::before,
  .hero--copy-right::before {
    background:
      linear-gradient(180deg, rgba(4, 6, 10, 0.98) 0%, rgba(4, 6, 10, 0.9) 44%, rgba(4, 6, 10, 0.42) 74%, rgba(4, 6, 10, 0.78) 100%),
      linear-gradient(90deg, rgba(4, 6, 10, 0.48), transparent 72%);
  }

  .hero__copy,
  .hero--copy-right .hero__copy {
    width: 100%;
  }

  .hero__copy p {
    font-size: 15px;
  }

  .hero__cutout {
    display: none;
  }

  .platform-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .platform-button {
    width: min(100%, 250px);
  }

  .content-section,
  .service-block,
  .not-found section {
    padding: 18px 16px;
  }

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

  .section-content > * + * {
    margin-top: 18px;
  }

  .pros-cons-grid,
  .reviews-grid,
  .bonus-offer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .bonus-offer-card,
  .bonus-offer-card:nth-child(-n + 2) {
    grid-column: 1;
  }

  table {
    min-width: 650px;
  }

  .table-wrap {
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  th,
  td {
    padding: 11px 12px;
    font-size: 12px;
  }

  .promo-banner {
    min-height: 430px;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px 20px;
  }

  .promo-banner--copy-left picture::after,
  .promo-banner--copy-right picture::after {
    background:
      linear-gradient(0deg, rgba(4, 6, 9, 0.96) 0%, rgba(4, 6, 9, 0.74) 44%, rgba(4, 6, 9, 0.1) 79%),
      linear-gradient(90deg, rgba(4, 6, 9, 0.36), transparent 70%);
  }

  .promo-banner__copy {
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo-banner__title {
    font-size: clamp(25px, 8vw, 34px);
  }

  .promo-banner__copy .button {
    width: min(100%, 250px);
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 10px;
    padding-inline: 13px;
  }

  .breadcrumbs {
    flex-wrap: wrap;
  }

  .author-card strong {
    min-width: 0;
    margin-right: 5px;
  }

  .site-footer {
    margin-top: 30px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }

  .footer-geos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .footer-bottom {
    min-height: 68px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .geo-menu {
    width: calc(100vw - 24px);
    padding: 10px;
  }

  .geo-menu__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .geo-menu__link {
    min-height: 44px;
    padding: 6px 4px;
    justify-content: center;
    gap: 6px;
  }

  .geo-menu__link .geo-flag,
  .footer-geo-link .geo-flag {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .geo-menu__link .geo-name,
  .footer-geo-link .geo-name {
    display: none;
  }

  .geo-menu__link .geo-code,
  .footer-geo-link .geo-code {
    display: inline;
  }

  .footer-geos {
    padding-top: 18px;
    padding-bottom: 22px;
    gap: 6px;
  }

  .footer-geo-link {
    min-height: 44px;
    padding: 6px 4px;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(25px, 7.8vw, 30px);
    line-height: 1.13;
  }

  h2 {
    font-size: clamp(23px, 7vw, 27px);
  }

  h3 {
    font-size: 17px;
  }

  .brand {
    width: 108px;
  }

  .hero {
    min-height: 0;
    padding: 26px 16px;
  }

  .hero::after {
    inset: 10px;
  }

  .hero__cutout {
    right: -7%;
    width: 82%;
    max-height: 40%;
  }

  .platform-button {
    width: 100%;
    min-width: 0;
    grid-template-columns: 26px minmax(0, 1fr);
  }

  .content-section,
  .service-block,
  .not-found section {
    padding: 16px;
  }

  .section-heading {
    margin-bottom: 16px;
    padding-bottom: 11px;
  }

  .section-heading > span {
    width: 96px;
  }

  .section-content > * + * {
    margin-top: 16px;
  }

  .bonus-offer-card,
  .bonus-offer-card:nth-child(-n + 2) {
    padding: 20px 16px 18px;
  }

  .section-content .bonus-offer-card h3 {
    width: calc(100% - 44px);
    margin-right: 44px;
  }

  .review-card,
  .author-card,
  .responsible-panel {
    padding: 15px;
  }

  .faq-item summary {
    min-height: 54px;
    padding: 12px;
  }

  .faq-answer {
    padding: 0 12px 14px;
  }

  .promo-banner {
    min-height: 440px;
    padding: 22px 16px;
  }

  .promo-banner__title {
    font-size: clamp(24px, 8vw, 30px);
  }

  .footer-responsible {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .footer-responsible strong {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 0;
  }

  .button {
    max-width: 100%;
    padding-inline: 18px;
  }

  .hero__copy > .button {
    width: 100%;
  }

  .source-list li {
    padding-left: 27px;
  }
}

@media (max-width: 340px) {
  .hero {
    min-height: 0;
  }

  .button {
    padding-inline: 16px;
    font-size: 12px;
  }

  .promo-banner__title {
    font-size: 23px;
  }

  .review-card__facts {
    display: grid;
    justify-content: start;
  }
}

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

  .section-heading > span {
    transform: scaleX(1);
  }
}
