:root {
  --bg: #160101;
  --bg-deep: #080204;
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .12);
  --line: rgba(255, 224, 146, .20);
  --gold: #f4c45b;
  --gold-soft: #ffe7a4;
  --ember: #f05a2c;
  --ruby: #8f151a;
  --violet: #6436a5;
  --teal: #34c6b6;
  --ink: #fff9ed;
  --muted: #dbc9ad;
  --shadow: 0 24px 74px rgba(0, 0, 0, .42);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Nunito, "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.68;
  background:
    radial-gradient(circle at 20% 8%, rgba(240, 90, 44, .24), transparent 25rem),
    radial-gradient(circle at 88% 8%, rgba(100, 54, 165, .28), transparent 24rem),
    linear-gradient(155deg, #410606 0%, #1b0306 48%, #070203 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(60deg, rgba(244, 196, 91, .15) 0 1px, transparent 1px 30px),
    linear-gradient(120deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 34px);
  background-size: 34px 34px;
  mask-image: linear-gradient(#000, transparent 78%);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
}

.shell {
  width: min(var(--content), calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 2, 4, .86);
  backdrop-filter: blur(18px);
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 196, 91, .44);
  border-radius: 12px;
  background:
    radial-gradient(circle at 42% 22%, rgba(255, 231, 164, .28), transparent 42%),
    linear-gradient(145deg, rgba(143, 21, 26, .95), rgba(22, 1, 1, .95));
  box-shadow: 0 14px 34px rgba(240, 90, 44, .24);
}

.brand-mark img {
  width: 32px;
  filter: drop-shadow(0 0 10px rgba(244, 196, 91, .55));
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.site-nav a,
.header-cta,
.button,
.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.site-nav a {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
}

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

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  color: #260203;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  box-shadow: 0 14px 28px rgba(240, 90, 44, .22);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.hero {
  padding: 28px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: 18px;
  align-items: stretch;
}

.hero-copy,
.hero-art,
.feature-card,
.game-card,
.payment-panel,
.method-grid article,
.phone-frame,
.cta-panel,
.faq,
.section-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 5vw, 52px);
  min-height: 548px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 95% 0, rgba(244, 196, 91, .22), transparent 38%),
    radial-gradient(circle at 8% 96%, rgba(52, 198, 182, .12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .115), rgba(255, 255, 255, .045));
}

.crumbs {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(244, 196, 91, .34);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(244, 196, 91, .10);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-top: 14px;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(1.72rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
  color: var(--muted);
}

p a {
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(244, 196, 91, .42);
  text-underline-offset: 3px;
}

.hero-copy p {
  max-width: 720px;
  margin-top: 16px;
  font-size: 1.08rem;
}

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

.button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
}

.button-primary {
  color: #260203;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  box-shadow: 0 18px 38px rgba(240, 90, 44, .26);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 548px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(244, 196, 91, .26), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(100, 54, 165, .28), transparent 40%),
    linear-gradient(170deg, rgba(32, 3, 8, .94), rgba(8, 2, 4, .94));
}

.hero-art > img {
  position: absolute;
  top: 35px;
  left: 50%;
  width: min(74%, 350px);
  transform: translateX(-50%) rotate(-8deg);
  filter: drop-shadow(0 0 28px rgba(244, 196, 91, .64));
}

.score-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 20px;
  border: 1px solid rgba(244, 196, 91, .24);
  border-radius: 8px;
  background: rgba(8, 2, 4, .78);
  backdrop-filter: blur(12px);
}

