:root {
  --ink: #080c0b;
  --ink-soft: #111815;
  --ink-panel: #17201c;
  --jade: #08d99a;
  --jade-dark: #009b6c;
  --plum: #8d20cf;
  --plum-dark: #5d158a;
  --limestone: #f1eee7;
  --paper: #ffffff;
  --field: #e8ebe9;
  --text: #313a36;
  --muted: #68736d;
  --line: #d7ddd9;
  --danger: #b6405a;
  --shadow: 0 10px 26px rgba(8, 12, 11, .09);
  --radius: 6px;
}

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

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

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background-color: var(--field);
  background-image:
    linear-gradient(112deg, transparent 0 48%, rgba(8, 217, 154, .035) 48% 49%, transparent 49% 100%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(8, 12, 11, .025) 39px 40px);
  font-family: "Segoe UI", Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
[hidden] { display: none !important; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--jade);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform .18s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 75px;
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

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

.brand-link { flex: 0 0 auto; }
.brand-link img { width: 124px; height: auto; }

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

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

.nav-link::after,
.footer-links a::after,
.article-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade) 0 62%, var(--plum) 62% 100%);
  clip-path: polygon(0 65%, 18% 20%, 36% 70%, 55% 30%, 72% 75%, 100% 20%, 100% 100%, 0 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.article-nav a:hover::after,
.article-nav a:focus-visible::after,
.article-nav a.is-active::after { transform: scaleX(1); }

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

.cta,
.store-button,
.internal-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--jade);
  border: 1px solid var(--jade);
  border-radius: 4px;
  box-shadow: 0 7px 0 rgba(0, 99, 70, .45);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
}

.cta::after,
.store-button::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 1px solid var(--plum);
  border-radius: 2px;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .16s ease, transform .16s ease;
  pointer-events: none;
}

.cta:hover,
.cta:focus-visible,
.store-button:hover,
.store-button:focus-visible,
.internal-button:hover,
.internal-button:focus-visible {
  background: #23e7ad;
  transform: translateY(-1px);
}

.cta.is-pressed,
.store-button.is-pressed {
  transform: translateY(4px);
  box-shadow: 0 3px 0 rgba(0, 99, 70, .45);
}

.cta.is-pressed::after,
.store-button.is-pressed::after { opacity: .85; transform: scale(1); }

