:root {
  --ink: #090b0f;
  --ink-2: #131820;
  --paper: #f2f3f5;
  --card: #ffffff;
  --text: #30333b;
  --muted: #6d7380;
  --mint: #08e2a6;
  --mint-dark: #00ad7d;
  --violet: #9e01ff;
  --red: #d91023;
  --sand: #d9ad62;
  --border: #d8dce2;
  --shadow: 0 4px 14px rgba(10, 13, 18, 0.1);
  --radius: 8px;
  --header-height: 75px;
  --cta-width: 180px;
  --cta-height: 44px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(217, 16, 35, .028) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(315deg, rgba(8, 226, 166, .025) 25%, transparent 25%) 0 0 / 28px 28px,
    var(--paper);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: #fff;
  background:
    linear-gradient(90deg, transparent 0 31%, rgba(8, 226, 166, .06) 31% 32%, transparent 32% 63%, rgba(217, 16, 35, .06) 63% 64%, transparent 64%),
    #050607;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  width: min(1600px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-link img { display: block; width: 126px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-right: auto; }
.nav-link, .quick-link, .article-link {
  position: relative;
  text-decoration: none;
}
.nav-link { padding: 26px 0 23px; color: #fff; font-weight: 700; }
.hover-woven-thread-trace::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 3px;
  background: linear-gradient(90deg, var(--mint) 0 36%, var(--red) 36% 60%, var(--sand) 60% 74%, var(--violet) 74%);
  clip-path: polygon(0 0, 42% 0, 42% 45%, 64% 45%, 64% 0, 100% 0, 100% 100%, 58% 100%, 58% 55%, 36% 55%, 36% 100%, 0 100%);
  transition: right .22s ease;
}
.hover-woven-thread-trace:hover::after,
.hover-woven-thread-trace:focus-visible::after,
.nav-link.active::after { right: 0; }
.nav-link.active { color: var(--mint); }
.locale-picker { position: relative; display: flex; flex: 0 0 auto; }
.locale-trigger {
  display: inline-flex;
  width: 58px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #15181d;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  cursor: pointer;
}
.locale-trigger:hover,
.locale-trigger:focus-visible,
.locale-trigger[aria-expanded="true"] { color: var(--mint); border-color: var(--mint); outline: none; }
.locale-flag {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  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;
  z-index: 1100;
  top: calc(var(--header-height) + 10px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  width: min(780px, calc(100vw - 32px));
  max-height: calc(100dvh - var(--header-height) - 20px);
  padding: 10px;
  overflow: hidden;
  color: #fff;
  background: #111419;
  border: 1px solid #3a3e47;
  border-radius: 10px;
  box-shadow: 0 20px 42px rgba(0,0,0,.48);
  transform: translateX(-50%);
}
.locale-menu[hidden] { display: none; }
.locale-option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  min-width: 0;
  min-height: 40px;
  padding: 7px 9px;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #30343a;
  border: 1px solid #424750;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.locale-option:hover,
.locale-option:focus-visible { color: #fff; background: #42474f; border-color: var(--mint); outline: none; }
.locale-option[aria-current="page"] { color: #06130f; background: var(--mint); border-color: var(--mint); }
.locale-code,
.footer-locale-code { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .cta { flex: 0 0 var(--cta-width); }

.cta {
  position: relative;
  display: inline-flex;
  width: var(--cta-width);
  height: var(--cta-height);
  min-height: var(--cta-height);
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  overflow: hidden;
  color: #06130f;
  background: var(--mint);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 5px 0 var(--mint-dark);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.cta:hover { background: #23efbb; }
.cta:active, .cta.is-pressed { transform: translateY(2px); box-shadow: 0 2px 0 var(--mint-dark); }
.cta::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(217, 16, 35, .62);
  clip-path: polygon(0 0, 13px 0, 13px 2px, calc(100% - 13px) 2px, calc(100% - 13px) 0, 100% 0, 100% 100%, calc(100% - 13px) 100%, calc(100% - 13px) calc(100% - 2px), 13px calc(100% - 2px), 13px 100%, 0 100%);
  opacity: 0;
  transform: scale(.94);
  transition: opacity .16s ease, transform .16s ease;
  pointer-events: none;
}
.cta.is-pressed::after { opacity: 1; transform: scale(1); }
.cta.secondary { color: #fff; background: transparent; border-color: var(--mint); box-shadow: none; }
.cta.secondary:hover { color: #06130f; background: var(--mint); }
.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 7px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  width: 24px;
  height: 3px;
  margin: 0;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transform: translateX(-50%);
  transition: top .22s ease, transform .22s ease, opacity .18s ease;
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 50%; opacity: 0; transform: translate(-50%, -50%) scaleX(.4); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 50%; transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  padding: 16px 30px 20px;
  background: #090b0f;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 28px rgba(0,0,0,.35);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu .nav-link { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .nav-link::after { bottom: 5px; }
.mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; justify-items: center; }
.mobile-actions .cta { width: 100%; }

.site-layout {
  width: min(1600px, 100%);
  margin: 0 auto;
  padding-inline: 30px;
}
.content-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 20px;
  align-items: start;
  padding-top: 95px;
  padding-bottom: 20px;
}
.content-column { min-width: 0; display: grid; gap: 20px; }
.left-sidebar, .right-sidebar { position: sticky; top: 95px; display: grid; gap: 20px; min-width: 0; }
.sidebar-card, .mobile-access-card, .games-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sidebar-card > h2, .mobile-access-card > h2 {
  margin: 0;
  padding: 11px 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--violet), #bd00ff);
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}
.sidebar-card nav { display: grid; }
.quick-link {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 12px;
  border-bottom: 1px solid #eceef1;
  color: #555b66;
}
.quick-link img { width: 22px; height: 22px; object-fit: contain; }
.quick-link::after, .article-link::after { bottom: 2px; left: 12px; }
.article-navigation { max-height: calc(100vh - 395px); }
.article-navigation nav { max-height: calc(100vh - 438px); overflow: auto; }
.article-link { padding: 9px 14px; border-bottom: 1px solid #eceef1; color: #555b66; line-height: 1.35; }
.article-link.active { color: #12161d; background: linear-gradient(90deg, rgba(8,226,166,.16), transparent); font-weight: 700; }
.article-link.active::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--red); }
.mobile-access-card { padding: 16px; background: linear-gradient(145deg, #161b23, #090b0f); color: #fff; }
.mobile-access-card > h2 { margin: 10px 0 8px; padding: 0; background: none; font-size: 18px; }
.mobile-access-card p { margin: 0 0 14px; color: #c8cdd5; }
.mobile-access-card .cta { width: var(--cta-width); }
.mobile-access-icons { display: flex; gap: 10px; }
.mobile-access-icons img { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.games-tabs { display: grid; grid-template-columns: 1fr; color: #fff; background: #070809; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.games-tabs span { padding: 12px 6px; text-align: center; border-top: 4px solid var(--mint); }
.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 8px; }
.game-thumb { display: block; overflow: hidden; border-radius: 7px; outline: 2px solid transparent; transition: transform .18s ease, outline-color .18s ease; }
.game-thumb:hover, .game-thumb:focus-visible { transform: translateY(-2px); outline-color: var(--sand); }
.game-thumb img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }

.hero {
  position: relative;
  min-height: 381px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: #07090d;
}
.hero-media, .promo-banner > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(3,5,8,.93) 0%, rgba(3,5,8,.78) 44%, rgba(3,5,8,.16) 72%, rgba(3,5,8,.04) 100%);
}
.hero-copy {
  display: flex;
  min-height: 381px;
  width: min(62%, 650px);
  padding: 50px 30px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  color: #fff;
}
.hero h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--mint);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.hero-copy > p { width: 100%; max-width: none; margin: 0; color: #fff; font-size: 15px; font-weight: 600; line-height: 23.25px; }
.hero-cta { margin-top: 0; }

.content-section {
  position: relative;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 128px;
  height: 5px;
  background: linear-gradient(90deg, var(--mint) 0 32%, var(--red) 32% 50%, var(--sand) 50% 65%, var(--violet) 65%);
  clip-path: polygon(0 0, 32% 0, 32% 55%, 52% 55%, 52% 0, 72% 0, 72% 55%, 100% 55%, 100% 100%, 65% 100%, 65% 45%, 45% 45%, 45% 100%, 0 100%);
  transform: scaleX(.15);
  transform-origin: left;
  opacity: .4;
  transition: transform .55s ease, opacity .4s ease;
}
.content-section.is-visible::before { transform: scaleX(1); opacity: 1; }
.content-section > h2 {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 0;
  color: #161a22;
  background: none;
  border: 0;
  box-shadow: none;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
}
.section-body { display: flow-root; width: 100%; max-width: none; }
.section-body > * { width: 100%; max-width: none; }
.section-body > .cta { width: var(--cta-width); }
.section-body > :first-child { margin-top: 0; }
.section-body > :last-child { margin-bottom: 0; }
.section-body p { margin: 0 0 20px; }
.section-body h3 {
  width: 100%;
  max-width: none;
  margin: 20px 0;
  padding: 0;
  color: #20242c;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
}
.source-list {
  margin: 0 0 20px;
  padding-left: 29px;
}
.source-list li { position: relative; margin: 0 0 9px; padding-left: 5px; }
.source-list li::marker { color: var(--violet); font-weight: 800; }
.content-section[data-section-title^="Cómo"] .source-list,
.content-section[data-section-title*="registr"] .source-list,
.content-section[data-section-title*="instal"] .source-list { list-style: none; padding-left: 44px; counter-reset: sierra-step; }
.content-section[data-section-title^="Cómo"] .source-list li,
.content-section[data-section-title*="registr"] .source-list li,
.content-section[data-section-title*="instal"] .source-list li { counter-increment: sierra-step; min-height: 32px; padding: 4px 0 8px 11px; }
.content-section[data-section-title^="Cómo"] .source-list li::before,
.content-section[data-section-title*="registr"] .source-list li::before,
.content-section[data-section-title*="instal"] .source-list li::before {
  content: counter(sierra-step);
  position: absolute;
  left: -38px;
  top: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #07110e;
  background: var(--mint);
  border: 2px solid #fff;
  outline: 1px solid var(--red);
  font-size: 12px;
  font-weight: 800;
}
.content-section[data-section-title^="Cómo"] .source-list li:not(:last-child)::after,
.content-section[data-section-title*="registr"] .source-list li:not(:last-child)::after,
.content-section[data-section-title*="instal"] .source-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -24px;
  top: 31px;
  bottom: -9px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--red) 0 4px, var(--sand) 4px 7px, var(--mint) 7px 11px);
}

.table-wrap {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  overflow-x: auto;
  border: 1px solid #cad0d8;
  border-radius: 7px;
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; min-width: 690px; border-collapse: separate; border-spacing: 0; }
th, td { padding: 12px 14px; border-right: 1px solid #dfe2e7; border-bottom: 1px solid #dfe2e7; vertical-align: middle; text-align: left; line-height: 1.45; }
th:last-child, td:last-child { border-right: 0; }
tbody:last-of-type tr:last-child td { border-bottom: 0; }
thead th { color: #fff; background: #111720; font-weight: 800; }
thead th:first-child { background: linear-gradient(135deg, #a70d1d, var(--red)); }
tbody:nth-of-type(even) td { background: #f3f7f6; }
tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 180px;
  color: #111820;
  background: #eef9f5;
  border-left: 4px solid var(--mint);
  font-weight: 700;
}
tbody tr:hover td { background: #e8fff7; }
tbody tr:hover td:first-child { border-left-color: var(--red); }

.hover-terrace-step-shift { position: relative; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.hover-terrace-step-shift::after {
  content: "";
  position: absolute;
  inset: 10px 8px auto auto;
  width: 34px;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 30%, transparent 30% 38%, var(--sand) 38% 64%, transparent 64% 72%, var(--mint) 72%);
  opacity: .35;
  transition: transform .18s ease, opacity .18s ease;
}
.hover-terrace-step-shift:hover,
.hover-terrace-step-shift:focus-within { transform: translateY(-2px); border-color: #bdc4ce; box-shadow: 0 9px 22px rgba(11,14,19,.12); }
.hover-terrace-step-shift:hover::after,
.hover-terrace-step-shift:focus-within::after { transform: translateX(-4px); opacity: 1; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-cons-card { position: relative; padding: 18px; border: 1px solid var(--border); border-left: 5px solid var(--mint); border-radius: 6px; background: #fbfcfc; }
.pros-cons-card.cons { border-left-color: var(--red); }
.pros-cons-card h3 { margin-top: 0; }
.bonus-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 4px 0 20px;
}
.bonus-offer-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 5px solid var(--mint);
  border-radius: 7px;
  background: linear-gradient(145deg, #fbfdfc, #f4f7f7);
}
.bonus-offer-card:nth-child(even) { border-left-color: var(--violet); }
.bonus-offer-card:nth-child(5) {
  grid-column: 1 / -1;
  border-left-color: var(--red);
}
.bonus-offer-card h3 {
  margin: 0 0 12px;
  padding-right: 34px;
  font-size: 17px;
  line-height: 24px;
}
.bonus-offer-card > :last-child { margin-bottom: 0; }
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.review-summary {
  display: inline-flex;
  min-height: 50px;
  margin: 0 0 20px;
  padding: 8px 16px;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: #111720;
  border-left: 5px solid var(--mint);
  border-radius: 6px;
}
.review-summary strong { color: var(--mint); font-size: 22px; line-height: 1; }
.review-summary span { font-size: 14px; font-weight: 700; }
.review-card { padding: 18px; border: 1px solid var(--border); border-radius: 6px; background: #fafbfc; }
.review-card h3 { margin-top: 0; color: #222832; font-size: 16px; line-height: 24px; text-transform: none; }
.review-card .review-rating { color: #7710a8; font-weight: 900; white-space: nowrap; }
.review-card p { margin-bottom: 0; font-style: italic; }
.faq-list { display: grid; gap: 12px; }
.faq-item { width: 100%; overflow: hidden; border: 1px solid var(--border); border-left: 5px solid var(--violet); border-radius: 6px; background: #fbfcfd; }
.faq-item[open] { border-left-color: var(--mint); }
.faq-item summary { display: flex; width: 100%; min-height: 54px; padding: 14px 50px 14px 16px; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  position: absolute;
  right: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--violet);
  clip-path: polygon(0 0, 100% 0, 100% 66%, 66% 66%, 66% 100%, 0 100%);
}
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; background: var(--violet); }
.faq-item summary i::before { width: 10px; height: 2px; left: 3px; top: 7px; }
.faq-item summary i::after { width: 2px; height: 10px; left: 7px; top: 3px; transition: transform .18s ease; }
.faq-item[open] summary i { border-color: var(--mint-dark); }
.faq-item[open] summary i::before, .faq-item[open] summary i::after { background: var(--mint-dark); }
.faq-item[open] summary i::after { transform: rotate(90deg); }
.faq-answer { padding: 0 16px 16px; }
.faq-answer > :last-child { margin-bottom: 0; }
.expert-summary { padding: 18px; border-left: 5px solid var(--sand); background: linear-gradient(90deg, rgba(217,173,98,.16), rgba(8,226,166,.05)); }
.responsible-block { width: 100%; margin-top: 20px; padding: 18px; border-left: 5px solid var(--red); background: #f7f1f2; }
.responsible-block > :first-child { margin-top: 0; }
.responsible-block > :last-child { margin-bottom: 0; }
.identity-line { margin-bottom: 8px !important; }
.section-body > p:has(+ .section-cta),
.section-body > p:has(+ .section-store-buttons) { margin-bottom: 0; }
.section-cta, .section-store-buttons { margin-top: 12px; }

.store-buttons { display: flex; width: auto; flex-wrap: wrap; gap: 12px; }
.store-button {
  display: inline-flex;
  width: var(--cta-width);
  height: var(--cta-height);
  min-height: var(--cta-height);
  padding: 4px 12px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  text-align: left;
  color: #fff;
  background: #111720;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 4px 0 #020303;
  transition: transform .12s ease, border-color .18s ease;
}
.store-button:hover { border-color: var(--mint); }
.store-button:active { transform: translateY(2px); box-shadow: 0 2px 0 #020303; }
.store-button img { flex: 0 0 auto; filter: brightness(0) invert(1); }
.store-button span { display: grid; justify-items: start; line-height: 1.05; text-align: left; }
.store-button small { font-size: 11px; font-weight: 600; }
.store-button strong { font-size: 16px; }

.promo-banner {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #07090d;
}
.promo-overlay { position: absolute; inset: 0; z-index: -2; }
.promo-banner.copy-left .promo-overlay { background: linear-gradient(90deg, rgba(4,6,9,.94), rgba(4,6,9,.78) 45%, rgba(4,6,9,.08) 76%); }
.promo-banner.copy-right .promo-overlay { background: linear-gradient(270deg, rgba(4,6,9,.94), rgba(4,6,9,.78) 45%, rgba(4,6,9,.08) 76%); }
.promo-copy { position: relative; display: flex; min-height: 260px; width: 54%; padding: 30px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 13px; color: #fff; }
.copy-right .promo-copy { margin-left: auto; }
.promo-copy h2 { width: 100%; margin: 0; color: var(--mint); font-size: 28px; line-height: 34px; }
.promo-copy p { width: 100%; margin: 0; color: #fff; line-height: 1.45; }

.site-footer { color: #d6d9df; background: #07090d; border-top: 4px solid var(--violet); }
.footer-inner {
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 34px 30px 22px;
  display: grid;
  grid-template-columns: minmax(250px, 1.5fr) 1fr 1fr minmax(240px, 1.2fr);
  gap: 28px;
  background-image: linear-gradient(135deg, rgba(217,16,35,.045) 25%, transparent 25%), linear-gradient(315deg, rgba(8,226,166,.04) 25%, transparent 25%);
  background-size: 30px 30px;
}
.footer-brand img { display: block; margin-bottom: 14px; }
.footer-brand p { margin: 0; color: #aeb4be; }
.site-footer nav { display: grid; align-content: start; gap: 7px; }
.site-footer nav h2 { margin: 0 0 6px; color: #fff; font-size: 15px; text-transform: uppercase; }
.site-footer nav a { width: fit-content; color: #c5cad2; text-decoration: none; }
.site-footer nav a:hover { color: var(--mint); }
.footer-trust { display: flex; align-items: center; gap: 14px; }
.footer-trust strong { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; color: #fff; border: 3px solid var(--red); border-radius: 50%; font-size: 18px; }
.footer-trust span { color: #aeb4be; }
.footer-locales {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-locale-link {
  display: inline-flex;
  min-width: 0;
  min-height: 46px;
  padding: 8px 12px;
  align-items: center;
  gap: 9px;
  color: #f2f4f7;
  background: #34373d;
  border: 1px solid #464a52;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  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: #454a52; border-color: var(--mint); outline: none; transform: translateY(-1px); }
.footer-locale-link[aria-current="page"] { color: #06130f; background: var(--mint); border-color: var(--mint); }
.payment-logos { grid-column: 1 / -1; display: flex; min-height: 42px; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.payment-logos img { max-width: 74px; max-height: 32px; filter: grayscale(1) brightness(1.5); opacity: .75; object-fit: contain; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 16px; color: #858c98; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 46px; height: 46px; color: #fff; background: var(--violet); border: 0; border-radius: 50%; box-shadow: var(--shadow); font-size: 24px; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }

.service-layout, .error-layout { min-height: calc(100vh - var(--header-height)); padding-top: 115px; padding-bottom: 40px; }
.service-card, .error-card { max-width: 1020px; margin: 0 auto; padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow); }
.eyebrow { margin: 0 0 8px; color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-card > h1, .error-card h1 { margin: 0 0 24px; color: #151922; font-size: 34px; line-height: 42px; text-transform: uppercase; }
.service-qa { margin: 0; }
.service-qa > div { padding: 18px 0; border-top: 1px solid var(--border); }
.service-qa dt { margin: 0 0 6px; color: #191e27; font-weight: 800; }
.service-qa dd { margin: 0; }
.error-card { text-align: center; }
.error-card > span { display: block; color: var(--violet); font-size: 92px; font-weight: 900; line-height: 1; }
.error-card .cta { margin-top: 12px; }

@media (max-width: 1359px) {
  .content-layout { display: block; max-width: 1080px; }
  .left-sidebar, .right-sidebar { display: none; }
  .content-column { width: 100%; }
}

@media (max-width: 1100px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; margin-left: 0; }
  .locale-picker { margin-left: auto; }
}

@media (max-width: 923px) {
  .footer-inner { grid-template-columns: 1fr 1fr; text-align: center; }
  .footer-brand, .footer-trust { grid-column: 1 / -1; }
  .footer-brand img { margin: 0 auto 14px; }
  .site-footer nav { justify-items: center; }
  .footer-trust { flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .footer-locales { grid-template-columns: repeat(4, minmax(0, 1fr)); width: 100%; gap: 7px; }
  .footer-locale-link { justify-content: center; min-height: 39px; padding: 6px; gap: 6px; }
  .footer-locale-name { display: none; }
  .footer-locale-code { display: inline; font-size: 11px; }
  .payment-logos { justify-content: center; }
}

@media (max-width: 638px) {
  :root { --header-height: 60px; }
  .header-inner { padding-inline: 16px; gap: 14px; }
  .brand-link img { width: 116px; }
  .menu-toggle { width: 44px; height: 42px; }
  .mobile-menu { top: 60px; padding: 12px 16px 16px; }
  .site-layout { padding-inline: 16px; }
  .content-layout { padding-top: 80px; padding-bottom: 16px; }
  .content-column { gap: 16px; }
  .hero { min-height: 520px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3,5,8,.25), rgba(3,5,8,.82) 52%, rgba(3,5,8,.96)); }
  .hero-copy { min-height: 520px; width: 100%; padding: 245px 20px 24px; justify-content: flex-end; gap: 16px; }
  .hero-app .hero-copy { padding-top: 210px; gap: 12px; }
  .hero h1 { font-size: 24px; line-height: 29px; }
  .hero-copy > p { font-size: 14px; line-height: 21px; }
  .hero-copy .cta { width: var(--cta-width); }
  .content-section { padding: 20px 16px; }
  .content-section::before { left: 16px; }
  .content-section > h2 { font-size: 25px; line-height: 31px; }
  .section-body h3 { font-size: 18px; line-height: 28px; }
  .pros-cons-grid, .review-grid, .bonus-offer-grid { grid-template-columns: 1fr; }
  .bonus-offer-card:nth-child(5) { grid-column: auto; }
  .promo-banner { min-height: 380px; }
  .promo-banner.copy-left .promo-overlay,
  .promo-banner.copy-right .promo-overlay { background: linear-gradient(180deg, rgba(3,5,8,.18), rgba(3,5,8,.73) 47%, rgba(3,5,8,.96)); }
  .promo-copy, .copy-right .promo-copy { min-height: 380px; width: 100%; margin: 0; padding: 190px 20px 22px; justify-content: flex-end; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; }
  .promo-copy h2 { font-size: 24px; line-height: 29px; }
  .promo-copy .cta { width: var(--cta-width); }
  .store-buttons { width: 100%; flex-direction: column; }
  .store-button { width: var(--cta-width); }
  .hero-store-buttons { display: grid; grid-template-columns: 1fr 1fr; flex-direction: initial; }
  .hero-store-buttons .store-button { width: var(--cta-width); padding-inline: 9px; }
  .footer-inner { padding: 28px 16px 20px; grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-trust, .footer-locales, .payment-logos, .copyright { grid-column: 1; }
  .footer-trust { align-items: center; }
  .payment-logos { justify-content: center; }
  .service-layout, .error-layout { padding-top: 80px; padding-bottom: 20px; }
  .service-card, .error-card { padding: 22px 18px; }
  .service-card > h1, .error-card h1 { font-size: 28px; line-height: 34px; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 638px) {
  .locale-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    width: min(392px, calc(100vw - 16px));
    padding: 7px;
  }
  .locale-option {
    display: flex;
    min-height: 36px;
    padding: 5px 4px;
    justify-content: center;
    gap: 5px;
  }
  .locale-option .locale-flag { width: 19px; height: 19px; }
  .locale-name { display: none; }
  .locale-code { display: inline; font-size: 10px; letter-spacing: .03em; }
}

@media (max-width: 410px) {
  .mobile-actions { grid-template-columns: 1fr; }
  .hero-store-buttons { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-copy { min-height: 560px; padding-top: 250px; }
  .hero-app { min-height: 520px; }
  .hero-app .hero-copy { min-height: 520px; padding-top: 180px; gap: 12px; }
}

@media (max-width: 340px) {
  .header-inner { gap: 9px; }
  .brand-link img { width: 104px; }
  .content-section > h2 { font-size: 23px; line-height: 29px; }
  .hero h1 { font-size: 22px; line-height: 27px; }
  .cta { white-space: normal; }
}

@media (hover: none) {
  .hover-terrace-step-shift:hover { transform: none; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .content-section::before { transform: scaleX(1); opacity: 1; }
}
