:root {
  --ink: #111318;
  --muted: #626b78;
  --surface: #ffffff;
  --surface-soft: #f2f4f6;
  --line: #d8dde2;
  --black: #050505;
  --mint: #0ce5a0;
  --mint-dark: #00bd82;
  --violet: #9e00ff;
  --red: #ef233c;
  --red-dark: #c9152c;
  --white: #ffffff;
  --shadow: 0 8px 26px rgba(15, 20, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding-top: 75px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(239, 35, 60, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(rgba(15, 19, 24, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    #e9edf0;
  font-family: "Gilroy", "Avenir Next", "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-lock {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.header-inner > *,
.footer-inner > *,
.service-qa > div > * {
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 75px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  width: 100%;
  max-width: 1600px;
  height: 75px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-link {
  flex: 0 0 auto;
  width: 150px;
}

.brand-link img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: auto;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.geo-switcher {
  flex: 0 0 auto;
}

.geo-toggle {
  min-width: 66px;
  height: 42px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--mint);
  border-radius: 8px;
  color: var(--mint);
  background: #0b0c0f;
  cursor: pointer;
}

.geo-toggle:hover,
.geo-toggle:focus-visible,
.geo-toggle[aria-expanded="true"] {
  background: #15181d;
}

.geo-toggle-flag,
.geo-flag {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
}

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

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

.geo-popup {
  position: fixed;
  z-index: 110;
  top: 86px;
  left: 50%;
  width: min(760px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid #343943;
  border-radius: 10px;
  color: var(--white);
  background: #111419;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

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

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

.geo-link {
  min-width: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #444a54;
  border-radius: 8px;
  color: var(--white);
  background: #343941;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;
}

.geo-link:hover,
.geo-link:focus-visible {
  border-color: var(--mint);
  background: #404650;
}

.geo-link[aria-current="page"] {
  border-color: var(--mint);
  color: var(--black);
  background: var(--mint);
}

.geo-code {
  display: none;
}

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

.cta {
  position: relative;
  isolation: isolate;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 0;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  color: var(--black);
  background: var(--mint);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, 0.52);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.cta:hover,
.cta:focus-visible {
  background: #35f0b5;
  box-shadow: 0 8px 18px rgba(12, 229, 160, 0.22);
}

.cta-bonus,
.cta-register {
  color: var(--white);
  background: var(--violet);
}

.cta-bonus:hover,
.cta-bonus:focus-visible,
.cta-register:hover,
.cta-register:focus-visible {
  background: #b52dff;
  box-shadow: 0 8px 18px rgba(158, 0, 255, 0.22);
}

.cta.is-pressed,
.cta:active {
  transform: translateY(3px) scale(0.985);
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.22);
}

.cta-small {
  min-height: 40px;
  padding: 9px 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

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

.menu-open .menu-toggle span:nth-child(1) {
  width: 16px;
  transform: translate(4px, 7px) rotate(90deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  transform: rotate(90deg);
}

.menu-open .menu-toggle span:nth-child(3) {
  width: 16px;
  transform: translate(4px, -7px);
}

.mobile-menu,
.menu-scrim {
  display: none;
}

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

.left-rail,
.right-rail {
  position: sticky;
  top: 85px;
  align-self: start;
  height: max-content;
  margin-top: 0;
  min-width: 0;
  display: grid;
  gap: 20px;
}

.rail-panel,
.mobile-promo,
.game-rail {
  overflow: hidden;
  background: var(--surface);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.rail-switches a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 700;
}

.rail-switches a + a {
  border-top: 1px solid var(--line);
}

.rail-switches b {
  color: var(--red);
  font-size: 22px;
}

.rail-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  background: #eef1f3;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 35, 60, 0.12);
}

.sport-list a {
  min-height: 43px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-top: 1px solid #edf0f2;
  text-decoration: none;
  transition: background-color 160ms ease, padding-left 160ms ease;
}

.sport-list a:hover,
.sport-list a:focus-visible {
  padding-left: 18px;
  background: #f5fffb;
}

.sport-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.sport-list small {
  min-width: 24px;
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--muted);
  background: #e7ebee;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.article-nav {
  max-height: 390px;
  overflow: auto;
  padding: 6px 0;
}

.article-link {
  position: relative;
  display: block;
  padding: 9px 13px 9px 32px;
  color: #555f6c;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.35;
  transition: color 160ms ease, padding-left 160ms ease, background-color 160ms ease;
}

.article-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--mint-dark);
  border-right: 2px solid var(--mint-dark);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 160ms ease, transform 160ms ease;
}

.article-link:hover,
.article-link:focus-visible,
.article-link.is-active {
  padding-left: 36px;
  color: var(--black);
  background: #f7f9fa;
}

.article-link:hover::before,
.article-link:focus-visible::before,
.article-link.is-active::before {
  border-color: var(--red);
  transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.mobile-promo {
  position: relative;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 229, 160, 0.14), transparent 52%),
    var(--black);
}

.mobile-promo::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
}

.rail-kicker {
  margin: 0 0 8px;
  color: var(--mint);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.mobile-promo h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
}

.mobile-promo p {
  width: 100%;
  max-width: none;
  margin: 12px 0;
  color: #d9dfe2;
  font-size: 13px;
}

.platform-icons {
  display: flex;
  gap: 8px;
}

.platform-icons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.platform-icons a:hover,
.platform-icons a:focus-visible {
  border-color: var(--mint);
  background: rgba(12, 229, 160, 0.1);
}

.platform-icons img {
  width: 16px;
  height: 16px;
}

.cta-rail {
  width: 100%;
  margin-top: 4px;
}

.game-rail {
  display: grid;
  gap: 8px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.game-rail a {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 12px;
  color: var(--white);
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.06)),
    var(--rail-image);
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.game-rail a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 0 solid var(--mint);
  transition: border-width 160ms ease, background-color 160ms ease;
}

.game-rail a:hover::after,
.game-rail a:focus-visible::after {
  border-left-width: 5px;
  background: rgba(12, 229, 160, 0.08);
}

.game-rail span {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.content-column {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.hero,
.promo-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  color: var(--white);
  border-radius: 6px;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero {
  min-height: 381px;
  display: flex;
  align-items: center;
  padding: 65px 30px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.94) 0%, rgba(2, 3, 5, 0.76) 48%, rgba(2, 3, 5, 0.12) 78%),
    linear-gradient(0deg, rgba(158, 0, 255, 0.2), transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 30px;
  width: 90px;
  height: 10px;
  background: linear-gradient(90deg, var(--red) 0 26%, transparent 26% 36%, var(--white) 36% 62%, transparent 62% 72%, var(--mint) 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
}

.hero h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--white);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-wrap: wrap;
}

.hero p {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
  color: #e4e8eb;
  font-size: 16px;
  line-height: 1.5;
}

.hero-cta {
  margin-top: 16px;
}

.app-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.app-store-cta {
  width: 232px;
  min-width: 232px;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  color: var(--white);
  background: rgba(3, 5, 6, 0.9);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.app-store-cta:hover,
.app-store-cta:focus-visible {
  transform: translateY(-2px);
  border-color: var(--mint);
  background: rgba(7, 13, 12, 0.96);
}

.app-store-cta img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.app-store-label {
  min-width: 0;
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.app-store-label > span {
  color: #d8dee2;
  font-size: 11px;
  font-weight: 700;
}

.app-store-label strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.section-download-actions {
  margin-top: 0;
}

.app-download-actions-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}

.app-download-actions-rail .app-store-cta {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  gap: 9px;
  padding: 8px 10px;
}

.app-download-actions-rail .app-store-cta img {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}

.app-download-actions-rail .app-store-label strong {
  font-size: 12px;
}

.content-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.content-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border-top: 4px solid #cbd3d9;
  border-right: 4px solid var(--red);
  clip-path: polygon(36% 0, 100% 0, 100% 64%);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease;
}

.content-section:hover::after {
  width: 58px;
  height: 58px;
  border-top-color: var(--mint-dark);
}

.section-heading {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding-bottom: 12px;
}

.section-heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background:
    linear-gradient(90deg, var(--red) 0 22%, transparent 22% 25%, #d8dde2 25% 73%, transparent 73% 76%, var(--mint-dark) 76%);
  transform-origin: left;
}

[data-enhanced="true"] .section-heading.reveal-seam::after {
  transform: scaleX(0.16);
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-enhanced="true"] .section-heading.reveal-seam.is-visible::after {
  transform: scaleX(1);
}

.section-heading h2,
.content-section h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  text-wrap: wrap;
  scroll-margin-top: 100px;
}