.cta--compact { min-height: 42px; padding: 0 19px; }
.cta--ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); box-shadow: none; }
.cta--ghost:hover, .cta--ghost:focus-visible { color: var(--ink); background: #fff; }

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 4px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle > span:nth-child(1) { transform: translate(-50%, calc(-50% - 7px)); }
.menu-toggle > span:nth-child(3) { transform: translate(-50%, calc(-50% + 7px)); }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

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

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

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

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

.sidebar-card,
.game-jump {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar-title {
  min-height: 42px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(110deg, var(--plum-dark), var(--plum));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(8,217,154,.18);
}

.sidebar-switches { display: grid; }
.sidebar-switches a {
  min-height: 44px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.sidebar-switches a:last-child { border-bottom: 0; }
.sidebar-switches a:hover, .sidebar-switches a:focus-visible { color: var(--jade-dark); background: #f3f8f6; }

.quick-links { display: grid; }
.quick-link {
  min-height: 42px;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 22px minmax(0,1fr) auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  transition: background-color .16s ease, padding-left .16s ease;
}
.quick-link:last-child { border-bottom: 0; }
.quick-link img { width: 20px; height: 20px; object-fit: contain; }
.quick-link b { min-width: 24px; color: var(--muted); font-size: 12px; text-align: right; }
.quick-link:hover, .quick-link:focus-visible { padding-left: 15px; background: #f1f8f5; }

.article-nav { padding-bottom: 8px; }
.article-nav a {
  display: block;
  padding: 9px 13px 10px;
  border-bottom: 1px solid #edf0ee;
  font-size: 12px;
  line-height: 1.4;
}
.article-nav a::after { right: 13px; bottom: 4px; left: 13px; height: 2px; }
.article-nav a.is-active { color: var(--jade-dark); font-weight: 800; }

.app-rail { padding: 16px; color: #fff; background: var(--ink-panel); border-color: rgba(255,255,255,.08); }
.sidebar-kicker { margin: 0 0 6px; color: var(--jade); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.app-rail h2 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.app-rail p:not(.sidebar-kicker) { margin: 0 0 14px; color: #cad2ce; font-size: 13px; }

.app-access-pair { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button {
  width: 190px;
  min-height: 56px;
  padding: 8px 14px;
  justify-content: flex-start;
  gap: 10px;
  color: #fff;
  background: var(--ink);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 5px 0 rgba(0,0,0,.35);
}
.store-button:hover, .store-button:focus-visible { color: var(--ink); background: var(--jade); border-color: var(--jade); }
.store-button img { flex: 0 0 28px; width: 28px; height: 28px; color: currentColor; filter: brightness(0) invert(1); }
.store-button:hover img, .store-button:focus-visible img { filter: brightness(0); }
.store-button small, .store-button strong { display: block; }
.store-button small { margin-bottom: 2px; font-size: 10px; font-weight: 600; }
.store-button strong { font-size: 16px; line-height: 1; }
.app-rail .app-access-pair { display: grid; }
.app-rail .store-button { width: 100%; min-height: 52px; }
.inline-download-action { margin: 4px 0 28px; display: flex; }
.inline-download-action .store-button { width: min(100%, 240px); }
.inline-download-pair { margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.inline-download-pair .inline-download-action { width: auto; margin: 0; }

.game-jumps { display: grid; gap: 12px; }
.game-jump { min-height: 116px; color: #fff; background: var(--ink); }
.game-jump img { width: 100%; height: 116px; object-fit: cover; filter: saturate(.82) contrast(1.08); transition: transform .24s ease, filter .24s ease; }
.game-jump::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8,12,11,.88)); }
.game-jump span { position: absolute; z-index: 1; right: 12px; bottom: 10px; left: 12px; font-weight: 800; }
.game-jump:hover img, .game-jump:focus-visible img { transform: scale(1.035); filter: saturate(1) contrast(1.1); }

.hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 381px;
  padding: 65px 30px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(8,12,11,.96) 0%, rgba(8,12,11,.82) 42%, rgba(8,12,11,.12) 74%, rgba(8,12,11,.02) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: var(--focus-x) var(--focus-y);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(118deg, transparent 0 34px, rgba(8,217,154,.08) 34px 35px, transparent 35px 70px),
    linear-gradient(180deg, transparent 72%, rgba(141,32,207,.24));
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy { width: min(640px, 66%); max-width: none; }
.hero-kicker,
.promo-kicker {
  margin: 0 0 12px;
  color: var(--jade);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0 0 16px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero-lead { width: 100%; max-width: none; margin: 0 0 16px; color: #edf4f1; font-size: 15px; line-height: 23.25px; }
.hero .app-access-pair { flex-wrap: nowrap; }

.content-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(8,12,11,.055);
}

.content-section::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--jade), var(--plum));
  transform: scaleY(.12);
  transform-origin: top;
  transition: transform .24s ease;
}

.content-section:hover::before,
.content-section:focus-within::before { transform: scaleY(1); }

.section-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
}

.section-heading h2,
.section-flow h2 {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  text-wrap: wrap;
}

.atlantic-seam {
  display: block;
  width: 112px;
  height: 5px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--jade) 0 58%, var(--plum) 58% 100%);
  clip-path: polygon(0 52%, 10% 5%, 20% 58%, 31% 10%, 43% 70%, 57% 18%, 70% 74%, 84% 22%, 100% 63%, 100% 100%, 0 100%);
  transform-origin: left center;
}

.motion-ready .reveal-seam .atlantic-seam { transform: scaleX(.08); opacity: .3; transition: transform .5s ease, opacity .5s ease; }
.motion-ready .reveal-seam.is-revealed .atlantic-seam { transform: scaleX(1); opacity: 1; }

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

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

.section-flow > :first-child { margin-top: 0; }
.section-flow > :last-child { margin-bottom: 0; }
.section-flow p, .faq-answer p { margin: 0 0 20px; }

.section-flow h3,
.faq-item h3 {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 20px 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.source-list {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  counter-reset: source-step;
}

.source-list li {
  position: relative;
  min-height: 26px;
  padding: 3px 0 3px 30px;
  margin: 0 0 8px;
}
.source-list li:last-child { margin-bottom: 0; }
.source-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: var(--jade);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--jade-dark);
  transform: rotate(45deg);
}

.source-list--steps li {
  counter-increment: source-step;
  padding: 2px 0 14px 42px;
  margin: 0;
}
.source-list--steps li::before {
  content: counter(source-step);
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--jade);
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 900;
  transform: none;
}
.source-list--steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  bottom: 0;
  left: 13px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--jade-dark) 0 5px, transparent 5px 9px);
}

