:root {
  --ink: #07080b;
  --ink-soft: #101219;
  --panel: #171923;
  --paper: #f1f1f4;
  --card: #ffffff;
  --text: #262833;
  --muted: #626775;
  --line: #d9dbe3;
  --mint: #00ffad;
  --mint-dark: #00c98a;
  --violet: #a700ff;
  --violet-dark: #7500b5;
  --terracotta: #c85f3d;
  --terracotta-dark: #8f3d29;
  --danger: #d23f57;
  --shadow: 0 7px 22px rgba(15, 16, 25, 0.12);
  --radius: 6px;
  --content-gap: 20px;
  --cta-width: 180px;
  --cta-height: 44px;
  --asset-version: "20260828-21";
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background:
    linear-gradient(135deg, rgba(0, 255, 173, 0.025) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(315deg, rgba(167, 0, 255, 0.025) 25%, transparent 25%) 0 0 / 32px 32px,
    var(--paper);
  color: var(--text);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 75px;
  background: #020304;
  color: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-link img {
  width: 135px;
  height: 34px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 8px;
}

.primary-nav a,
.footer-nav a,
.article-nav a {
  position: relative;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav a::before,
.primary-nav a::after,
.footer-nav a::before,
.footer-nav a::after,
.article-nav a::before,
.article-nav a::after,
.content-section::before,
.content-section::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: transparent;
  border-style: solid;
  content: "";
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.primary-nav a::before,
.footer-nav a::before,
.article-nav a::before {
  top: 5px;
  left: 2px;
  border-width: 2px 0 0 2px;
  transform: translate(4px, 4px);
}

.primary-nav a::after,
.footer-nav a::after,
.article-nav a::after {
  right: 2px;
  bottom: 5px;
  border-width: 0 2px 2px 0;
  transform: translate(-4px, -4px);
}

.primary-nav a:hover::before,
.primary-nav a:hover::after,
.primary-nav a:focus-visible::before,
.primary-nav a:focus-visible::after,
.footer-nav a:hover::before,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::before,
.footer-nav a:focus-visible::after,
.article-nav a:hover::before,
.article-nav a:hover::after,
.article-nav a:focus-visible::before,
.article-nav a:focus-visible::after {
  border-color: var(--mint);
  opacity: 1;
  transform: translate(0, 0);
}

.primary-nav a[aria-current="page"] {
  color: var(--mint);
}

.header-spacer {
  flex: 1 1 auto;
}

.locale-switcher {
  display: inline-flex;
  flex: 0 0 auto;
}

.locale-toggle {
  display: inline-flex;
  width: 62px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--mint-dark);
  border-radius: 7px;
  background: #111318;
  color: var(--mint);
  cursor: pointer;
}

.locale-toggle:hover,
.locale-toggle:focus-visible,
.locale-toggle[aria-expanded="true"] {
  border-color: var(--mint);
  background: rgba(0, 255, 173, 0.09);
}

.locale-flag {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  object-fit: cover;
}

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

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

.locale-menu {
  position: fixed;
  z-index: 180;
  top: 83px;
  left: 50%;
  display: grid;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - 99px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #3b3e47;
  border-radius: 10px;
  padding: 12px;
  background: #111318;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
  transform: translateX(-50%);
}

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

.locale-option,
.footer-locale-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  border: 1px solid #484b54;
  border-radius: 8px;
  background: #34373e;
  color: #fff;
  font-weight: 800;
}

.locale-option {
  min-height: 46px;
  padding: 8px 12px;
}

.locale-option:hover,
.locale-option:focus-visible,
.footer-locale-link:hover,
.footer-locale-link:focus-visible {
  border-color: var(--mint);
  background: #41454d;
}

.locale-option[aria-current="page"],
.footer-locale-link[aria-current="page"] {
  border-color: var(--mint-dark);
  background: var(--mint-dark);
  color: var(--ink);
}

.locale-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.locale-code {
  display: none;
}

.header-actions,
.mobile-actions,
.store-pair {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta {
  position: relative;
  display: inline-flex;
  width: var(--cta-width);
  min-width: var(--cta-width);
  height: var(--cta-height);
  min-height: var(--cta-height);
  flex: 0 0 var(--cta-width);
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 900;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 5px 0 rgba(0, 139, 95, 0.6);
  transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: #4affc7;
}

.cta:active,
.cta.is-pressing {
  transform: translateY(4px) scale(0.985);
  box-shadow: 0 1px 0 rgba(0, 139, 95, 0.55);
}

.cta-bonus {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 5px 0 rgba(82, 0, 126, 0.75);
}

.cta-bonus:hover,
.cta-bonus:focus-visible {
  background: #bb2cff;
}

.cta-ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.cta-ghost:hover,
.cta-ghost:focus-visible {
  border-color: var(--mint);
  background: rgba(0, 255, 173, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.menu-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, width 180ms ease, top 180ms ease, opacity 140ms ease;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 7px; }
.menu-icon span:nth-child(3) { top: 14px; }

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

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

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

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

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

.main-column {
  min-width: 0;
}

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

.rail-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.rail-title {
  margin: 0;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--violet), #c000ff);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-links,
.article-nav,
.game-links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-links li,
.article-nav li {
  border-bottom: 1px solid var(--line);
}

.quick-links li:last-child,
.article-nav li:last-child {
  border-bottom: 0;
}

.quick-links a,
.article-nav a {
  display: grid;
  min-height: 44px;
  align-items: center;
  color: #505462;
}

.quick-links a {
  min-height: 36px;
  grid-template-columns: 19px minmax(0, 1fr) 4px;
  gap: 7px;
  padding: 5px 11px;
  font-size: 12px;
  line-height: 1.2;
}

.quick-links img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.quick-links a:hover,
.quick-links a:focus-visible,
.article-nav a:hover,
.article-nav a:focus-visible,
.article-nav a.is-active {
  background: rgba(0, 255, 173, 0.08);
  color: #151721;
}

.quick-links a::after {
  width: 4px;
  height: 20px;
  justify-self: end;
  border: 0;
  border-radius: 4px;
  background: var(--terracotta);
  content: "";
  opacity: 0;
  transform: translateX(5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.quick-links a:hover::after,
.quick-links a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.article-nav a {
  padding: 10px 15px;
  font-size: 13px;
  line-height: 1.3;
}

.article-nav a.is-active {
  box-shadow: inset 4px 0 var(--mint);
  font-weight: 800;
}

.app-rail {
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(0, 255, 173, 0.16), transparent 50%),
    #090b10;
  color: #fff;
}

.app-rail h2 {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 18px;
  line-height: 1.25;
}

.app-rail p {
  margin: 0 0 14px;
  color: #d7d8de;
  font-size: 13px;
}

.platform-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.platform-icons span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

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

.platform-icons img[src*="platform-android"],
.store-button img[src*="platform-android"] {
  filter: invert(1);
}

.game-links {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.game-links li:last-child {
  grid-column: 1 / -1;
}

.game-link {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 105px;
  border-radius: 6px;
  background: var(--ink-soft);
}

.game-link img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  transition: transform 200ms ease;
}

.game-link span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 8px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.game-link:hover img,
.game-link:focus-visible img {
  transform: scale(1.045);
}

.hero {
  position: relative;
  display: flex;
  min-height: 381px;
  align-items: center;
  overflow: hidden;
  border-radius: 18px 18px var(--radius) var(--radius);
  background-color: var(--ink);
  background-image: var(--hero-image);
  background-position: var(--focus-x, 70%) var(--focus-y, 50%);
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.98) 0%, rgba(2, 3, 6, 0.93) 34%, rgba(2, 3, 6, 0.48) 59%, rgba(2, 3, 6, 0.08) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0 14px, transparent 14px 25px);
  content: "";
  opacity: 0.85;
}

.hero-copy {
  width: min(64%, 670px);
  padding: 65px 30px;
  color: #fff;
}

.hero h1 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--mint);
  font-size: clamp(30px, 2.3vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero-lead {
  width: 100%;
  margin: 16px 0 0;
  color: #f1f2f5;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

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

.content-flow {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.content-section,
.service-section,
.not-found-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 34, 45, 0.08);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.section-inner,
.service-inner,
.not-found-inner {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.content-section::before {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
}

.content-section::after {
  right: 0;
  bottom: 0;
  border-width: 0 3px 3px 0;
}

.content-section:hover::before,
.content-section:hover::after,
.content-section:focus-within::before,
.content-section:focus-within::after {
  border-color: var(--terracotta);
  opacity: 1;
  transform: translate(0, 0);
}

.section-title {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 20px;
  color: #141620;
  font-size: 30px;
  font-weight: 650;
  line-height: 1.2;
  text-wrap: wrap;
}

.section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 116px;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--violet) 0 10px, transparent 10px 16px, var(--terracotta) 16px 22px, transparent 22px 28px);
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 420ms ease;
}

.content-section.is-visible .section-title::after {
  transform: scaleX(1);
}

.section-body {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: none;
}

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

.section-body > .cta {
  width: var(--cta-width);
  max-width: var(--cta-width);
  justify-self: start;
}

.section-body p,
.service-answer p,
.faq-answer p,
.review-card p {
  margin: 0;
}

.section-body h3 {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #1a1c26;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
}

.section-body ul,
.section-body ol,
.service-answer ul,
.service-answer ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 26px;
}

