:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --brand: #e11d48;
  --brand-dark: #be185d;
  --green: #16a34a;
  --green-pressed: #15803d;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --android: #16883f;
  --windows: #475569;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05), 0 8px 24px rgba(15, 23, 42, .05);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, .14);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  background: var(--bg);
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
}
body.is-sheet-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { border: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; width: 100%; height: auto; }
main, section, footer, header, div { min-width: 0; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid rgba(225, 29, 72, .35);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: 760px; }

.trustbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
}
.trustbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #334155;
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
}
.trustbar__dot { color: var(--border-strong); }

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
  padding: 30px 0 34px;
}
.hero__grid { display: grid; gap: 24px; }
.hero__content { order: 0; }
.hero-gallery { order: 1; }
.eyebrow {
  margin: 0 0 9px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow span { color: #94a3b8; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 9.1vw, 48px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 span { color: var(--brand); }
h2 {
  margin: 0;
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.13;
}
h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.hero__lead {
  margin: 14px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.55;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 27px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dcfce7;
  color: var(--green-pressed);
  font-size: 12px;
  font-weight: 900;
}
.checklist--hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 650;
}
.checklist--hero li:last-child { grid-column: 1 / -1; }
.hero__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 13px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.hero__price > div { display: grid; gap: 2px; }
.price-reference { color: var(--muted); font-size: 12px; }
.price-label { color: #334155; font-size: 12px; font-weight: 700; }
.hero__price strong {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 31px;
  letter-spacing: -.045em;
  line-height: 1;
}
.hero__price strong small { font-size: 15px; letter-spacing: 0; }
.compatibility-note {
  margin: 12px 3px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}
.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, #e2e8f0 15%, #f8fafc 35%, #e2e8f0 55%);
  background-size: 220% 100%;
  animation: skeleton 1.35s linear infinite;
  transition: opacity .2s ease;
}
.image-frame img {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity .2s ease;
}
.image-frame.is-loaded::before,
.image-frame.is-error::before { opacity: 0; pointer-events: none; }
.image-frame.is-loaded:not(.has-slideshow) img { opacity: 1; }
.image-frame.is-error img { display: none; }
.image-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}


/* Hero: carrossel infinito com 15 prévias. Cada grupo é duplicado
   no HTML para o loop continuar sem salto. */