.table-wrap {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  scrollbar-color: var(--plum) #e6ebe8;
  scrollbar-width: thin;
}

.source-table {
  width: 100%;
  min-width: 650px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
}
.source-table th, .source-table td {
  min-width: 120px;
  padding: 12px 13px;
  border-right: 1px solid #dfe5e1;
  border-bottom: 1px solid #dfe5e1;
  text-align: left;
  vertical-align: middle;
}
.source-table thead th {
  color: #fff;
  background: var(--ink);
  border-color: #303a35;
  font-weight: 800;
}
.source-table tbody tr:nth-child(even) > * {
  background-image: linear-gradient(105deg, rgba(8,217,154,.055), rgba(141,32,207,.035));
}
.source-table tbody tr:hover > * { background-color: #eef8f4; }
.source-table tr > :first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 170px;
  color: var(--ink);
  background-color: #f3f5f3;
  box-shadow: inset 4px 0 0 var(--jade), 5px 0 8px rgba(8,12,11,.04);
  font-weight: 700;
}
.source-table thead tr > :first-child { z-index: 3; color: #fff; background-color: var(--ink); }
.source-table tr:last-child > * { border-bottom: 0; }
.source-table tr > :last-child { border-right: 0; }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 6px solid transparent;
  border-radius: 4px;
  background:
    linear-gradient(#fff,#fff) padding-box,
    repeating-linear-gradient(180deg, var(--jade) 0 8px, transparent 8px 13px, var(--plum) 13px 21px, transparent 21px 26px) border-box;
  transition: box-shadow .18s ease, transform .18s ease;
}
.faq-item:hover, .faq-item:focus-within { box-shadow: 0 8px 18px rgba(8,12,11,.1); }
.faq-item summary {
  min-height: 58px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 24px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 { grid-column: 1; grid-row: 1; margin: 0; font-size: 16px; line-height: 1.45; text-transform: none; }
.faq-marker {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(8,12,11,.3);
  border-radius: 50%;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.faq-marker::before,
.faq-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--plum);
  transform: translate(-50%, -50%);
  transition: opacity .18s ease, background-color .18s ease;
}
.faq-marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item:hover .faq-marker, .faq-item:focus-within .faq-marker { border-color: var(--plum); transform: scale(1.08); }
.faq-item[open] .faq-marker { border-color: var(--jade); background: var(--jade); }
.faq-item[open] .faq-marker::before { background: var(--ink); }
.faq-item[open] .faq-marker::after { opacity: 0; }
.faq-answer { padding: 0 16px 16px; border-top: 1px solid #e8ece9; }
.faq-answer > :first-child { margin-top: 14px; }

.editorial-byline {
  position: relative;
  margin: 24px 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 6px solid var(--jade);
  border-radius: 4px;
  background: #f7f9f8;
  box-shadow: 0 10px 24px rgba(8,12,11,.08);
}
.editorial-byline::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--plum));
}
.section-flow .editorial-byline p {
  margin: 0;
  padding: 11px 16px;
  display: grid;
  grid-template-columns: 160px minmax(0,1fr);
  gap: 12px;
  border-top: 1px solid #e3e8e5;
  line-height: 1.5;
}
.section-flow .editorial-byline p:first-child {
  padding-top: 14px;
  padding-bottom: 14px;
  color: #fff;
  background: var(--ink-panel);
  border-top: 0;
}
.editorial-byline strong { color: var(--ink); }
.editorial-byline p:first-child strong { color: var(--jade); }
.editorial-byline p:first-child span { font-size: 17px; font-weight: 700; }