.section-flow {
  width: 100%;
  max-width: none;
}

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

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

.section-flow p {
  margin-bottom: 0;
}

.section-flow p:first-child {
  margin-top: 0;
}

.section-flow h3 {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}

.source-list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  position: relative;
  width: 100%;
  max-width: none;
  padding-left: 30px;
}

.source-list li + li {
  margin-top: 12px;
}

ul.source-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  transform: translateY(-50%) rotate(45deg);
  background: var(--white);
}

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

.steps-list li {
  counter-increment: step;
  min-height: 36px;
  padding-left: 48px;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  z-index: 1;
  top: -2px;
  left: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-left: 4px solid var(--red);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.steps-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  bottom: -15px;
  left: 14px;
  width: 2px;
  background: linear-gradient(var(--red), #d8dde2);
}

.table-wrap {
  width: 100%;
  max-width: none;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  scrollbar-color: var(--red) #e5e8eb;
  scrollbar-width: thin;
}

.table-wrap:focus-visible {
  box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.18);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  line-height: 1.4;
}

th,
td {
  min-width: 132px;
  padding: 12px 14px;
  vertical-align: middle;
  text-align: left;
  border-right: 1px solid #dde2e6;
  border-bottom: 1px solid #dde2e6;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--white);
  background: var(--black);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
}

