:root {
  --ink: #1a1d24;
  --pine: #0b3d3a;
  --moss: #0d9488;
  --glacier: #99f6e4;
  --ice: #ccfbf1;
  --paper: #f4faf9;
  --sand: #d1fae5;
  --copper: #0d9488;
  --ember: #0d9488;
  --wine: #0d9488;
  --swiss: #0d9488;
  --ok: #2f7354;
  --night: #062025;
  --cream: #f0fdfa;
  --line: rgba(26, 29, 36, 0.12);
  --shadow: 0 24px 60px rgba(20, 24, 32, 0.16);
  --display: "Sora", "Segoe UI", sans-serif;
  --ui: "Source Sans 3", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 22px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  max-width: 100%;
  overflow-x: clip;
}
::selection { background: #0d9488; color: #fff; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--ui);
  line-height: 1.6;
  border-top: 4px solid #0d9488;
  background-image:
    radial-gradient(circle at 12% -10%, rgba(13, 148, 136, 0.12), transparent 32%),
    radial-gradient(circle at 100% 0%, rgba(11, 61, 58, 0.12), transparent 36%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cpath fill='none' stroke='%2314241e' stroke-opacity='0.035' d='M90 10c30 20 50 40 50 80s-20 60-50 80c-30-20-50-40-50-80s20-60 50-80zM90 40c18 12 30 24 30 50s-12 38-30 50c-18-12-30-24-30-50s12-38 30-50z'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }
a { color: var(--moss); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #0f766e; }
button, .btn { font-family: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 80; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 20px;
  background: var(--night);
  color: var(--cream);
  border-bottom: 1px solid rgba(232, 243, 239, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.brand-logo {
  height: 44px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}
.site-header > .mobile-header-cta { display: none !important; }
.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
}
.nav a, .nav summary {
  color: rgba(251, 247, 239, 0.86);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
}
.nav > details > summary::after {
  content: "⌄";
  display: inline-block;
  margin-left: 7px;
  color: var(--glacier);
  font-size: 0.9em;
  line-height: 1;
  transition: transform 160ms ease;
}
.nav > details[open] > summary::after {
  transform: rotate(180deg);
}
.nav > a:hover,
.nav > summary:hover,
.nav > a.is-active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.nav details a { color: var(--ink); display: block; }
.nav details a:hover,
.nav details a:focus-visible,
.nav details a.is-active {
  background: #ccfbf1;
  color: #0d9488;
}
.nav details { position: relative; z-index: 50; }
.nav details ul {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 240px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 16px;
  padding: 10px;
  margin: 0;
  list-style: none;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
}
.badge-18 {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  border: 1px solid var(--ember);
  color: var(--ember);
  padding: 4px 8px;
  border-radius: 999px;
}
.nav > a.header-cta {
  background: #0d9488;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 16px;
}
.nav > a.header-cta:hover,
.nav > a.header-cta:focus-visible {
  background: #0f766e;
  color: #fff;
}
.footer-cta {
  margin-top: 12px;
}
.site-footer a.footer-cta {
  color: #fff;
}
.site-footer a.footer-cta:hover,
.site-footer a.footer-cta:focus-visible {
  color: #fff;
  background: #0f766e;
}

/* Layout */
.page {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  min-width: 0;
}
#main { min-width: 0; max-width: 100%; }
.anchor-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  padding: 8px 0 8px 18px;
  border-left: 2px solid var(--sand);
  max-height: calc(100vh - var(--header-h) - 2rem);
  overflow-y: auto;
}
.anchor-nav p {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
.anchor-nav a {
  position: relative;
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 7px 0 7px 16px;
  opacity: 0.62;
}
.anchor-nav a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 4px var(--paper);
}
.anchor-nav a.is-current {
  opacity: 1;
  font-weight: 600;
  color: var(--pine);
}
.anchor-nav a.is-current::before {
  background: var(--ember);
}
.anchor-nav a[data-i]::after {
  content: attr(data-i);
  float: right;
  font-family: var(--mono);
  font-size: 0.64rem;
  opacity: 0.45;
  margin-left: 8px;
}

.hero, .section, .card, .note, .pay-wrap, .faq details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 48px 42px;
  background: var(--night);
  color: var(--cream);
  min-height: 420px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(20, 24, 32, 0.96) 0%, rgba(20, 24, 32, 0.86) 42%, rgba(20, 24, 32, 0.34) 100%);
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}
.hero-promo {
  padding: 18px;
  margin-top: 22px;
  background: rgba(251, 247, 239, 0.92);
}
.content-visual,
.promo-visual {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(20, 24, 32, 0.08);
}
.content-visual {
  max-width: 640px;
  margin: 24px auto;
}
.content-visual img,
.promo-visual img {
  width: 100%;
  height: auto;
  border-radius: 11px;
}
.content-visual figcaption,
.promo-visual figcaption {
  padding: 9px 4px 1px;
  color: var(--pine);
  font-size: 0.72rem;
  text-align: center;
}
.hero > :not(.hero-background) {
  position: relative;
  z-index: 2;
}
.kicker {
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ember);
  margin: 0 0 12px;
}
.hero h1, .section h1, .section h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 16px;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 18ch; }
.lede { font-size: 1.15rem; max-width: 46ch; opacity: 0.92; }
.hero-follow {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 0 48px;
}
.hero-visual {
  width: 100%;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(20, 24, 32, 0.1);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 11px;
}
.hero-visual figcaption {
  padding: 7px 3px 1px;
  color: var(--pine);
  font-size: 0.68rem;
}
.hero-follow__body { min-width: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.88rem;
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary { background: #0d9488; color: #fff; }
a.btn-primary:hover,
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fff;
  background: #0f766e;
}
.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: not-allowed;
  box-shadow: none;
}
a.btn.is-disabled:hover,
.btn.is-disabled:hover,
.btn[aria-disabled="true"]:hover {
  color: #fff;
  background: #0d9488;
}
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1.5px solid currentColor;
}
a.btn-ghost:hover,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #fff;
  color: #0d9488;
  border-color: #fff;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: #0d9488;
  color: #fff;
  background: rgba(13, 148, 136, 0.25);
}