.score-panel span,
.feature-card span,
.game-card span,
.method-grid span {
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.score-panel strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.score-panel p {
  margin-top: 10px;
}

.section {
  padding: 24px 0;
}

.page-hero {
  padding: 28px 0 18px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
  gap: 18px;
  align-items: start;
}

.page-hero-copy,
.page-panel,
.answer-block,
.seo-table-wrap,
.page-link-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.page-hero-copy {
  padding: clamp(24px, 5vw, 42px);
}

.page-hero-copy h1 {
  max-width: 820px;
}

.page-hero-copy p {
  max-width: 780px;
  margin-top: 14px;
}

.page-panel {
  padding: 22px;
}

.page-panel h2,
.answer-block h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.page-panel h3 {
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.page-panel p,
.answer-block p {
  margin-top: 12px;
}

.answer-block {
  padding: 24px;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.answer-card {
  padding: 16px;
  border: 1px solid rgba(255, 224, 146, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.answer-card strong {
  display: block;
  color: var(--gold-soft);
}

.answer-card p {
  margin-top: 8px;
}

.seo-table-wrap {
  overflow-x: auto;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.seo-table th,
.seo-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 224, 146, .12);
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.next-pages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-link-card {
  padding: 18px;
}

.page-link-card span {
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-link-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.page-link-card p {
  margin-top: 10px;
}

.section-ribbon {
  position: relative;
}

.section-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-top: 1px solid rgba(255, 224, 146, .10);
  border-bottom: 1px solid rgba(255, 224, 146, .10);
  background: linear-gradient(90deg, rgba(100, 54, 165, .14), rgba(240, 90, 44, .10), rgba(52, 198, 182, .10));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
}

.section-copy,
.payment-panel {
  padding: 28px;
}

.section-copy h2,
.payment-panel h2,
.cta-panel h2,
.section-heading h2 {
  margin-top: 12px;
}

.section-copy p,
.payment-panel p,
.section-heading p,
.cta-panel p {
  margin-top: 14px;
}

.feature-grid,
.game-grid,
.method-grid,
.mobile-checks {
  display: grid;
  gap: 12px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.game-card,
.method-grid article {
  padding: 20px;
}

.feature-card h3,
.game-card h3 {
  margin-top: 10px;
}

.feature-card p,
.game-card p {
  margin-top: 10px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 18px;
}

.game-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-card {
  min-height: 230px;
  background:
    radial-gradient(circle at 80% 0, rgba(244, 196, 91, .14), transparent 44%),
    linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, .045));
}

.inline-shot {
  margin: 18px 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.inline-shot img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

.inline-shot figcaption {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 224, 146, .12);
  color: var(--gold-soft);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-shot img {
  max-height: 240px;
}

.mid-shot {
  margin-bottom: 18px;
}

.mid-shot img {
  max-height: 560px;
}

.end-shot {
  width: min(390px, 100%);
}

.end-shot img {
  max-height: 520px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .62fr);
  gap: 14px;
  align-items: start;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
}

.screenshot-wide {
  grid-column: span 1;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.screenshot-card figcaption {
  padding: 13px 15px;
  border-top: 1px solid rgba(255, 224, 146, .12);
  color: var(--gold-soft);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: 0 0 16px rgba(244, 196, 91, .32);
}

.method-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.method-grid article {
  display: grid;
  align-content: center;
  min-height: 150px;
}

.method-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.method-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: center;
}

.phone-frame {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 24px;
}

.phone-screen {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(230px, 100%);
  aspect-ratio: 9 / 16;
  border: 7px solid rgba(255, 249, 237, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 32%, rgba(244, 196, 91, .24), transparent 36%),
    linear-gradient(180deg, rgba(65, 6, 6, .94), rgba(8, 2, 4, .94));
  box-shadow: inset 0 0 0 1px rgba(244, 196, 91, .20), 0 20px 40px rgba(0, 0, 0, .30);
}

.phone-screen span {
  color: var(--gold-soft);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}

.phone-screen img {
  width: 132px;
  margin: 18px 0;
  filter: drop-shadow(0 0 22px rgba(244, 196, 91, .56));
}

.phone-screen strong {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #260203;
  background: linear-gradient(135deg, var(--gold), var(--ember));
}

.mobile-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.mobile-checks span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 224, 146, .16);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .055);
  font-weight: 900;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(52, 198, 182, .16), transparent 34%),
    linear-gradient(135deg, rgba(143, 21, 26, .50), rgba(100, 54, 165, .22));
}

.faq {
  padding: 28px;
}

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