tbody tr:nth-child(odd) > * {
  background: linear-gradient(90deg, #f3f5f6, #fafbfb);
}

tbody tr:nth-child(even) > * {
  background: var(--white);
}

tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 182px;
  color: var(--red-dark);
  border-left: 4px solid var(--red);
  font-weight: 800;
}

tbody tr {
  transition: filter 160ms ease;
}

tbody tr:hover {
  filter: drop-shadow(0 3px 8px rgba(12, 229, 160, 0.14));
}

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

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--mint-dark);
  border-radius: 5px;
  background: #f7fffc;
}

.comparison-card.is-cons {
  border-left-color: var(--red);
  background: #fff8f9;
}

.comparison-card h3 {
  margin-top: 0;
}

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

.bonus-detail-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--mint-dark);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(12, 229, 160, 0.07), transparent 42%),
    #f8fafb;
  box-shadow: 0 8px 22px rgba(9, 17, 25, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.bonus-detail-card.is-sport {
  border-top-color: var(--violet);
  background:
    linear-gradient(145deg, rgba(158, 0, 255, 0.07), transparent 42%),
    #f8fafb;
}

.bonus-detail-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.bonus-detail-card:hover {
  transform: translateY(-2px);
  border-color: var(--mint-dark);
  box-shadow: 0 12px 28px rgba(9, 17, 25, 0.11);
}

.bonus-detail-card.is-sport:hover {
  border-color: var(--violet);
}

.bonus-detail-card .bonus-card-index {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(10, 17, 23, 0.24);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.bonus-detail-card h3 {
  margin: 0;
  padding-right: 48px;
  font-size: 17px;
  line-height: 1.35;
}

.bonus-detail-card p {
  margin: 14px 0 0;
  color: #46515e;
}

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

.review-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-left: 5px solid var(--mint-dark);
  border-radius: 5px;
  background: #effcf8;
}

.review-summary strong {
  color: #087c63;
  font-size: 24px;
}

.review-summary span {
  color: var(--muted);
  font-weight: 700;
}

.review-provenance {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
}

.review-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f8fafb;
  transition: transform 160ms ease, border-color 160ms ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 12px;
  color: rgba(158, 0, 255, 0.18);
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--mint-dark);
}

.review-card h3 {
  margin: 0;
  padding-right: 30px;
}

.review-title {
  margin: 10px 0 0;
  color: var(--black);
  font-weight: 800;
}

.review-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.review-card-meta time::before {
  content: "·";
  margin-right: 12px;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #9e00ff;
}

.review-origin {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
}

.author-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 22px;
  border: 1px solid #252a2d;
  border-left: 5px solid var(--mint);
  border-radius: 6px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 214, 159, 0.09), transparent 42%),
    #090b0d;
  box-shadow: 0 12px 24px rgba(7, 10, 12, 0.16);
}

.author-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
}