.section-body li,
.service-answer li {
  padding-left: 5px;
}

.section-body li::marker,
.service-answer li::marker {
  color: var(--violet);
  font-weight: 900;
}

.step-list {
  position: relative;
  counter-reset: step;
  list-style: none;
  padding-left: 0 !important;
}

.step-list::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 17px;
  width: 2px;
  background: linear-gradient(var(--mint), var(--terracotta));
  content: "";
}

.step-list li {
  position: relative;
  min-height: 38px;
  padding: 7px 0 7px 50px;
  counter-increment: step;
}

.step-list li::before {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--mint);
  border-radius: 50% 50% 42% 58%;
  background: #10131b;
  color: #fff;
  content: counter(step);
  font-size: 13px;
  font-weight: 900;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #252834;
  border-radius: 6px;
  scrollbar-color: var(--violet) #e8e9ee;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

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

th {
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 20px),
    #141720;
  color: #fff;
  font-weight: 800;
}

th:first-child,
td:first-child {
  position: sticky;
  z-index: 2;
  left: 0;
  min-width: 180px;
}

th:first-child {
  z-index: 3;
  color: var(--mint);
}

td:first-child {
  background: #edf9f5;
  color: #171923;
  font-weight: 750;
  box-shadow: 5px 0 10px rgba(20, 23, 32, 0.08);
}