.review-summary {
  margin: 22px 0 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: var(--ink-panel);
  border-left: 6px solid var(--jade);
  border-radius: 4px;
}
.review-summary strong { color: var(--jade); font-size: 24px; line-height: 1; }
.review-summary > span:not(.review-summary-stars) { color: #dce4e0; font-weight: 700; }
.review-summary-stars { margin-left: auto; color: #f4c44e; letter-spacing: 3px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.review-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #f7faf8 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(8,12,11,.07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--plum));
}
.review-card:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(8,12,11,.12); }
.review-card-head { margin-bottom: 13px; display: flex; align-items: flex-start; gap: 10px; }
.section-flow .review-meta { margin: 0; display: flex; flex-wrap: wrap; gap: 0 5px; line-height: 1.35; }
.reviewer-name { color: var(--ink); font-weight: 800; }
.review-location { color: var(--muted); }
.review-separator { color: var(--plum); }
.review-score { color: var(--plum); font-weight: 800; }
.review-stars { margin-left: auto; flex: 0 0 auto; color: #e3aa20; font-size: 14px; letter-spacing: 1px; white-space: nowrap; }
.section-flow .review-body { margin: 0; color: #303833; line-height: 1.7; }
.review-card:nth-child(5):last-child { grid-column: 1 / -1; }

.bonus-offer-grid {
  margin: 26px 0 28px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 14px;
}
.bonus-offer-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #f5f9f7 100%);
  border: 1px solid var(--line);
  border-top: 4px solid var(--jade);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(8,12,11,.07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.bonus-offer-card:nth-child(4),
.bonus-offer-card:nth-child(5) { grid-column: span 3; }
.bonus-offer-card:nth-child(even) { border-top-color: var(--plum); }
.bonus-offer-card:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(8,12,11,.12); }
.bonus-offer-card-top { margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bonus-offer-number { color: var(--jade); font-size: 25px; font-weight: 900; line-height: 1; }
.bonus-offer-card:nth-child(even) .bonus-offer-number { color: var(--plum); }
.bonus-offer-tag {
  padding: 5px 8px;
  color: #fff;
  background: var(--ink-panel);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-flow .bonus-offer-card h3 {
  min-height: 58px;
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.42;
  text-transform: none;
}
.section-flow .bonus-offer-card p { margin: 0; color: #303833; line-height: 1.65; }
.section-flow .bonus-offer-card > p { flex: 1 1 auto; }
.bonus-offer-action { margin-top: 18px; }
.bonus-offer-action .cta { width: 100%; }

.section-cta { margin-top: 20px; }
.section-cta--before-responsible { margin: 24px 0 28px; }
.responsible-gaming > :last-child { margin-bottom: 0; }

.promo-banner {
  min-height: 260px;
  padding: 34px 30px;
  display: flex;
  align-items: center;
  background-image: var(--promo-image);
  background-size: cover;
  background-position: var(--focus-x) var(--focus-y);
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.promo-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 5px;
  background: linear-gradient(180deg, var(--jade), var(--plum));
  transform: skewX(-14deg);
}
.promo-banner--focus-right::before { background: linear-gradient(90deg, rgba(8,12,11,.96) 0%, rgba(8,12,11,.78) 47%, rgba(8,12,11,.1) 78%); }
.promo-banner--focus-right::after { left: 57%; }
.promo-banner--focus-left { justify-content: flex-end; }
.promo-banner--focus-left::before { background: linear-gradient(270deg, rgba(8,12,11,.96) 0%, rgba(8,12,11,.78) 47%, rgba(8,12,11,.1) 78%); }
.promo-banner--focus-left::after { right: 57%; }
.promo-copy { width: min(480px, 52%); max-width: none; }
.promo-copy h2 { width: 100%; max-width: none; margin: 0 0 12px; font-size: 28px; line-height: 1.2; }
.promo-copy > p:not(.promo-kicker) { width: 100%; max-width: none; margin: 0 0 16px; color: #f1f4f2; }

.site-footer {
  margin-top: 20px;
  color: #dfe7e3;
  background-color: var(--ink);
  background-image:
    repeating-linear-gradient(116deg, transparent 0 45px, rgba(8,217,154,.055) 45px 46px, transparent 46px 92px),
    linear-gradient(90deg, transparent 0 65%, rgba(141,32,207,.12));
}
.footer-inner,
.footer-bottom {
  width: 100%;
  max-width: 1600px;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0 auto;
}
.footer-inner {
  padding-top: 38px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(260px,1.2fr) minmax(300px,1fr) minmax(260px,1fr);
  gap: 40px;
  align-items: start;
}
.footer-brand img { width: 124px; margin-bottom: 14px; }
.footer-brand p, .footer-responsible p { width: 100%; max-width: none; margin: 0; color: #b9c4bf; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-links h2 { margin: 0 0 12px; color: #fff; font-size: 14px; text-transform: uppercase; }
.footer-links a { display: table; margin: 0 0 8px; color: #c9d2ce; }
.footer-links a::after { bottom: -2px; height: 2px; }
.footer-responsible { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 14px; align-items: start; }
.footer-responsible img { width: 44px; height: 44px; }
.footer-responsible strong { display: block; margin-bottom: 6px; color: #fff; }
.footer-bottom { min-height: 54px; padding-top: 15px; padding-bottom: 15px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #9eaaa4; font-size: 12px; }

.service-main {
  width: 100%;
  max-width: 1600px;
  padding: 0 30px;
  margin: 20px auto 0;
}
.service-block {
  width: 100%;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 16px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--jade-dark); text-decoration: underline; text-underline-offset: 3px; }
.service-eyebrow { margin: 0 0 8px; color: var(--plum); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-block > h1 { width: 100%; max-width: none; margin: 0 0 20px; color: var(--ink); font-size: 30px; line-height: 36px; text-transform: uppercase; }
.service-qa { width: 100%; padding: 18px 0; border-top: 1px solid var(--line); }
.service-qa h2 { width: 100%; max-width: none; margin: 0 0 8px; color: var(--ink); font-size: 20px; line-height: 1.4; }
.service-qa p { width: 100%; max-width: none; margin: 0; }
.service-block--404 { min-height: 420px; display: grid; align-content: center; justify-items: start; }
.service-block--404 > p:not(.service-eyebrow) { margin: 0 0 20px; }
.internal-button { min-height: 46px; }

:focus-visible { outline: 3px solid var(--plum); outline-offset: 3px; }

@media (max-width: 1359.98px) {
  .site-grid { max-width: 1080px; grid-template-columns: minmax(0, 1fr); }
  .left-sidebar, .right-sidebar { display: none; }
}

@media (max-width: 960px) {
  .desktop-nav { gap: 18px; }
  .header-actions .cta--ghost { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-responsible { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 80px; }
  .site-header, .header-inner { height: 60px; }
  .header-inner { padding: 0 16px; }
  .brand-link img { width: 105px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .menu-scrim {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: block;
    background: rgba(8,12,11,.58);
  }
  .mobile-menu {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 1002;
    max-height: calc(100vh - 60px);
    padding: 14px 16px 18px;
    display: grid;
    gap: 2px;
    overflow-y: auto;
    color: #fff;
    background: var(--ink-panel);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .mobile-menu .nav-link { min-height: 46px; padding: 0 8px; justify-content: center; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); }
  .mobile-menu .nav-link::after { left: calc(50% - 46px); right: calc(50% - 46px); transform-origin: center; }
  .mobile-menu-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 12px; }
  .mobile-menu-actions .cta { width: 100%; }

  .site-grid,
  .service-main { padding-right: 16px; padding-left: 16px; margin-top: 16px; }
  .content-column { gap: 16px; }
  .hero { min-height: 470px; padding: 44px 20px; align-items: flex-end; background-position: var(--focus-x) var(--focus-y); }
  .hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,12,11,.1) 20%, rgba(8,12,11,.96) 78%); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 26px; line-height: 1.22; }
  .hero .app-access-pair { flex-direction: column; align-items: stretch; }
  .hero .store-button { width: min(100%, 240px); }
  .inline-download-action .store-button { width: 100%; }
  .inline-download-pair { display: grid; grid-template-columns: 1fr; }
  .inline-download-pair .inline-download-action { width: 100%; }

  .content-section { padding: 20px; }
  .section-heading h2, .section-flow h2 { font-size: 25px; line-height: 1.28; }
  .section-flow h3, .faq-item h3 { font-size: 18px; line-height: 1.45; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card:nth-child(5):last-child { grid-column: auto; }
  .bonus-offer-grid { grid-template-columns: 1fr; }
  .bonus-offer-card,
  .bonus-offer-card:nth-child(4),
  .bonus-offer-card:nth-child(5) { grid-column: auto; }
  .section-flow .bonus-offer-card h3 { min-height: 0; }
  .table-wrap { -webkit-overflow-scrolling: touch; }
  .source-table { min-width: 620px; }

  .promo-banner { min-height: 360px; padding: 28px 20px; align-items: flex-end; }
  .promo-banner--focus-left { justify-content: flex-end; }
  .promo-banner--focus-right::before { background: linear-gradient(180deg, rgba(8,12,11,.05) 25%, rgba(8,12,11,.97) 86%), linear-gradient(90deg, rgba(8,12,11,.72), transparent 70%); }
  .promo-banner--focus-left::before { background: linear-gradient(180deg, rgba(8,12,11,.05) 25%, rgba(8,12,11,.97) 86%), linear-gradient(270deg, rgba(8,12,11,.72), transparent 70%); }
  .promo-banner::after { display: none; }
  .promo-copy { width: 100%; max-width: none; background: transparent; border: 0; border-radius: 0; box-shadow: none; backdrop-filter: none; }
  .promo-copy h2 { font-size: 24px; }

  .footer-inner, .footer-bottom { padding-right: 16px; padding-left: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-responsible { grid-column: auto; }
  .footer-bottom { flex-direction: column; justify-content: flex-start; gap: 4px; }
  .service-block { padding: 22px 20px; }
  .service-block > h1 { font-size: 26px; line-height: 1.25; }
}

@media (max-width: 390px) {
  .hero { min-height: 500px; }
  .hero h1 { font-size: 24px; }
  .mobile-menu-actions { grid-template-columns: 1fr; }
  .content-section, .service-block { padding-right: 16px; padding-left: 16px; }
  .faq-item summary { padding-right: 12px; padding-left: 12px; grid-template-columns: minmax(0,1fr) 24px; gap: 9px; }
  .faq-answer { padding-right: 12px; padding-left: 12px; }
  .section-flow .editorial-byline p { grid-template-columns: 1fr; gap: 3px; }
  .review-summary { flex-wrap: wrap; }
  .review-summary-stars { width: 100%; margin-left: 0; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .motion-ready .reveal-seam .atlantic-seam { transform: scaleX(1); opacity: 1; }
}