.author-eyebrow {
  margin: 0 0 8px;
  color: var(--mint);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.author-line {
  width: 100%;
  max-width: none;
  margin: 6px 0 0;
  color: #c8d0d4;
  font-size: 13px;
}

.author-name {
  margin-top: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.author-card-inline {
  margin-top: 18px;
}

.author-card-inline .author-name {
  font-size: 13px;
  line-height: 1.55;
}

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

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f8fafb;
  transition: transform 160ms ease, border-color 160ms ease;
}

.faq-item:hover {
  transform: translateX(2px);
  border-color: #bfc7ce;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0.25);
  transform-origin: top;
  transition: transform 180ms ease;
}

.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-item summary {
  position: relative;
  width: 100%;
  padding: 16px 52px 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(var(--white), var(--white)) center / 10px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 2px 10px no-repeat,
    var(--black);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  background:
    linear-gradient(var(--white), var(--white)) center / 10px 2px no-repeat,
    var(--red);
}

.faq-answer {
  width: 100%;
  max-width: none;
  padding: 0 18px 18px;
}

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

.section-cta {
  display: flex;
  justify-content: flex-start;
}

.promo-banner {
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: 28px 30px;
  background-color: #101315;
  background-image: var(--promo-image);
  background-position: var(--promo-position, center);
  background-repeat: no-repeat;
  background-size: var(--promo-size, cover);
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
}

.promo-left::before {
  background: linear-gradient(90deg, rgba(1, 2, 4, 0.86) 0%, rgba(1, 2, 4, 0.66) 42%, rgba(1, 2, 4, 0.18) 68%, rgba(1, 2, 4, 0.02) 100%);
}

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

.promo-right::before {
  background: linear-gradient(270deg, rgba(1, 2, 4, 0.86) 0%, rgba(1, 2, 4, 0.66) 42%, rgba(1, 2, 4, 0.18) 68%, rgba(1, 2, 4, 0.02) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  width: min(52%, 500px);
  max-width: none;
}

.promo-content h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.2;
}

.promo-content p {
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  color: #e7ebee;
}

.promo-cta {
  margin-top: 16px;
}

.site-footer {
  margin-top: 20px;
  color: #d7dde0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(239, 35, 60, 0.12) 48% 49%, transparent 49% 100%),
    var(--black);
}

.footer-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 34px 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  width: 155px;
}

.footer-brand p,
.responsible-box p {
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
  color: #aeb7bd;
  font-size: 13px;
}

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

.footer-links h2 {
  margin: 0 0 12px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  color: #b9c1c6;
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover,
.responsible-box a:hover {
  color: var(--mint);
}

.responsible-box {
  padding-left: 20px;
  border-left: 3px solid var(--red);
}

.responsible-box strong {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--white);
}

.responsible-box a {
  display: inline-block;
  margin-top: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  padding: 14px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8f999f;
  text-align: center;
  font-size: 12px;
}