tbody tr:nth-child(even) td:not(:first-child) {
  background: linear-gradient(90deg, rgba(167, 0, 255, 0.035), rgba(0, 255, 173, 0.035));
}

tbody tr:hover td {
  background-color: rgba(200, 95, 61, 0.1);
}

tbody tr:hover td:first-child {
  box-shadow: inset 4px 0 var(--terracotta), 5px 0 10px rgba(20, 23, 32, 0.08);
}

.pros-cons-section .section-body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.pros-cons-section .section-body > p {
  grid-column: 1 / -1;
}

.compare-card {
  display: grid;
  align-content: start;
  gap: 14px;
  height: 100%;
  padding: 18px;
  border-left: 4px solid var(--mint);
  border-radius: 6px;
  background: #f5fbf9;
}

.compare-card.is-cons {
  border-left-color: var(--danger);
  background: #fff6f7;
}

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

.bonus-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #dfe1e8;
  border-top: 4px solid var(--mint-dark);
  border-radius: 6px;
  background: linear-gradient(145deg, #fff 0%, #f4fbf8 100%);
  box-shadow: 0 5px 15px rgba(18, 20, 29, 0.08);
}

.bonus-card:nth-child(even) {
  border-top-color: var(--violet);
  background: linear-gradient(145deg, #fff 0%, #faf5ff 100%);
}

.bonus-card:nth-child(3n) {
  border-top-color: var(--terracotta);
}

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

.bonus-card h3 {
  color: #171923;
  font-size: 17px;
  line-height: 1.35;
}

.bonus-card p {
  color: #555a68;
  font-size: 14px;
  line-height: 1.55;
}

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

.review-summary {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #d9dbe3;
  border-left: 4px solid var(--mint-dark);
  border-radius: 6px;
  background: #f4fbf8;
  color: #555a68;
  font-size: 13px;
}

.review-summary-score {
  flex: 0 0 auto;
  color: #151822;
  font-size: 20px;
  line-height: 1;
}

.review-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid #e0e1e7;
  border-radius: 6px;
  background: linear-gradient(145deg, #fff, #f6f5fa);
}

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

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.review-card-header strong {
  color: #171923;
  font-size: 16px;
}

.review-rating {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 10px;
  background: #151822;
  color: var(--mint);
  font-weight: 900;
  white-space: nowrap;
}

.review-quote {
  color: #4a4e5b;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid #dadce4;
  border-radius: 6px;
  background: #fff;
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 14px;
  min-height: 58px;
  align-items: center;
  padding: 13px 16px;
  color: #171923;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--violet);
  border-radius: 4px 11px 4px 11px;
  color: var(--violet);
  content: "+";
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease, border-radius 180ms ease;
}

.faq-item[open] summary {
  background: linear-gradient(90deg, rgba(0, 255, 173, 0.08), rgba(167, 0, 255, 0.08));
}

.faq-item[open] summary::after {
  border-radius: 11px 4px 11px 4px;
  content: "−";
  transform: rotate(90deg);
}

.faq-answer {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid #e2e3e9;
}

.responsible-box,
.author-card,
.schema-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 6px;
  background: #fff8f4;
}

