:root {
  --ink: #070908;
  --ink-2: #111512;
  --paper: #f7f3e8;
  --surface: #ffffff;
  --surface-soft: #edf0ec;
  --text: #252a27;
  --muted: #606964;
  --mint: #06e5a0;
  --mint-dark: #04b77f;
  --violet: #9e01ff;
  --paprika: #cf2f32;
  --hungary-green: #287f4b;
  --line: #d9dfda;
  --shadow: 0 10px 28px rgba(7, 9, 8, .10);
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; overflow-x: clip; }
body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background-color: #e5ece7;
  background-image:
    radial-gradient(ellipse at 10% 8%, rgba(6,229,160,.16) 0, rgba(6,229,160,.055) 18%, transparent 42%),
    radial-gradient(ellipse at 92% 22%, rgba(158,1,255,.12) 0, rgba(158,1,255,.035) 20%, transparent 44%),
    linear-gradient(116deg, transparent 0 46.8%, rgba(207,47,50,.075) 46.9% 47.15%, transparent 47.25% 100%),
    linear-gradient(64deg, transparent 0 67.8%, rgba(40,127,75,.075) 67.9% 68.15%, transparent 68.25% 100%),
    repeating-linear-gradient(90deg, rgba(7,9,8,.025) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.20) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #edf3ef 0%, #dce7df 46%, #eef0ea 100%);
  background-size:
    1180px 820px,
    1120px 880px,
    760px 560px,
    820px 620px,
    72px 72px,
    72px 72px,
    100% 100%;
  background-position: left top, right 180px, center top, center 120px, 0 0, 0 0, 0 0;
  background-repeat: repeat-y, repeat-y, repeat, repeat, repeat, repeat, no-repeat;
  font: 400 15px/1.55 Montserrat, Arial, Helvetica, sans-serif;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
p, h1, h2, h3, ul, ol { margin: 0; width: 100%; max-width: none; }
p, li, td, th { word-break: normal; overflow-wrap: normal; hyphens: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 75px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
}

.header-inner {
  width: min(100%, 1600px);
  height: 75px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
}

.brand { width: 135px; outline-offset: 5px; }
.site-nav { display: flex; align-items: center; gap: 26px; min-width: 0; }
.site-nav__link,
.site-footer nav a,
.sidebar-panel--article a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-weight: 650;
}

.site-nav__link::before,
.site-footer nav a::before,
.sidebar-panel--article a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background:
    linear-gradient(90deg, var(--paprika) 0 30%, var(--paper) 30% 60%, var(--hungary-green) 60% 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .22s ease;
}

.site-nav__link:hover::before,
.site-nav__link:focus-visible::before,
.site-nav__link.is-active::before,
.site-footer nav a:hover::before,
.site-footer nav a:focus-visible::before,
.sidebar-panel--article a:hover::before,
.sidebar-panel--article a:focus-visible::before,
.sidebar-panel--article a.is-active::before { transform: scaleX(1); }