.footer-geos {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-geos h2 {
  margin: 0 0 16px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

.geo-link-footer {
  min-height: 54px;
  background: #343941;
}

.service-main,
.not-found-main {
  width: 100%;
  max-width: 1600px;
  margin: 20px auto 0;
  padding: 0 30px;
}

.service-block,
.not-found-block {
  width: 100%;
  padding: 28px;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-eyebrow {
  margin: 0 0 8px;
  color: var(--red-dark);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-block h1,
.not-found-block h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 36px;
}

.service-qa {
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
}

.service-qa > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.service-qa dt {
  font-weight: 800;
}

.service-qa dd {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--muted);
}

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

.not-found-block {
  max-width: 720px;
  text-align: center;
}

.error-code {
  display: block;
  color: var(--red);
  font-size: 92px;
  line-height: 1;
  font-weight: 900;
}

.not-found-block p {
  margin: 16px 0 0;
}

.internal-button {
  display: inline-flex;
  margin-top: 20px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(12, 229, 160, 0.55);
  outline-offset: 3px;
}

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

  .desktop-nav {
    gap: 15px;
  }

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

  .cta-small {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 1359px) {
  .site-shell {
    max-width: 1080px;
    grid-template-columns: minmax(0, 1fr);
  }

  .left-rail,
  .right-rail {
    display: none;
  }

  .content-column {
    width: 100%;
  }
}

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

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

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

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

  .responsible-box {
    grid-column: 1 / -1;
  }
}

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

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

  .header-inner {
    padding: 0 16px;
  }

  .brand-link,
  .brand-link img {
    width: 126px;
  }

  .brand-link {
    margin-right: auto;
  }

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

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

  .geo-popup {
    top: 68px;
  }

  .mobile-menu {
    position: fixed;
    z-index: 102;
    top: 60px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
    display: block;
    padding: 18px max(18px, calc((100vw - 720px) / 2)) 22px;
    color: var(--white);
    background: #0b0c0f;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform-origin: top;
    animation: mobile-menu-drop 180ms ease-out both;
  }

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

  .mobile-menu > a {
    display: block;
    padding: 14px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
  }

  .mobile-menu > a[aria-current="page"] {
    color: var(--mint);
  }

  .mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

  .menu-scrim {
    position: fixed;
    z-index: 101;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: rgba(0, 0, 0, 0.56);
    animation: menu-scrim-fade 180ms ease-out both;
  }

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

  @keyframes mobile-menu-drop {
    from {
      opacity: 0;
      transform: translateY(-14px) scaleY(0.97);
    }

    to {
      opacity: 1;
      transform: translateY(0) scaleY(1);
    }
  }

  @keyframes menu-scrim-fade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

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

  .content-column {
    gap: 16px;
  }

  .hero {
    min-height: 360px;
    padding: 48px 20px 34px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(2, 3, 5, 0.94) 0%, rgba(2, 3, 5, 0.76) 72%, rgba(2, 3, 5, 0.28) 100%);
  }

  .hero::after {
    left: 20px;
  }

  .hero h1,
  .section-heading h2,
  .content-section h2,
  .service-block h1,
  .not-found-block h1 {
    font-size: 27px;
    line-height: 33px;
  }

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

  .cta {
    max-width: 100%;
    min-height: 44px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .pros-cons-grid,
  .review-grid,
  .bonus-card-grid {
    grid-template-columns: 1fr;
  }

  .bonus-detail-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .promo-banner {
    min-height: 430px;
    padding: 24px 20px;
    align-items: flex-end;
    background-position: var(
      --promo-mobile-position,
      var(--promo-position, center)
    );
    background-size: var(--promo-mobile-size, var(--promo-size, cover));
  }

  .promo-left,
  .promo-right {
    justify-content: flex-start;
  }

  .promo-left::before,
  .promo-right::before {
    background: linear-gradient(180deg, rgba(1, 2, 4, 0.06) 0%, rgba(1, 2, 4, 0.34) 42%, rgba(1, 2, 4, 0.94) 70%, #010204 100%);
  }

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

  .promo-content h2 {
    font-size: 24px;
  }

  .section-cta,
  .section-cta .cta,
  .promo-cta {
    width: 100%;
  }

  .footer-inner {
    padding: 30px 16px;
  }

  .footer-geos {
    padding: 26px 16px;
  }

  table {
    min-width: 640px;
  }

  th,
  td {
    min-width: 116px;
    padding: 11px 12px;
  }

  tbody th {
    min-width: 156px;
  }

  .service-qa > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 638px) {
  .hero {
    min-height: 390px;
    background-position: var(
      --hero-mobile-position,
      var(--hero-position, center)
    );
  }

  .hero-content {
    width: 100%;
  }

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

  .app-download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .app-store-cta {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
  }

  .cta {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .responsible-box {
    grid-column: auto;
  }

  .error-code {
    font-size: clamp(64px, 22vw, 92px);
  }
}

@media (max-width: 520px) {
  .geo-popup {
    width: calc(100vw - 16px);
    padding: 8px;
  }

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

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

  .geo-link-header .geo-flag,
  .geo-link-footer .geo-flag {
    width: 24px;
    height: 24px;
  }

  .geo-full {
    display: none;
  }

  .geo-code {
    display: inline;
  }

  .geo-link-footer {
    min-height: 48px;
  }
}

@media (max-width: 420px) {
  .app-download-actions {
    grid-template-columns: 1fr;
  }

  .app-store-cta {
    width: 100%;
  }

  .hero-cta,
  .hero-cta.cta {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .responsible-box {
    padding-left: 14px;
  }
}

@media (max-width: 390px) {
  .hero h1,
  .section-heading h2,
  .content-section h2,
  .service-block h1,
  .not-found-block h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .section-flow h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .promo-content {
    width: 100%;
  }

  .promo-content h2 {
    font-size: 22px;
  }

  .promo-banner {
    min-height: 410px;
    padding: 22px 17px;
  }
}

@media (max-width: 320px) {
  .brand-link,
  .brand-link img {
    width: 114px;
  }

  .header-inner {
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .geo-toggle {
    min-width: 58px;
    padding-right: 7px;
    padding-left: 7px;
    gap: 7px;
  }

  .geo-toggle-flag {
    width: 26px;
    height: 26px;
  }

  .geo-grid,
  .footer-geo-grid {
    gap: 5px;
  }

  .geo-link {
    gap: 4px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 11px;
  }

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

  .hero {
    padding-right: 17px;
    padding-left: 17px;
  }

  .hero h1,
  .section-heading h2,
  .content-section h2,
  .service-block h1,
  .not-found-block h1 {
    font-size: 22px;
    line-height: 28px;
  }

  .cta {
    font-size: 11px;
  }

  .mobile-menu {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 420px) {
  .service-block h1,
  .not-found-block h1 {
    overflow-wrap: normal;
    hyphens: none;
    font-size: clamp(18px, 5.8vw, 23px);
    line-height: 1.25;
    letter-spacing: -0.015em;
  }

  .author-card {
    padding: 17px;
  }
}

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

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

  [data-enhanced="true"] .section-heading.reveal-seam::after {
    transform: scaleX(1);
  }
}