.responsible-box h3,
.author-card h3 {
  color: var(--terracotta-dark);
}

.author-card {
  border-left-color: var(--violet);
  background: #f9f5fc;
}

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

.promo-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--promo-focus-x, 70%) var(--promo-focus-y, 50%);
}

.promo-banner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.92) 38%, rgba(2, 3, 5, 0.3) 67%, rgba(2, 3, 5, 0.06) 100%);
  content: "";
}

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

.promo-banner.is-copy-right .promo-image {
  transform: scaleX(-1);
}

.promo-banner.is-copy-right::before {
  background: linear-gradient(270deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.92) 38%, rgba(2, 3, 5, 0.3) 67%, rgba(2, 3, 5, 0.06) 100%);
}

.promo-copy {
  display: grid;
  gap: 12px;
  width: min(58%, 560px);
  padding: 28px;
  color: #fff;
}

.promo-copy .promo-heading {
  width: 100%;
  margin: 0;
  color: var(--mint);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

.promo-copy p {
  width: 100%;
  margin: 0;
  color: #f0f1f4;
  font-weight: 600;
}

.store-button {
  display: inline-grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  width: 190px;
  min-height: 56px;
  align-items: center;
  column-gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  padding: 8px 13px;
  background: #11141c;
  color: #fff;
  box-shadow: 0 4px 0 #000;
  transition: transform 120ms ease, border-color 160ms ease, box-shadow 120ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: var(--mint);
}

.store-button:active,
.store-button.is-pressing {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #000;
}

.store-button img {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.store-button small {
  align-self: end;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.05;
}

.store-button strong {
  align-self: start;
  font-size: 15px;
  line-height: 1.05;
}

.site-footer {
  margin-top: 20px;
  background: #050609;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 520px) repeat(2, minmax(180px, 220px));
  gap: 32px;
  width: min(100%, 1600px);
  justify-content: center;
  margin: 0 auto;
  padding: 34px 30px;
  text-align: center;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 135px;
  height: 34px;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: #bfc2ca;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 15px;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 4px 12px;
  color: #e8e9ed;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.payment-strip img {
  width: auto;
  max-width: 76px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.65);
  opacity: 0.78;
}

.footer-locales {
  display: grid;
  width: min(100%, 1600px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 24px 30px;
}

.footer-locale-link {
  min-height: 54px;
  padding: 9px 14px;
  font-size: 14px;
  line-height: 1.2;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: min(100%, 1600px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 20px 30px;
  color: #aeb1bb;
  font-size: 13px;
  text-align: center;
}

.responsible-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.responsible-mark img {
  width: 44px;
  height: 44px;
}

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

.service-eyebrow {
  margin: 0;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-section h1,
.not-found-card h1 {
  width: 100%;
  margin: 0;
  color: #151721;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.1;
}

.service-qa {
  display: grid;
  gap: 18px;
}

.service-answer {
  display: grid;
  gap: 8px;
  border-top: 1px solid #e0e2e8;
  padding-top: 18px;
}

.service-answer h2 {
  margin: 0;
  color: #181a23;
  font-size: 19px;
  line-height: 1.35;
}

.not-found-card {
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(0, 255, 173, 0.1), transparent 42%),
    linear-gradient(315deg, rgba(167, 0, 255, 0.13), transparent 45%),
    #fff;
}

.not-found-inner {
  min-height: 460px;
  align-content: center;
  justify-items: start;
}

.not-found-code {
  margin: 0;
  color: var(--terracotta);
  font-size: 80px;
  font-weight: 900;
  line-height: 0.85;
}

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

  .side-rail {
    display: none;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .header-inner {
    gap: 12px;
    padding-inline: 16px;
  }

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

  .primary-nav {
    gap: 2px;
  }

  .primary-nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .cta {
    width: 148px;
    min-width: 148px;
    flex-basis: 148px;
  }

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

@media (max-width: 980px) {
  body {
    padding-top: 75px;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    z-index: 120;
    top: 75px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 75px);
    gap: 14px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 18px 30px 24px;
    background: #08090d;
    color: #fff;
    transform: translateY(-115%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 0s linear 220ms;
  }

  .mobile-panel.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform 220ms ease;
  }

  .mobile-nav {
    display: grid;
    gap: 5px;
  }

  .mobile-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 2px;
    font-weight: 800;
    text-transform: uppercase;
  }

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

  .mobile-locale {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d4d6dd;
    font-weight: 800;
  }

  .mobile-actions {
    margin-top: 2px;
  }

  .mobile-actions .cta {
    flex: 0 0 var(--cta-width);
  }

  .menu-scrim {
    position: fixed;
    z-index: 110;
    inset: 75px 0 0;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .menu-scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(180px, 260px));
    justify-content: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  body {
    padding-top: 60px;
  }

  .site-header {
    height: 60px;
  }

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

  .brand-link img {
    width: 119px;
    height: 30px;
  }

  .mobile-panel {
    top: 60px;
    max-height: calc(100vh - 60px);
    padding: 16px 16px 22px;
  }

  .menu-scrim {
    inset: 60px 0 0;
  }

  .layout-shell,
  .service-main,
  .not-found-main {
    width: 100%;
    margin-top: 16px;
    padding: 0 16px;
  }

  .hero {
    min-height: 440px;
    align-items: flex-end;
    background-position: var(--mobile-focus-x, 72%) var(--mobile-focus-y, 48%);
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 3, 6, 0.98) 0%, rgba(2, 3, 6, 0.88) 47%, rgba(2, 3, 6, 0.3) 78%, rgba(2, 3, 6, 0.12) 100%);
  }

  .hero-copy {
    width: 100%;
    padding: 26px 20px 30px;
  }

  .hero h1 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.13;
  }

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

  .content-flow {
    margin-top: 16px;
    gap: 16px;
  }

  .section-inner,
  .service-inner,
  .not-found-inner {
    gap: 16px;
    padding: 18px 16px;
  }

  .section-title {
    padding-bottom: 16px;
    font-size: 25px;
    line-height: 1.22;
  }

  .section-body {
    gap: 16px;
  }

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

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

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

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

  .promo-banner,
  .promo-banner.is-copy-right {
    min-height: 360px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .promo-image,
  .promo-banner.is-copy-right .promo-image {
    object-position: var(--promo-mobile-focus-x, 72%) var(--promo-mobile-focus-y, 46%);
  }

  .promo-banner::before,
  .promo-banner.is-copy-right::before {
    background: linear-gradient(0deg, rgba(2, 3, 5, 0.98) 0%, rgba(2, 3, 5, 0.9) 48%, rgba(2, 3, 5, 0.26) 79%, rgba(2, 3, 5, 0.08) 100%);
  }

  .promo-copy {
    width: 100%;
    padding: 22px 18px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo-copy .promo-heading {
    font-size: 24px;
  }

  .store-pair {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .store-button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 520px);
    gap: 24px;
    justify-content: center;
    padding: 30px 16px;
  }

  .footer-locales {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px 16px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
  }

  table {
    font-size: 13px;
  }

  th,
  td {
    padding: 11px 12px;
  }
}

@media (max-width: 520px) {
  .locale-menu {
    top: 68px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 80px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }

  .locale-option {
    min-height: 48px;
    justify-content: center;
    gap: 6px;
    padding: 6px 3px;
    font-size: 12px;
  }

  .locale-option .locale-flag,
  .footer-locale-link .locale-flag {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .locale-option .locale-name,
  .footer-locale-link .locale-name {
    display: none;
  }

  .locale-option .locale-code,
  .footer-locale-link .locale-code {
    display: inline;
  }

  .footer-locales {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 18px 12px;
  }

  .footer-locale-link {
    min-height: 48px;
    justify-content: center;
    gap: 6px;
    padding: 6px 3px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .mobile-actions {
    flex-direction: column;
    align-items: center;
  }

  .mobile-actions .cta,
  .hero-actions .cta {
    width: var(--cta-width);
  }

  .mobile-actions .cta {
    height: var(--cta-height);
    min-height: var(--cta-height);
    flex: 0 0 var(--cta-height);
  }

  .review-card-header {
    flex-direction: column;
  }
}

@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;
  }

  .section-title::after {
    transform: scaleX(1);
  }
}