.section { padding: 36px 36px 40px; margin-top: 22px; }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.grid-3, .grid-2, .casino-grid {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.15fr 0.85fr; }
.card {
  padding: 22px;
  background: #fffdf8;
}
.card h3 { font-family: var(--display); margin: 0 0 8px; font-size: 1.35rem; }
.route-card__image {
  width: calc(100% + 44px);
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: -22px -22px 18px;
  border-bottom: 1px solid var(--line);
}
.criteria-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 6px;
}
.criteria-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ice);
  color: var(--pine);
  font-size: 0.8rem;
}
.criteria-strip b,
.step-number {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.guide-section { background: rgba(251, 247, 239, 0.88); }
.guide-step { position: relative; padding-top: 28px; }
.step-number {
  display: inline-block;
  margin-bottom: 10px;
}
.guide-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 16px;
  background: #fffdf8;
}
.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--pine);
}
.check-list span { color: var(--ok); font-weight: 700; }
.responsible-section { border-color: rgba(47, 115, 84, 0.24); }
.responsible-note {
  padding: 14px 16px;
  border-left: 3px solid var(--ok);
  background: rgba(47, 115, 84, 0.08);
}
.num {
  font-family: var(--mono);
  color: var(--copper);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

/* Original editorial UI mockups */
.visual-intro { max-width: 62ch; margin-bottom: 24px; }
.visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.screen-shot {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(20, 24, 32, 0.1);
}
.screen-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.shot-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 15px;
  background: var(--night);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
}
.shot-brand { color: #fff; }
.shot-balance { color: #f3c3c7; }
.shot-lock { color: #8ad2ae; }
.shot-body { padding: 22px 18px 20px; }
.shot-label {
  margin: 0 0 8px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}
.shot-body h3,
.shot-phone h3 {
  margin: 0 0 5px;
  color: var(--pine);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  line-height: 1.05;
}
.shot-muted { margin: 0; font-size: 0.78rem; opacity: 0.58; }
.shot-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0 17px;
}
.game-tile {
  display: grid;
  min-height: 76px;
  place-items: end start;
  padding: 9px;
  border-radius: 10px;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 -30px 30px rgba(0,0,0,0.17);
}
.game-tile-red { background: linear-gradient(145deg, #0d9488, #621421); }
.game-tile-blue { background: linear-gradient(145deg, #45688e, #0b3d3a); }
.game-tile-gold { background: linear-gradient(145deg, #c99c50, #6a422a); }
.shot-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ok);
  font-size: 0.73rem;
}
.shot-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}
.shot-phone {
  position: relative;
  max-width: 235px;
  min-height: 272px;
  margin: 19px auto 13px;
  padding: 27px 17px 17px;
  border: 7px solid var(--night);
  border-radius: 27px;
  background: linear-gradient(155deg, #fffdf8 0%, #ccfbf1 100%);
  box-shadow: 0 8px 0 #d9d2c8, 0 20px 30px rgba(20, 24, 32, 0.14);
}
.shot-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  background: var(--night);
}
.shot-mobile-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}
.shot-mobile-head b { color: var(--copper); font-size: 0.9rem; line-height: 0.6; }
.shot-progress {
  height: 5px;
  margin: 16px 0;
  border-radius: 99px;
  background: rgba(11, 61, 58, 0.12);
}
.shot-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--copper);
}
.shot-mobile-row,
.pay-choice {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-bottom: 1px solid rgba(26, 29, 36, 0.1);
  font-size: 0.76rem;
}
.shot-mobile-row span,
.pay-choice span { opacity: 0.58; }
.shot-button {
  width: 100%;
  margin-top: 15px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font: 600 0.76rem var(--ui);
}
.screen-shot figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px 15px;
  border-top: 1px solid var(--line);
  color: var(--pine);
  font-size: 0.8rem;
  margin-top: auto;
}
.screen-shot figcaption span {
  color: var(--copper);
  font: 0.68rem var(--mono);
}
.pay-choice { margin-top: 7px; border: 1px solid transparent; border-radius: 9px; }
.pay-choice b { font-size: 0.8rem; }
.pay-choice i { min-width: 29px; color: var(--copper); font-style: normal; text-align: right; }
.pay-choice-active { border-color: rgba(13, 148, 136, 0.35); background: var(--ice); }
.shot-footnote { margin: 14px 0 0; font-size: 0.67rem; opacity: 0.6; }

.casino-grid { grid-template-columns: 1fr; }
.casino {
  display: grid;
  grid-template-columns: 72px minmax(0, 1.2fr) minmax(160px, 1fr) 64px auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.casino-mark {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(160deg, #0d9488, #8e121c);
}
.casino h3 { margin: 0 0 4px; font-family: var(--display); }
.casino p { margin: 0; font-size: 0.92rem; opacity: 0.8; }
.casino-pay { opacity: 0.75; }
.casino-bonus {
  margin: 0;
  font-weight: 700;
  color: #0d9488;
  line-height: 1.25;
  opacity: 1;
}
.casino-bonus .bonus-prefix {
  display: inline;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  margin-right: 6px;
}
.casino-bonus > .bonus-stars {
  display: block;
  margin: 0 0 6px;
  color: #e7ae19;
  font: 700 0.78rem/1 Arial, sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.casino-bonus > strong {
  display: block;
  font: inherit;
}
.casino .btn { white-space: nowrap; justify-self: end; }
.stamp {
  width: 64px;
  height: 64px;
  border: 3px solid #0d9488;
  color: #0d9488;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.4rem;
  transform: rotate(-12deg);
  background: rgba(255,255,255,0.7);
}
.stamp strong {
  font: 600 1.4rem/1 var(--display);
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag {
  font-size: 0.75rem;
  background: var(--ice);
  color: var(--pine);
  padding: 3px 8px;
  border-radius: 999px;
}

.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 18px;
}
.payment-visual {
  max-width: 640px;
  margin: 22px 0 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(20, 24, 32, 0.08);
}
.payment-visual img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 11px;
}
.payment-visual figcaption {
  padding: 9px 4px 1px;
  color: var(--pine);
  font-size: 0.72rem;
}
.pay-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 0.92rem;
}
.pay-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.pay-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}
.pay-table tr.is-current td {
  background: var(--ice);
  font-weight: 600;
}
.yes { color: var(--ok); font-weight: 600; }
.no { color: var(--wine); }

.note { padding: 18px 20px; margin-top: 18px; background: #fff6e8; }
.warn { background: #f8ecec; border-color: rgba(138,47,47,0.18); }

.author-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.author-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid var(--sand);
}
.author-portrait {
  max-width: 280px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}
.author-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 11px;
}
.author-portrait figcaption {
  padding: 8px 4px 2px;
  color: var(--pine);
  font-size: 0.82rem;
}
.author-card h3 { font-family: var(--display); margin: 0 0 6px; }
.author-card p { margin: 0; }
.footer-logo {
  width: min(200px, 100%);
  height: auto;
  margin-bottom: 12px;
}
.profile-lead {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}
.profile-lead img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  border: 4px solid var(--sand);
}

