:root {
  --bg: #111513;
  --bg-deep: #060806;
  --panel: rgba(255, 255, 255, .075);
  --panel-strong: rgba(255, 255, 255, .12);
  --line: rgba(214, 255, 62, .27);
  --gold: #d6ff3e;
  --gold-soft: #efffad;
  --ember: #ffb31a;
  --ruby: #ef4b3e;
  --violet: #8764a8;
  --teal: #45d0c1;
  --ink: #fcfff4;
  --muted: #c7cfbe;
  --shadow: 0 24px 74px rgba(0, 0, 0, .42);
  --content: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.68;
  background: linear-gradient(155deg, #342c16 0%, #111513 46%, #09191a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(60deg, rgba(214, 255, 62, .10) 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(8, 10, 8, .93);
  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: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 14px 34px rgba(69, 208, 193, .18);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  filter: none;
}

.brand strong {
  display: block;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}

.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: #15170d;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  box-shadow: 0 14px 28px rgba(242, 204, 114, .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: linear-gradient(135deg, rgba(69, 208, 193, .17), rgba(239, 75, 62, .10) 52%, rgba(242, 204, 114, .07));
}

.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(69, 208, 193, .34);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(69, 208, 193, .10);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-top: 14px;
  font-size: 4.2rem;
}

h2 {
  font-size: 2.5rem;
}

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(69, 208, 193, .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: #15170d;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  box-shadow: 0 18px 38px rgba(214, 255, 62, .22);
}

.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: linear-gradient(170deg, rgba(239, 75, 62, .22), rgba(6, 8, 6, .96));
}

.hero-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.score-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 20px;
  border: 1px solid rgba(214, 255, 62, .34);
  border-radius: 8px;
  background: rgba(10, 13, 10, .90);
  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: 0;
  text-transform: uppercase;
}

.score-panel strong {
  display: block;
  margin-top: 8px;
  font-family: "Trebuchet MS", "Segoe UI", sans-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;
  font-size: 3.6rem;
}

.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: 2.35rem;
}

.page-panel h3 {
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-family: "Trebuchet MS", "Segoe UI", sans-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(214, 255, 62, .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(214, 255, 62, .12);
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: 0;
  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: 0;
  text-transform: uppercase;
}

.page-link-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Trebuchet MS", "Segoe UI", sans-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(214, 255, 62, .10);
  border-bottom: 1px solid rgba(214, 255, 62, .10);
  background: linear-gradient(90deg, rgba(69, 208, 193, .14), rgba(214, 255, 62, .10), rgba(239, 75, 62, .13));
}

.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: linear-gradient(150deg, rgba(69, 208, 193, .10), 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);
}

.mobile-source-shot {
  display: grid;
  place-items: center;
  background: #060806;
}

.mobile-source-shot img {
  width: auto;
  max-width: 100%;
  height: min(640px, 72vh);
  object-fit: contain;
  object-position: center;
}

.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(214, 255, 62, .12);
  color: var(--gold-soft);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compact-shot {
  width: min(100%, 420px);
  margin-right: auto;
  margin-left: auto;
}

.portrait-shot {
  width: min(100%, 520px);
  margin-right: auto;
  margin-left: auto;
  background: var(--bg-deep);
}

.portrait-shot img,
.end-shot.portrait-shot img {
  max-height: none;
  object-fit: contain;
}

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

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

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

.end-shot {
  width: 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(214, 255, 62, .12);
  color: var(--gold-soft);
  font-weight: 950;
  letter-spacing: 0;
  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(69, 208, 193, .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: "Trebuchet MS", "Segoe UI", sans-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: linear-gradient(180deg, rgba(135, 100, 168, .24), rgba(2, 7, 10, .96));
  box-shadow: inset 0 0 0 1px rgba(69, 208, 193, .20), 0 20px 40px rgba(0, 0, 0, .30);
}

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

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

.phone-screen strong {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #15170d;
  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(214, 255, 62, .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: linear-gradient(135deg, rgba(69, 208, 193, .34), rgba(239, 75, 62, .22));
}

.faq {
  padding: 28px;
}

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

.faq-item {
  border: 1px solid rgba(214, 255, 62, .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(214, 255, 62, .12);
}

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

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid > div:first-child {
  gap: 12px;
}

.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(214, 255, 62, .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: #15170d;
  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: 1.3rem;
  line-height: 1.25;
}

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

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

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

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

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

.offer-dialog,
.cookie-banner {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(160deg, rgba(42, 38, 22, .99), rgba(6, 8, 6, .99));
  box-shadow: var(--shadow);
}

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

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

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

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

.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: "Trebuchet MS", "Segoe UI", sans-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(7, 10, 9, .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: minmax(0, 1fr);
  }

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

  .hero-art > img { width: 100%; }

  .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: 38px;
    height: 38px;
  }

  .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;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  h1 {
    font-size: 2.5rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .cta-panel,
  .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: 100%; }

  .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;
  }

  .mobile-source-shot img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
  }

  .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;
  }

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

  .offer-modal {
    justify-items: start;
  }

  .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;
  }

  h2,
  .page-panel h2,
  .answer-block h2 {
    font-size: 1.85rem;
  }

  .page-hero-copy h1 {
    font-size: 2.5rem;
  }

  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;
  }
}

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

.portrait-shot img,
.end-shot.portrait-shot img {
  height: auto;
  max-height: none;
  object-fit: contain;
}