.hero-gallery {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.hero-gallery__heading { padding: 18px 18px 14px; text-align: center; }
.hero-gallery__heading .eyebrow { margin-bottom: 5px; }
.hero-gallery__heading h2 { font-size: clamp(22px, 6vw, 30px); }
.hero-gallery__heading h2 span { color: var(--brand); }
.hero-gallery__viewport {
  overflow: hidden;
  width: 100%;
  padding: 2px 0 15px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.hero-gallery__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: hero-gallery-scroll 72s linear infinite;
}
.hero-gallery__group {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
}
.hero-gallery__item {
  flex: 0 0 auto;
  width: clamp(218px, 67vw, 286px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #e2e8f0;
  box-shadow: 0 7px 18px rgba(15, 23, 42, .10);
}
.hero-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.hero-gallery__note {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}
.hero-gallery__track,
.hero-gallery:hover .hero-gallery__track,
.hero-gallery:focus-within .hero-gallery__track,
.hero-gallery:active .hero-gallery__track {
  animation-play-state: running;
}

@keyframes hero-gallery-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.button {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
}
.button span { font-size: 11px; font-weight: 600; opacity: .88; }
.button:active { transform: translateY(1px) scale(.99); }
.button--large { min-height: 58px; font-size: 15px; }
.button--primary {
  background: var(--green);
  box-shadow: 0 8px 18px rgba(22, 163, 74, .20);
}
.button--primary:hover { background: var(--green-pressed); }
.button--brand { background: var(--brand); }
.button--brand:hover { background: var(--brand-dark); }
.button--secondary { background: #fff; border-color: var(--border-strong); color: #334155; box-shadow: none; }

.benefit-strip { background: #fff; border-bottom: 1px solid var(--border); }
.benefit-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 16px 0;
}
.benefit-strip__grid > div {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 6px;
  padding: 10px 6px;
}
.benefit-strip__grid > div > span { grid-row: 1 / 3; font-size: 19px; }
.benefit-strip__grid strong { font-size: 12px; line-height: 1.25; }
.benefit-strip__grid small { color: var(--muted); font-size: 10px; }

.section { padding: 52px 0; }
.section--tinted { background: #f1f5f9; border-block: 1px solid var(--border); }
.section-heading { max-width: 700px; margin: 0 auto 27px; text-align: center; }
.section-heading h2 { margin-bottom: 10px; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 15px; }
.section-heading--left { margin-inline: 0; text-align: left; }

.video-shell {
  overflow: hidden;
  margin-bottom: 17px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0f172a;
  box-shadow: var(--shadow-sm);
}
.video-shell lt-v2 { display: block; width: 100%; min-height: 190px; }

.games-list { display: grid; gap: 22px; }
.game-card {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.game-card__media { aspect-ratio: 16 / 9; }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; }

.game-card__media.has-slideshow { isolation: isolate; }
.game-card__slides { position: absolute; inset: 0; z-index: 2; }
.game-card__media .game-card__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity .72s ease, transform 1.1s ease;
}
.game-card__media.is-loaded .game-card__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.game-card__media .game-card__slide.has-error { visibility: hidden; }
.game-card__slide-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .56);
}
.game-card__slide-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .46);
  transition: width .28s ease, background-color .28s ease;
}
.game-card__slide-dots span.is-active { width: 15px; border-radius: 999px; background: #fff; }

.game-number {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(15, 23, 42, .86);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.game-card__body { padding: 18px; }
.game-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.stars { flex: 0 0 auto; color: #f59e0b; font-size: 13px; letter-spacing: 1px; white-space: nowrap; }
.tag-row, .spec-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row { margin: 11px 0 12px; }
.tag-row span {
  padding: 4px 9px;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  background: #fff1f2;
  color: #9f1239;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}
.game-card__body > p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}
.spec-row { margin-bottom: 13px; }
.spec-row span {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-weight: 650;
}
.game-card__body .preview-warning {
  margin: 0 0 12px;
  padding: 10px 11px;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  background: var(--warning-bg);
  color: #854d0e;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}
.download-actions { display: grid; gap: 9px; }
.download-button {
  width: 100%;
  min-height: 60px;
  padding: 10px 12px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease;
}
.download-button:active { transform: scale(.99); }
.download-button--android { background: var(--android); }
.download-button--windows { background: var(--windows); }
.download-button__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .15);
  font-size: 20px;
}
.download-button > span:last-child { display: grid; min-width: 0; }
.download-button strong { font-size: 14px; }
.download-button small { font-size: 11px; font-weight: 550; opacity: .88; }
.game-details { margin-top: 12px; border-top: 1px solid var(--border); }
.game-details summary {
  min-height: 44px;
  padding: 12px 0 8px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.game-details div { padding: 2px 0 4px; }
.game-details div p { margin: 4px 0; color: var(--muted); font-size: 12px; }
.inline-offer {
  display: grid;
  gap: 13px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  background: #f0fdf4;
}
.inline-offer > div { display: grid; text-align: center; }
.inline-offer strong { font-size: 18px; }
.inline-offer span { color: #475569; font-size: 12px; }

.access-grid { display: grid; gap: 30px; align-items: center; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: start; }
.steps li > span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffe4e6;
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 900;
}
.steps strong { display: block; margin-top: 1px; font-size: 15px; }
.steps p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.member-preview { margin: 0 auto; width: min(100%, 330px); }
.member-preview .image-frame {
  aspect-ratio: 640 / 1146;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}
.member-preview img { width: 100%; height: 100%; object-fit: cover; }
.member-preview figcaption { margin-top: 10px; color: var(--muted); font-size: 11px; text-align: center; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.benefits-grid > div {
  min-height: 126px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  font-size: 22px;
}
.benefits-grid strong { margin-top: 8px; font-size: 13px; line-height: 1.25; }
.benefits-grid span { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.testimonials {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 330px);
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 3px 2px 14px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.testimonials figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}
.testimonials img { aspect-ratio: 720 / 1280; object-fit: cover; background: #111827; }
.testimonials figcaption { padding: 9px 12px; color: var(--muted); font-size: 11px; }
.swipe-hint { margin: 7px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.offer-card {
  padding: 24px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.offer-card h2 { margin-bottom: 19px; }
.offer-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.offer-list li { position: relative; padding-left: 27px; color: #334155; font-size: 14px; font-weight: 650; }
.offer-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.offer-price {
  display: grid;
  justify-items: center;
  margin: 0 0 15px;
  padding: 18px 12px;
  border: 1px solid #fecdd3;
  border-radius: var(--radius);
  background: #fff1f2;
  text-align: center;
}
.offer-price > span { color: #64748b; font-size: 12px; }
.offer-price > strong { color: var(--text); font-size: 47px; letter-spacing: -.055em; line-height: 1.05; }
.offer-price > strong small { font-size: 18px; }
.offer-price > b { color: var(--brand-dark); font-size: 12px; }
.secure-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 13px; }
.secure-row span { padding: 6px 8px; border-radius: 999px; background: #f8fafc; color: #475569; font-size: 10px; font-weight: 700; }
.offer-explanation { margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; text-align: center; }

.guarantee {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 22px 18px;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  background: #f0fdf4;
}
.guarantee__icon { width: 58px; height: 58px; border-radius: 17px; display: grid; place-items: center; background: #dcfce7; font-size: 27px; }
.guarantee h2 { font-size: 25px; }
.guarantee p:last-child { margin: 8px 0 0; color: #475569; font-size: 14px; }

.faq-list { display: grid; gap: 9px; }
.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
}
.faq-list summary {
  min-height: 50px;
  padding: 14px 46px 14px 14px;
  position: relative;
  display: flex;
  align-items: center;
  color: #1e293b;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: var(--brand-dark);
  font-size: 19px;
  font-weight: 500;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 14px 15px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.final-cta {
  padding: 50px 0;
  background: #111827;
  color: #fff;
  text-align: center;
}
.final-cta .eyebrow { color: #fda4af; }
.final-cta p:not(.eyebrow) { color: #cbd5e1; }
.final-cta .button { margin-top: 18px; }
.final-cta small { display: block; margin-top: 12px; color: #94a3b8; font-size: 11px; }
.footer { padding: 28px 0 calc(28px + env(safe-area-inset-bottom, 0px)); background: #fff; border-top: 1px solid var(--border); color: var(--muted); text-align: center; }
.footer p { margin: 0 0 9px; font-size: 12px; }
.footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 9px; }
.footer a { color: #334155; font-size: 12px; font-weight: 700; text-decoration: none; }
.footer small { font-size: 10px; line-height: 1.5; }

.mobile-buybar {
  position: fixed;
  z-index: 70;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: calc(68px + env(safe-area-inset-bottom, 0px));
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, .10);
  transition: transform .2s ease, opacity .2s ease;
}
@supports (backdrop-filter: blur(12px)) {
  .mobile-buybar { background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.mobile-buybar > div { display: grid; min-width: 78px; }
.mobile-buybar > div span { color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; }
.mobile-buybar > div strong { font-size: 20px; line-height: 1.1; }
.mobile-buybar .button { min-height: 48px; padding: 10px 12px; font-size: 13px; }
body.is-sheet-open .mobile-buybar,
.mobile-buybar.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }

.sheet-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 12px 0;
  background: rgba(15, 23, 42, .72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
@supports (backdrop-filter: blur(7px)) {
  .sheet-backdrop { backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
}
.sheet-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.bottom-sheet {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 28px);
  max-height: calc(100svh - 28px);
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 12px 18px calc(20px + env(safe-area-inset-bottom, 0px));
  border: 1px solid var(--border);
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -20px 55px rgba(15, 23, 42, .28);
  transform: translateY(105%);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}
.sheet-backdrop.is-open .bottom-sheet { transform: translateY(0); }
.sheet-grip { width: 44px; height: 5px; margin: 0 auto 14px; border-radius: 999px; background: #cbd5e1; }
.sheet-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #475569;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.sheet-content { padding-top: 5px; }
.sheet-content h2 { padding-right: 40px; font-size: 25px; }
.sheet-content > p:not(.eyebrow) { margin: 9px 0 15px; color: var(--muted); font-size: 14px; }
.sheet-info {
  margin: 0;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8fafc;
}
.sheet-info div { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 7px 0; }
.sheet-info dt { color: var(--muted); font-size: 12px; }
.sheet-info dd { margin: 0; color: #1e293b; font-size: 12px; font-weight: 800; text-align: right; }
.sheet-notice {
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  background: var(--warning-bg);
  color: #854d0e;
  font-size: 12px;
  font-weight: 650;
}
.sheet-actions { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr); gap: 9px; margin-top: 13px; }
.sheet-actions .button { min-height: 52px; padding-inline: 10px; font-size: 13px; }
.sheet-checklist { list-style: none; padding: 0; margin: 14px 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.sheet-checklist li { position: relative; padding-left: 22px; color: #334155; font-size: 12px; font-weight: 700; }
.sheet-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.sheet-offer-price { margin: 15px 0; padding: 14px; border-radius: var(--radius); background: #fff1f2; text-align: center; }
.sheet-offer-price span { display: block; color: var(--muted); font-size: 12px; }
.sheet-offer-price strong { display: block; color: var(--brand-dark); font-size: 34px; line-height: 1.1; }
.sheet-link {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  background: transparent;
  color: #475569;
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  cursor: pointer;
}

@keyframes skeleton { from { background-position: 220% 0; } to { background-position: -20% 0; } }

@media (min-width: 480px) {
  .container { width: min(100% - 40px, var(--container)); }
  .checklist--hero { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__price { padding: 16px 18px; }
  .game-card__body { padding: 22px; }
  .download-button { min-height: 66px; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .trustbar__inner { font-size: 13px; }
  .hero { padding: 62px 0; }
  .hero__grid { grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); gap: 48px; align-items: center; }
  .hero__content { order: 0; }
  .hero-gallery { order: 1; }
  h1 { font-size: clamp(42px, 5vw, 62px); }
  .hero__lead { font-size: 17px; }
  .hero__price { max-width: 520px; }
  .hero__content .button { max-width: 520px; }
  .compatibility-note { max-width: 520px; text-align: left; }
  .benefit-strip__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 18px 0; }
  .benefit-strip__grid > div { padding-inline: 18px; border-right: 1px solid var(--border); }
  .benefit-strip__grid > div:last-child { border-right: 0; }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 38px; }
  .games-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
  .game-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
  .inline-offer { grid-template-columns: 1fr auto; align-items: center; padding: 20px 24px; }
  .inline-offer > div { text-align: left; }
  .inline-offer .button { width: 280px; }
  .access-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 70px; }
  .benefits-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .benefits-grid > div { min-height: 152px; }
  .testimonials { grid-auto-columns: 310px; }
  .offer-card { padding: 38px 42px; }
  .offer-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guarantee { padding: 30px; grid-template-columns: 72px minmax(0, 1fr); }
  .guarantee__icon { width: 72px; height: 72px; font-size: 34px; }
  .mobile-buybar { display: none; }
  .bottom-sheet { border-radius: 24px; margin-bottom: 18px; padding-inline: 24px; }
  .sheet-backdrop { align-items: center; padding: 20px; }
}

@media (min-width: 1100px) {
  .games-list { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .game-card { grid-column: span 2; }
  .game-card:nth-child(4) { grid-column: 2 / span 2; }
  .game-card:nth-child(5) { grid-column: 4 / span 2; }
  .game-card:last-child { width: 100%; justify-self: stretch; }
  .testimonials { grid-auto-flow: initial; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: visible; }
  .swipe-hint { display: none; }
}

@media (max-width: 359px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero { padding-top: 22px; }
  h1 { font-size: 29px; }
  .hero__price strong { font-size: 28px; }
  .button { padding-inline: 10px; font-size: 13px; }
  .checklist--hero { font-size: 12px; gap: 7px 8px; }
  .checklist--hero li { padding-left: 23px; }
  .benefit-strip__grid > div { padding-inline: 2px; }
  .game-card__body { padding: 15px; }
  .game-card__title-row { display: grid; }
  .sheet-actions { grid-template-columns: 1fr; }
  .sheet-checklist { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-gallery__viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; mask-image: none; -webkit-mask-image: none; }
  .hero-gallery__track { animation: none !important; }
  .hero-gallery__group[aria-hidden="true"] { display: none; }
}