.site-nav__link.is-active { color: var(--mint); }
.locale-picker { position: relative; justify-self: end; }
.locale-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 68px;
  height: 44px;
  padding: 7px 11px;
  color: #fff;
  background: #202421;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  cursor: pointer;
}
.locale-trigger:hover,
.locale-trigger:focus-visible,
.locale-trigger[aria-expanded="true"] { color: var(--mint); border-color: var(--mint); }
.locale-flag {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
}
.locale-chevron {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.locale-trigger[aria-expanded="true"] .locale-chevron { margin-top: 4px; transform: rotate(225deg); }
.locale-menu {
  position: fixed;
  top: 85px;
  left: 50vw;
  z-index: 1100;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: min(780px, calc(100vw - 32px));
  padding: 10px;
  color: #fff;
  background: #151917;
  border: 1px solid #3b413d;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0,0,0,.42);
  transform: translateX(-50%);
}
.locale-menu[hidden] { display: none; }
.locale-option {
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.locale-option:hover,
.locale-option:focus-visible { color: #fff; background: #343a36; outline: none; }
.locale-option[aria-current="page"] { color: var(--ink); background: var(--mint); }
.locale-code,
.footer-locale-code { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 156px;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--mint);
  color: #07110d;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 7px 0 rgba(4, 123, 85, .52);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 1px solid rgba(247, 243, 232, .65);
  border-radius: inherit;
  opacity: 0;
  transform: scale(.93);
  transition: opacity .18s ease, transform .18s ease;
}

.cta:hover, .cta:focus-visible { filter: brightness(1.06); transform: translateY(-1px); }
.cta:active, .cta.is-pressed { transform: translateY(3px); box-shadow: 0 3px 0 rgba(4,123,85,.55); }
.cta:active::after, .cta.is-pressed::after { opacity: 1; transform: scale(1); }
.cta--violet { background: var(--violet); color: #fff; box-shadow: 0 7px 0 rgba(78,0,126,.62); }
.cta--mint { background: var(--mint); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transform-origin: center;
  transition: transform .22s ease, width .22s ease, opacity .16s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(42deg); width: 24px; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-42deg); width: 24px; }

.mobile-menu {
  position: fixed;
  inset: 60px 0 auto;
  z-index: 99;
  width: 100%;
  max-height: calc(100dvh - 60px);
  overflow: auto;
  padding: 16px;
  background: rgba(7,9,8,.98);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 36px rgba(0,0,0,.34);
}

.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; gap: 2px; }
.mobile-menu .site-nav__link { width: 100%; padding: 8px 0; }
.mobile-menu__actions { display: flex; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }

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

.content-column { min-width: 0; display: grid; gap: 20px; }
.sidebar { position: sticky; top: 95px; display: grid; gap: 20px; min-width: 0; max-height: calc(100dvh - 115px); overflow: auto; scrollbar-width: thin; }
.sidebar-panel,
.sidebar-app,
.game-shortcuts {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.sidebar-panel > h2,
.game-shortcuts > h2 {
  padding: 11px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}

.sidebar-panel ul { margin: 0; padding: 0; list-style: none; }
.sidebar-row,
.sidebar-panel--article a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  transition: background-color .18s ease, transform .18s ease;
}

.sidebar-row:hover,
.sidebar-row:focus-visible,
.sidebar-panel--article a:hover,
.sidebar-panel--article a:focus-visible,
.sidebar-panel--article a.is-active { background: color-mix(in srgb, var(--paper) 74%, var(--mint)); transform: translateX(2px); }
.sidebar-row:hover::after,
.sidebar-row:focus-visible::after { content: ""; width: 5px; height: 12px; margin-left: auto; border-radius: 2px; background: var(--paprika); }
.sidebar-row img { flex: 0 0 18px; object-fit: contain; }
.sidebar-panel--article nav { display: grid; }

.sidebar-app { padding-bottom: 14px; background: var(--ink-2); color: #fff; }
.sidebar-app > img { width: 100%; height: 152px; object-fit: contain; object-position: 50% 100%; background: linear-gradient(140deg, #0b1d16, #16131c); }
.sidebar-app h2 { padding: 14px 14px 6px; font-size: 18px; line-height: 24px; color: var(--mint); }
.sidebar-app p { padding: 0 14px 14px; font-size: 13px; line-height: 19px; }
.sidebar-app .store-pair { display: grid; gap: 8px; padding: 0 10px; }
.sidebar-app .store-button { width: 100%; }

.game-shortcuts { display: grid; gap: 0; }
.game-shortcuts > a { position: relative; display: block; overflow: hidden; border-top: 1px solid rgba(255,255,255,.14); }
.game-shortcuts > a img { width: 100%; height: 120px; object-fit: cover; transition: transform .28s ease, filter .28s ease; }
.game-shortcuts > a span { position: absolute; left: 12px; right: 12px; bottom: 10px; color: #fff; font-weight: 800; text-shadow: 0 2px 8px #000; }
.game-shortcuts > a:hover img, .game-shortcuts > a:focus-visible img { transform: scale(1.035); filter: saturate(1.08); }

.hero {
  position: relative;
  min-height: 381px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero__background,
.hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__background { object-fit: cover; object-position: 68% 42%; }
.hero__shade { background: linear-gradient(90deg, rgba(3,8,6,.96) 0%, rgba(3,8,6,.78) 45%, rgba(3,8,6,.10) 78%); }
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--paprika) 0 28%, var(--paper) 28% 58%, var(--hungary-green) 58% 72%, var(--mint) 72% 88%, var(--violet) 88% 100%);
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(62%, 660px);
  min-height: 381px;
  padding: 65px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero h1 { color: var(--mint); font-size: clamp(30px, 3vw, 40px); line-height: 1.15; font-weight: 800; text-transform: uppercase; text-wrap: wrap; }
.hero p { margin-top: 16px; color: #f2f6f3; font-size: 15px; line-height: 23.25px; }
.hero .cta, .hero .store-pair { margin-top: 16px; }
.hero__subject { position: absolute; z-index: 2; right: 2%; bottom: 0; width: min(43%, 460px); height: 94%; object-fit: contain; object-position: 50% 100%; }
.hero--bonuses .hero__subject { right: 5%; width: min(39%, 390px); }
.hero--app .hero__subject { right: 2%; width: min(46%, 490px); }

.content-section {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(7,9,8,.07);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.content-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--paprika), var(--mint), var(--violet));
  opacity: .72;
}

.content-section > h2,
.service-card > h1 {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0 0 20px;
  color: var(--ink);
  font-size: 30px;
  line-height: 36px;
  font-weight: 650;
  text-transform: none;
  text-wrap: wrap;
}

.content-section > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: min(180px, 42%);
  height: 2px;
  background: linear-gradient(90deg, var(--paprika), var(--paper), var(--hungary-green), var(--mint));
  transform: scaleX(.12);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.content-section.is-in-view > h2::after { transform: scaleX(1); }
.section-body { display: flow-root; width: 100%; }
.section-body > * + * { margin-top: 20px; }
.section-body h3 {
  width: 100%;
  max-width: none;
  color: var(--ink);
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-body p,
.section-body ul,
.section-body ol,
.section-body .table-wrap,
.faq-answer { width: 100%; max-width: none; }
.source-list { padding-left: 24px; }
.source-list li { position: relative; padding-left: 4px; }
.source-list li + li { margin-top: 10px; }
.source-list:not(.source-list--steps) li::marker { color: var(--hungary-green); }
.source-list--steps { list-style: none; padding-left: 0; counter-reset: steps; }
.source-list--steps li { counter-increment: steps; min-height: 38px; padding: 7px 0 7px 48px; }
.source-list--steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 2px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--paprika);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--hungary-green);
}

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 4px; scrollbar-color: var(--paprika) #ecefea; }
table { width: 100%; min-width: 700px; border-collapse: separate; border-spacing: 0; text-align: left; }
th, td { padding: 12px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: middle; }
th { position: sticky; top: 0; z-index: 2; background: var(--ink); color: #fff; font-size: 13px; line-height: 18px; }
td:first-child, th:first-child { position: sticky; left: 0; z-index: 1; min-width: 180px; background: var(--paper); color: var(--ink); font-weight: 750; box-shadow: 2px 0 0 var(--paprika); }
th:first-child { z-index: 3; background: var(--ink); color: #fff; }
tbody tr:nth-child(even) td:not(:first-child), tr:nth-child(even) td:not(:first-child) { background: #f3f6f3; }
tr:last-child td { border-bottom: 0; }
th:last-child, td:last-child { border-right: 0; }
tr:hover td:not(:first-child) { background: color-mix(in srgb, var(--paper) 74%, var(--mint)); }
tr:hover td:first-child::after { content: ""; position: absolute; inset: 0 0 0 auto; width: 4px; background: var(--paprika); }

.pros-cons-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.comparison-card { position: relative; align-content: start; padding: 18px; border: 1px solid var(--line); background: #f7f9f7; transition: transform .18s ease, box-shadow .18s ease; }
.comparison-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid transparent; pointer-events: none; transition: border-color .18s ease; }
.comparison-card:hover, .comparison-card:focus-within { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(7,9,8,.10); }
.comparison-card:hover::after, .comparison-card:focus-within::after { border-color: color-mix(in srgb, var(--paprika) 42%, var(--hungary-green)); }
.comparison-card--pros { border-top: 4px solid var(--hungary-green); }
.comparison-card--cons { border-top: 4px solid var(--paprika); }
.comparison-card h3 { margin-bottom: 12px; }

.reviews-summary { display: flex; align-items: center; gap: 14px; width: fit-content; padding: 10px 14px; border-left: 4px solid var(--paprika); background: var(--paper); }
.reviews-summary strong { color: var(--ink); font-size: 24px; }
.reviews-summary span { color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.review-card { align-content: start; padding: 18px; border: 1px solid var(--line); background: linear-gradient(135deg, #fff, #f2f6f3); }
.review-card__meta { display: grid; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.review-card__meta p { font-weight: 800; }
.review-card__meta span { color: var(--paprika); letter-spacing: 2px; }
.review-card > p { margin-top: 14px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); background: #fbfcfb; }
.faq-list summary { display: grid; grid-template-columns: minmax(0,1fr) 34px; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; list-style: none; font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-marker { position: relative; width: 30px; height: 22px; border: 1px solid var(--paprika); background: var(--paper); transition: transform .2s ease, background .2s ease; }
.faq-marker::before, .faq-marker::after { content: ""; position: absolute; background: var(--hungary-green); }
.faq-marker::before { left: 7px; right: 7px; top: 9px; height: 2px; }
.faq-marker::after { top: 5px; bottom: 5px; left: 13px; width: 2px; transition: opacity .16s ease; }
details[open] .faq-marker { transform: translateY(2px); background: color-mix(in srgb, var(--paper) 78%, var(--mint)); }
details[open] .faq-marker::after { opacity: 0; }
.faq-answer { padding: 0 16px 16px; }
.faq-answer > * + * { margin-top: 14px; }

.byline-card { display: grid; gap: 8px; padding: 16px 18px; border-left: 4px solid var(--paprika); background: var(--paper); }
.byline-card p { margin: 0 !important; }
.responsible-panel { margin-top: 20px; padding: 18px; border: 1px solid var(--hungary-green); background: #f0f7f2; }
.responsible-panel > * + * { margin-top: 14px; }

.bonus-offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 22px 0; counter-reset: bonus-offer; }
.bonus-offer-card { position: relative; min-width: 0; padding: 22px 18px 18px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--mint) 42%, var(--line)); border-radius: var(--radius); background: linear-gradient(145deg, #fff 0 70%, color-mix(in srgb, var(--mint) 9%, white) 100%); box-shadow: 0 10px 24px rgba(3,25,18,.09); counter-increment: bonus-offer; }
.bonus-offer-card::before { content: counter(bonus-offer, decimal-leading-zero); position: absolute; top: 12px; right: 14px; color: color-mix(in srgb, var(--mint) 62%, var(--ink)); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.bonus-offer-card::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--mint), var(--hungary-green)); }
.bonus-offer-card h3 { margin: 0 34px 12px 0; color: var(--ink); font-size: 18px; line-height: 25px; }
.bonus-offer-card p { margin: 0; color: #34423a; font-size: 14px; line-height: 22px; }

.promo {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.promo__image, .promo__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.promo__image { object-fit: cover; }
.promo__overlay { background: linear-gradient(90deg, rgba(3,8,6,.96) 0 42%, rgba(3,8,6,.25) 72%, rgba(3,8,6,.05)); }
.promo--focus-left .promo__overlay { background: linear-gradient(270deg, rgba(3,8,6,.96) 0 42%, rgba(3,8,6,.25) 72%, rgba(3,8,6,.05)); }
.promo__copy { position: relative; z-index: 3; width: min(58%, 590px); min-height: 260px; padding: 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.promo--focus-left .promo__copy { margin-left: auto; }
.promo h2 { color: var(--mint); font-size: 28px; line-height: 34px; font-weight: 800; }
.promo p { margin-top: 10px; color: #f3f6f4; }
.promo .cta { margin-top: 16px; }
.promo__cutout { position: absolute; z-index: 2; right: 3%; bottom: -2%; width: min(34%, 290px); max-height: 92%; object-fit: contain; object-position: 50% 100%; }
.promo--focus-left .promo__cutout { right: auto; left: 4%; }
.promo::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: repeating-linear-gradient(90deg, var(--paprika) 0 18px, var(--paper) 18px 36px, var(--hungary-green) 36px 54px); }

.store-pair { display: flex; flex-wrap: wrap; gap: 12px; }
.section-body > .store-pair { margin: 20px 0 0; }
.section-body > .cta { margin-top: 20px; }
.store-button { display: grid; grid-template-columns: 32px minmax(0,1fr); align-items: center; gap: 11px; width: 224px; min-height: 60px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.24); border-radius: 4px; background: #111513; color: #fff; box-shadow: 0 5px 0 rgba(0,0,0,.35); transition: transform .16s ease, border-color .16s ease; }
.store-button:hover, .store-button:focus-visible { transform: translateY(-1px); border-color: var(--mint); }
.store-button:active { transform: translateY(2px); }
.store-button img { width: 32px; height: 32px; object-fit: contain; }
.store-button span { display: grid; gap: 1px; min-width: 0; }
.store-button small, .store-button strong { display: block; white-space: nowrap; line-height: 1.12; }
.store-button small { color: #ccd3cf; font-size: 11px; }
.store-button strong { font-size: 14px; }

.service-main, .not-found { width: min(100%, 1600px); margin: 20px auto 0; padding: 0 30px; }
.service-card { width: min(100%, 1020px); margin: 0 auto; padding: 20px; border-left: 3px solid var(--paprika); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.eyebrow { display: block; margin-bottom: 10px; color: var(--paprika); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-pair { padding: 20px 0; border-top: 1px solid var(--line); }
.service-pair h2 { margin-bottom: 10px; font-size: 20px; line-height: 28px; }
.not-found { min-height: 64vh; display: grid; place-items: center; }
.not-found section { width: min(100%, 760px); padding: 44px 30px; text-align: center; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
.not-found__code { display: block; color: var(--violet); font-size: 84px; line-height: 1; font-weight: 900; }
.not-found h1 { margin-top: 14px; font-size: 34px; }
.not-found p { margin-top: 14px; }
.not-found .cta { margin-top: 20px; }

.site-footer {
  width: 100%;
  margin: 20px 0 0;
  padding: 30px max(30px, calc((100vw - 1540px) / 2));
  color: #fff;
  background: var(--ink);
  border-top: 4px solid var(--mint);
}
.footer-inner { display: grid; grid-template-columns: 1.25fr .8fr .9fr 1.35fr; gap: 30px; align-items: start; }
.footer-brand, .site-footer nav, .footer-safety { display: grid; align-content: start; gap: 10px; }
.footer-brand p, .footer-safety p { color: #c5cec8; font-size: 13px; line-height: 20px; }
.site-footer nav a { width: fit-content; min-height: 28px; color: #e8eee9; font-size: 13px; }
.footer-safety { grid-template-columns: 48px minmax(0,1fr); }
.footer-safety strong { color: var(--mint); }
.footer-locales {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-locale-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 9px 12px;
  color: #f3f5f4;
  background: #343936;
  border: 1px solid #454c47;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.footer-locale-link:hover,
.footer-locale-link:focus-visible { color: #fff; background: #464d48; border-color: var(--mint); transform: translateY(-1px); }
.footer-locale-link[aria-current="page"] { color: var(--ink); background: var(--mint); border-color: var(--mint); }
.payment-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; margin-top: 24px; padding: 18px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.payment-strip img { width: auto; height: 26px; max-width: 120px; object-fit: contain; filter: grayscale(1) brightness(2.3); opacity: .72; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; color: #aeb8b1; font-size: 12px; }

.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: var(--ink); color: var(--mint); box-shadow: var(--shadow); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--mint) 80%, white); outline-offset: 3px; }

@media (max-width: 1359px) {
  .layout-grid { grid-template-columns: minmax(0, 1fr); }
  .sidebar { display: none; }
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 145px minmax(0,1fr) auto; }
  .header-actions { display: none; }
  .site-nav { justify-self: end; }
  .locale-picker { justify-self: end; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-locales { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 767px) {
  body {
    background-size: 760px 620px, 720px 660px, 560px 430px, 600px 460px, 56px 56px, 56px 56px, 100% 100%;
    background-position: 14% top, 86% 220px, center top, center 140px, 0 0, 0 0, 0 0;
  }
  body.menu-open { padding-top: 60px; }
  body.menu-open .site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
  }
  html { scroll-padding-top: 80px; }
  .site-header { min-height: 60px; }
  .header-inner { height: 60px; padding: 0 16px; grid-template-columns: 135px minmax(0,1fr) auto; gap: 12px; }
  .brand { width: 120px; }
  .brand img { width: 120px; height: auto; }
  .site-nav { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .locale-picker { justify-self: end; }
  .locale-menu { top: 68px; width: min(720px, calc(100vw - 24px)); }
  .layout-grid, .service-main, .not-found { margin-top: 16px; padding: 0 16px; }
  .content-column { gap: 16px; }
  .hero { min-height: 470px; }
  .hero__shade { background: linear-gradient(0deg, rgba(3,8,6,.98) 0%, rgba(3,8,6,.84) 58%, rgba(3,8,6,.18) 100%); }
  .hero__subject { right: -5%; bottom: 34%; width: min(68%, 360px); height: 56%; opacity: .82; }
  .hero--bonuses .hero__subject, .hero--app .hero__subject { right: -5%; width: min(68%, 360px); }
  .hero__copy { width: 100%; min-height: 470px; padding: 30px 20px; }
  .hero h1 { font-size: clamp(27px, 8vw, 36px); line-height: 1.12; }
  .content-section { padding: 20px; }
  .content-section > h2, .service-card > h1 { font-size: 27px; line-height: 34px; }
  .section-body h3 { font-size: 19px; line-height: 29px; }
  .pros-cons-grid, .review-grid, .bonus-offer-grid { grid-template-columns: minmax(0,1fr); }
  .promo { min-height: 360px; }
  .promo__overlay, .promo--focus-left .promo__overlay { background: linear-gradient(0deg, rgba(3,8,6,.88) 0%, rgba(3,8,6,.58) 58%, rgba(3,8,6,.08) 100%); }
  .promo__copy { width: 100%; min-height: 360px; padding: 22px 20px; margin-left: 0 !important; }
  .promo h2 { font-size: 25px; line-height: 31px; }
  .promo__cutout, .promo--focus-left .promo__cutout { left: auto; right: -2%; bottom: 38%; width: min(55%, 250px); max-height: 54%; opacity: .85; }
  .store-pair { flex-direction: column; align-items: stretch; width: min(100%, 310px); }
  .store-button { width: 100%; }
  .mobile-menu__actions { flex-direction: column; }
  .mobile-menu__actions .cta { width: 100%; }
  .footer-inner { grid-template-columns: minmax(0,1fr); }
  .footer-locales { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .site-footer { margin-top: 16px; padding: 28px 16px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .locale-menu {
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 5px;
    width: min(360px, calc(100vw - 20px));
    padding: 7px;
  }
  .locale-option {
    display: flex;
    justify-content: center;
    gap: 5px;
    min-height: 36px;
    padding: 5px 3px;
    font-size: 10px;
  }
  .locale-option .locale-flag { width: 18px; height: 18px; }
  .locale-name,
  .footer-locale-name { display: none; }
  .locale-code,
  .footer-locale-code { display: inline; letter-spacing: .04em; }
  .footer-locales { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 6px; padding-block: 14px; }
  .footer-locale-link { justify-content: center; gap: 6px; min-height: 38px; padding: 6px 4px; font-size: 10px; }
  .footer-locale-link .locale-flag { width: 18px; height: 18px; }
}

@media (max-width: 390px) {
  .hero { min-height: 510px; }
  .hero__copy { min-height: 510px; }
  .hero__subject { bottom: 39%; width: 72%; }
  .cta { max-width: 100%; min-width: 0; padding-inline: 18px; }
  .reviews-summary { width: 100%; align-items: flex-start; }
}

@media (max-width: 340px) {
  .header-inner { grid-template-columns: 105px minmax(0,1fr) auto; gap: 7px; padding-inline: 10px; }
  .brand, .brand img { width: 108px; }
  .locale-trigger { min-width: 56px; padding-inline: 8px; }
  .layout-grid, .service-main, .not-found { padding: 0 12px; }
  .content-section, .service-card { padding: 18px 16px; }
  .hero__copy { padding-inline: 16px; }
  .hero h1 { font-size: 26px; }
  .promo__copy { padding-inline: 16px; }
}

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