.faq details { padding: 4px 18px; margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 12px 0; }
.faq p { margin: 0 0 14px; }

.site-footer {
  background: var(--night);
  color: var(--ice);
  width: 100%;
  max-width: 100%;
  padding: 48px 28px 28px;
  margin-top: 20px;
}
.footer-grid {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.site-footer a { color: var(--glacier); }
.site-footer a:hover,
.site-footer a:focus-visible { color: #fff; }
.site-footer h4 { font-family: var(--display); margin: 0 0 10px; }
.legal-line {
  max-width: 1240px;
  margin: 28px auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 0.82rem;
  opacity: 0.75;
}

.prose p { max-width: none; }
.prose h3 { margin: 1.4em 0 0.55em; }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0.6em 0 1em; }
.prose li { margin: 0.35em 0; }
.prose .content-table {
  display: table;
  table-layout: auto;
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.prose .content-table th,
.prose .content-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  background: #fffdf8;
}
.prose .content-table th {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--ice);
}
.checklist { padding-left: 18px; }
.checklist li { margin: 8px 0; }

@media (max-width: 980px) {
  .page {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px 16px 56px;
    gap: 0;
  }
  .anchor-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 20;
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 0;
    padding: 10px 0 14px;
    background: var(--paper);
  }
  .anchor-nav p { display: none; }
  .anchor-nav a {
    flex: 0 0 auto;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--cream);
    opacity: 1;
    white-space: nowrap;
  }
  .anchor-nav a::before { display: none; }
  .anchor-nav a[data-i]::after { display: none; }
  .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .guide-callout { grid-template-columns: 1fr; }
  .visual-grid { grid-template-columns: 1fr; }
  .screen-shot-mobile { order: 2; }
  .hero {
    min-height: 0;
    padding: 24px 20px 28px;
  }
  .hero-background { object-position: center center; }
  .hero-promo { padding: 14px; }
  .promo-visual { max-width: none; }
  .hero-follow {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .hero-visual { width: min(220px, 100%); }
  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    max-width: none;
  }
  .lede { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn {
    justify-content: center;
    min-height: 44px;
  }
  .section { padding: 22px 18px 24px; }
  .section h2 { font-size: clamp(1.35rem, 6vw, 1.8rem); }
  .site-header > .mobile-header-cta {
    display: inline-flex !important;
    margin-left: auto;
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .nav-toggle {
    display: block;
    margin-left: 0;
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 0.78rem;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--night);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav details ul { position: static; background: transparent; box-shadow: none; min-width: 0; }
  .nav details a { color: #fff; }
  .nav details a:hover,
  .nav details a:focus-visible {
    background: #fff;
    color: #0d9488;
  }
  .casino {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    grid-template-areas:
      "mark info stamp"
      "bonus bonus bonus"
      "btn btn btn";
    gap: 12px;
  }
  .casino-mark { grid-area: mark; width: 52px; height: 52px; font-size: 1.15rem; }
  .casino > div:nth-child(2) { grid-area: info; min-width: 0; }
  .casino-bonus { grid-area: bonus; }
  .stamp { grid-area: stamp; width: 52px; height: 52px; font-size: 1.15rem; }
  .stamp strong { font-size: 1.15rem; }
  .casino .btn {
    grid-area: btn;
    width: 100%;
    justify-content: center;
    justify-self: stretch;
  }
  .author-card, .profile-lead { grid-template-columns: 1fr; }
  .brand-logo { height: 36px; max-width: min(124px, 34vw); }
  .site-header { gap: 8px; padding: 8px 14px; }
  .site-footer { padding: 32px 16px 24px; }
  .footer-logo { width: min(200px, 100%); }
  .faq p, .author-card p, .section p { max-width: none; }
}

@media (max-width: 860px) {
  .anchor-nav { display: none; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .meta-row { font-size: 0.8rem; gap: 8px 14px; }
  .profile-lead img { width: 120px; height: 120px; }
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #0d9488;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 860px) {
  .anchor-nav { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Payment brand marks from D:\\NL\\image-bank (no uniqueify) */
.pay-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.25rem, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.pay-logo {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--hairline, var(--line, #d9ddd8));
  background: #fff;
}
.pay-logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 120 / 80;
  object-fit: contain;
  background: #fff;
}
.pay-logo figcaption {
  padding: 0.35rem 0.4rem 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.pay-method {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pay-method img {
  display: block;
  width: 4.5rem;
  height: 3rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--hairline, var(--line, #d9ddd8));
  flex: 0 0 auto;
}
.casino-logo,
.berth-logo {
  display: block;
  width: 6.5rem;
  height: 3.25rem;
  margin: 0 0 0.35rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--hairline, var(--line, #d9ddd8));
}