.faq-item {
  border: 1px solid rgba(255, 224, 146, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  padding: 0 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 0;
  font-weight: 900;
}

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

.faq-item p {
  margin: 0 0 18px;
}

.site-footer {
  padding: 34px 0 96px;
  border-top: 1px solid rgba(255, 224, 146, .12);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px;
}

.footer-grid h2 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.footer-grid p {
  margin-top: 12px;
}

.footer-grid nav {
  display: flex;
  gap: 10px 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
}

.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 224, 146, .10);
  font-size: .9rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  color: #260203;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
}

body.is-menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.25;
}

.faq-answer p {
  margin-top: 9px;
}

.age-gate,
.offer-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
}

.age-gate {
  z-index: 120;
  background: rgba(8, 2, 4, .78);
  backdrop-filter: blur(6px);
}

.offer-modal {
  z-index: 110;
}

.age-gate[hidden],
.offer-modal[hidden],
.cookie-banner[hidden],
.cookie-settings[hidden] {
  display: none;
}

.offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 2, 4, .66);
  backdrop-filter: blur(5px);
}

.age-card,
.offer-dialog,
.cookie-banner {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(244, 196, 91, .16), transparent 36%),
    linear-gradient(180deg, rgba(49, 8, 12, .98), rgba(12, 2, 4, .98));
  box-shadow: var(--shadow);
}

.age-card,
.offer-dialog {
  width: min(100%, 520px);
  padding: clamp(22px, 4vw, 34px);
}

.offer-dialog {
  position: relative;
  z-index: 1;
}

.age-card h2,
.offer-dialog h2 {
  margin-top: 12px;
}

.age-card p,
.age-card small,
.offer-dialog p,
.cookie-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.age-card small {
  display: block;
}

.age-actions,
.offer-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.offer-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 82px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px;
}

.cookie-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.cookie-settings {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted);
}

.cookie-settings label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cookie-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 1060px) {
  .topbar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    min-height: 62px;
  }

  .brand {
    margin-right: auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  body.is-menu-open .site-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 2, 4, .98);
    box-shadow: var(--shadow);
  }

  body.is-menu-open .site-nav a {
    justify-content: flex-start;
    min-height: 44px;
  }

  .hero-grid,
  .split,
  .split-reverse,
  .mobile-layout,
  .footer-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-art {
    min-height: 430px;
  }

  .hero-art > img {
    width: min(58%, 300px);
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .answer-grid,
  .next-pages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--content), calc(100% - 18px));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark img {
    width: 28px;
  }

  .brand strong {
    font-size: .9rem;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 11px;
    font-size: .84rem;
  }

  .menu-toggle {
    min-height: 34px;
    padding: 0 10px;
    font-size: .84rem;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-copy,
  .section-copy,
  .payment-panel,
  .page-hero-copy,
  .page-panel,
  .answer-block,
  .cta-panel,
  .faq {
    padding: 20px;
  }

  .hero-copy {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    overflow-wrap: normal;
  }

  .hero-actions,
  .cta-panel,
  .age-actions,
  .offer-actions,
  .cookie-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .game-grid,
  .method-grid,
  .mobile-checks,
  .answer-grid,
  .next-pages {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-art > img {
    width: min(66%, 250px);
  }

  .score-panel strong {
    font-size: 1.55rem;
  }

  .screenshot-card img {
    max-height: 420px;
  }

  .inline-shot img {
    max-height: 360px;
  }

  .hero-shot img {
    max-height: 190px;
  }

  .mid-shot img,
  .end-shot img {
    max-height: 430px;
  }

  .phone-frame {
    min-height: 360px;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 74px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
    margin-top: 0;
  }

  .age-card,
  .offer-dialog {
    width: min(calc(100vw - 32px), 340px);
    padding: 20px;
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .age-gate,
  .offer-modal {
    justify-items: start;
  }

  .age-card p,
  .age-card small,
  .offer-dialog p,
  .cookie-copy p {
    max-width: 31ch;
  }
}

@media (max-width: 600px) {
  .topbar {
    justify-content: flex-start;
  }

  .brand {
    margin-right: 0;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-cta {
    display: none;
  }

  .hero-copy h1,
  .hero-copy p,
  .hero-actions {
    max-width: 330px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
  }
}

@media (max-width: 420px) {
  .topbar {
    gap: 6px;
  }

  .brand-copy strong {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
