/* MobileGamerView — foglio di stile (tema editoriale "Contra": bianco carta + inchiostro, accento Iris)
   Vanilla CSS, mobile-first, BEM. Nessun font esterno: stack di sistema. */

/* ============ 1. TOKEN / VARIABILI ============ */
:root {
  /* Colori */
  --ink: #14171f;
  --paper: #ffffff;
  --mist: #f5f6f9;
  --hairline: #e5e7eb;
  --slate: #677084;
  --fog: #9ba2b0;
  --graphite: #373f51;
  --charcoal: #222834;
  --deep-ink: #050505;
  --pearl: #d0d4dc;
  --iris: #6a57e3;
  --iris-ink: #5642c9;
  --lilac: #ddd8ff;
  --orchid: #cd74dd;
  --wine: #45192f;
  --coral: #ff5a5e;
  --lime: #f0fb96;
  --gradient-hero: linear-gradient(120deg, rgb(205, 243, 253), rgb(157, 222, 249) 42.88%, rgb(151, 157, 241) 94.62%);

  /* Tipografia: display/logo = serif editoriale; corpo/UI = grottesco di sistema */
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;

  /* Scala tipografica */
  --text-caption: 12px;
  --text-body-sm: 14px;
  --text-body: 16px;
  --text-lg: 19px;
  --text-h3: 23px;

  /* Spaziatura (base 4px) */
  --sp-4: 4px;  --sp-8: 8px;  --sp-12: 12px; --sp-16: 16px;
  --sp-20: 20px; --sp-24: 24px; --sp-28: 28px; --sp-32: 32px;
  --sp-40: 40px; --sp-48: 48px; --sp-60: 60px; --sp-64: 64px; --sp-72: 72px;

  /* Raggi (solo valori del tema: 4,10,16,24,32,40) */
  --r-card: 4px;
  --r-input: 10px;
  --r-nav: 16px;
  --r-btn: 24px;
  --r-tag: 32px;
  --r-pill: 40px;

  /* Ombre (vocabolario a due strati charcoal) */
  --shadow-btn: rgba(34, 40, 52, 0.05) 0 4px 10px 0, rgba(34, 40, 52, 0.04) -2px 18px 18px 0;
  --shadow-md: rgba(34, 40, 52, 0.06) 0 4px 10px 0, rgba(34, 40, 52, 0.04) -2px 18px 22px 0;
  --shadow-nav: rgba(0, 0, 0, 0.05) 0 10px 20px 0;

  /* Layout */
  --container: 1200px;
  --gutter: 20px;
  --section-gap: 64px;
  --header-h: 64px;
}

/* ============ 2. RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--iris);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============ 3. LAYOUT / CONTAINER ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-gap); }
.section--mist { background: var(--mist); }
.section--dark { background: var(--ink); color: var(--paper); }

.section__head { max-width: 720px; margin-bottom: var(--sp-32); }
.section__eyebrow {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--iris-ink);
  margin-bottom: var(--sp-12);
}
.section--dark .section__eyebrow { color: var(--lilac); }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.4vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section__sub {
  margin-top: var(--sp-12);
  color: var(--slate);
  font-size: var(--text-body);
}
.section--dark .section__sub { color: var(--pearl); }

/* ============ 4. BOTTONI ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  border: 1px solid transparent;
  border-radius: var(--r-btn);
  padding: 10px 20px;
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--charcoal);
  color: var(--paper);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { background: var(--ink); }
.btn--outline {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--hairline);
}
.btn--outline:hover { border-color: var(--ink); background: var(--paper); }
.section--dark .btn--outline { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.28); }
.section--dark .btn--outline:hover { border-color: var(--paper); }
.btn--lg { padding: 13px 26px; font-size: var(--text-body); }
.btn--block { width: 100%; }

/* ============ 5. HEADER / NAV ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--sp-16);
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.logo__accent { color: var(--iris); }
.footer .logo { font-size: 24px; }

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.header__link {
  padding: 8px 12px;
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--r-tag);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.header__link:hover { color: var(--ink); background: var(--mist); }
.header__cta { margin-left: var(--sp-8); }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-input);
  color: var(--ink);
  cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

/* ============ 6. HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-block: clamp(48px, 9vw, 88px);
  border-bottom: 1px solid var(--hairline);
}
.hero__inner { position: relative; text-align: center; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-8);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 23, 31, 0.08);
  border-radius: var(--r-tag);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--graphite);
  margin-bottom: var(--sp-24);
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--iris);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-inline: auto;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--iris-ink); }
.hero__sub {
  margin: var(--sp-20) auto 0;
  max-width: 60ch;
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--graphite);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  justify-content: center;
  margin-top: var(--sp-28);
}
.hero__showcase {
  margin-top: var(--sp-48);
}
.showcase__card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 23, 31, 0.06);
  border-radius: var(--r-nav);
  box-shadow: var(--shadow-md);
  padding: var(--sp-20);
  max-width: 900px;
  margin-inline: auto;
}
.showcase__label {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: var(--sp-16);
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-12);
}
.showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-12) var(--sp-8);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
}
.showcase__item img {
  width: 56px; height: 56px;
  border-radius: 12px;
}
.showcase__item span {
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--slate);
  text-align: center;
}

/* ============ 7. STATISTICHE (banda scura) ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-20);
}
.stat {
  padding: var(--sp-20);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-card);
  background: var(--charcoal);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.stat__num .u { color: var(--lilac); font-size: 0.6em; margin-left: 2px; }
.stat__star { width: 0.5em; height: 0.5em; color: var(--lilac); margin-left: 4px; vertical-align: baseline; display: inline-block; }
.stat__label {
  margin-top: var(--sp-8);
  font-size: var(--text-body-sm);
  color: var(--pearl);
}

/* ============ 8. GIOCHI ============ */
.games__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-20);
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--sp-20);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--pearl); }
.card__top {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.card__icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  flex: none;
}
.card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.card__dev { font-size: var(--text-body-sm); color: var(--slate); }
.card__rating {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}
.stars { width: 92px; height: 18px; flex: none; }
.card__score { font-size: var(--text-body-sm); font-weight: 600; color: var(--ink); }
.card__genre {
  margin-left: auto;
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--iris-ink);
  background: var(--lilac);
  padding: 3px 10px;
  border-radius: var(--r-tag);
}
.card__desc {
  font-size: var(--text-body-sm);
  color: var(--graphite);
  line-height: 1.55;
  flex: 1 1 auto;
}
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
  margin-top: var(--sp-16);
  padding-top: var(--sp-16);
  border-top: 1px solid var(--hairline);
}
.card__price {
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--ink);
}
.card__monet {
  margin-top: var(--sp-8);
  font-size: var(--text-caption);
  color: var(--fog);
}

/* ============ 9. FIDUCIA (perché fidarsi) ============ */
.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-20);
}
.trust__item {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--sp-24);
}
.trust__ico {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-input);
  background: var(--lilac);
  color: var(--iris-ink);
  margin-bottom: var(--sp-16);
}
.trust__ico svg { width: 24px; height: 24px; }
.trust__item h3 { font-size: var(--text-lg); margin-bottom: var(--sp-8); }
.trust__item p { font-size: var(--text-body-sm); color: var(--slate); }

/* ============ 10. COME GUADAGNIAMO ============ */
.money {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  align-items: start;
}
.money__list { margin-top: var(--sp-24); display: grid; gap: var(--sp-16); }
.money__list li {
  display: flex;
  gap: var(--sp-12);
  font-size: var(--text-body-sm);
  color: var(--graphite);
}
.money__list svg {
  width: 22px; height: 22px; flex: none;
  color: var(--iris);
  margin-top: 2px;
}
.money__panel {
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--r-card);
  padding: var(--sp-28);
}
.money__panel h3 { font-family: var(--font-display); font-size: var(--text-h3); margin-bottom: var(--sp-12); }
.money__panel p { color: var(--pearl); font-size: var(--text-body-sm); margin-bottom: var(--sp-20); }

/* ============ 11. SCREENSHOT / DEMO ============ */
.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-12);
}
.shot {
  margin: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--mist);
}
.shot img { width: 100%; height: auto; }
.shot__cap {
  padding: var(--sp-8) var(--sp-12);
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--slate);
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}

/* ============ 12. RECENSIONI ============ */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-20);
}
.review {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}
.review .stars { width: 100px; height: 20px; }
.review__quote { font-size: var(--text-body); color: var(--ink); line-height: 1.55; flex: 1 1 auto; }
.review__author { display: flex; align-items: center; gap: var(--sp-12); }
.review__avatar {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--iris);
  color: var(--paper);
  font-size: var(--text-body-sm);
  font-weight: 700;
  flex: none;
}
.review__name { font-size: var(--text-body-sm); font-weight: 600; }
.review__role { font-size: var(--text-caption); color: var(--slate); }

/* ============ 13. FORM ISCRIZIONE ============ */
.subscribe {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-nav);
  padding: clamp(24px, 5vw, 44px);
}
.subscribe__title { font-family: var(--font-display); font-size: clamp(1.6rem, 4.6vw, 2.2rem); letter-spacing: -0.02em; line-height: 1.1; }
.subscribe__title em { font-style: italic; color: var(--iris-ink); }
.subscribe__sub { margin-top: var(--sp-12); color: var(--slate); font-size: var(--text-body); }
.subscribe__form { display: grid; gap: var(--sp-16); }
.form__row { display: grid; grid-template-columns: 1fr; gap: var(--sp-16); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: var(--text-caption); font-weight: 600; color: var(--slate); }
.field input {
  font-family: inherit;
  font-size: var(--text-body-sm);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-input);
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
.field input::placeholder { color: var(--fog); }
.field input:focus { outline: none; border-color: var(--ink); }
.consent {
  display: flex;
  gap: var(--sp-8);
  align-items: flex-start;
  font-size: var(--text-body-sm);
  color: var(--graphite);
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--iris); flex: none; }
.consent a { color: var(--iris-ink); text-decoration: underline; }
.success {
  display: none;
  margin-top: var(--sp-4);
  padding: 12px 14px;
  background: var(--lilac);
  border: 1px solid var(--iris);
  border-radius: var(--r-input);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--iris-ink);
}
.success.is-visible { display: block; }

/* ============ 14. FAQ ============ */
.faq { display: grid; gap: var(--sp-12); max-width: 820px; }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: var(--sp-20);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq__q svg { width: 20px; height: 20px; flex: none; color: var(--iris); transition: transform 0.2s ease; }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq__item.is-open .faq__a { max-height: 320px; }
.faq__a p {
  padding: 0 var(--sp-20) var(--sp-20);
  font-size: var(--text-body-sm);
  color: var(--slate);
}

/* ============ 15. FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--pearl);
  padding-block: var(--sp-48) var(--sp-32);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  padding-bottom: var(--sp-32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .logo { color: var(--paper); }
.footer__about { margin-top: var(--sp-12); font-size: var(--text-body-sm); color: var(--fog); max-width: 42ch; }
.footer__col h4 {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: var(--sp-16);
}
.footer__col a {
  display: block;
  font-size: var(--text-body-sm);
  color: var(--pearl);
  padding: 5px 0;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--paper); }
.footer__contact { font-weight: 600; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-24);
  justify-content: space-between;
  padding-top: var(--sp-24);
  font-size: var(--text-caption);
  color: var(--fog);
}

/* ============ 16. COOKIE BANNER ============ */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  display: none;
  gap: var(--sp-16);
  flex-direction: column;
  background: var(--charcoal);
  color: var(--paper);
  border: 1px solid var(--graphite);
  border-radius: var(--r-nav);
  box-shadow: var(--shadow-nav);
  padding: var(--sp-20);
  max-width: 560px;
  margin-inline: auto;
}
.cookie.is-visible { display: flex; }
.cookie p { font-size: var(--text-body-sm); color: var(--pearl); }
.cookie a { color: var(--lilac); text-decoration: underline; }
.cookie__row { display: flex; gap: var(--sp-12); }

/* ============ 17. TORNA SU ============ */
.totop {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 55;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  color: var(--paper);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop svg { width: 22px; height: 22px; }

/* ============ 18. PAGINE LEGALI ============ */
.legal { padding-block: var(--sp-48) var(--section-gap); }
.legal__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-12);
}
.legal__updated { color: var(--slate); font-size: var(--text-body-sm); margin-bottom: var(--sp-32); }
.legal__body { max-width: 760px; }
.legal__body h2 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  margin: var(--sp-40) 0 var(--sp-12);
  letter-spacing: -0.015em;
}
.legal__body h3 { font-size: var(--text-lg); margin: var(--sp-24) 0 var(--sp-8); }
.legal__body p { color: var(--graphite); margin-bottom: var(--sp-12); font-size: var(--text-body); }
.legal__body ul { margin: 0 0 var(--sp-16) 0; display: grid; gap: var(--sp-8); }
.legal__body li {
  position: relative;
  padding-left: var(--sp-20);
  color: var(--graphite);
  font-size: var(--text-body);
}
.legal__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--iris);
}
.legal__body a { color: var(--iris-ink); text-decoration: underline; }
.legal__back { display: inline-flex; margin-top: var(--sp-32); }

/* ============ 19. BREAKPOINT ============ */
@media (max-width: 900px) {
  :root { --section-gap: 52px; }
  .header__nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-4);
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-nav);
    padding: var(--sp-12);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .header__nav.is-open { transform: translateY(0); }
  .header__link { padding: 12px 14px; font-size: var(--text-body); }
  .header__cta { margin-left: 0; margin-top: var(--sp-4); }
  .burger { display: inline-flex; }
}

@media (min-width: 600px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .cookie { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie p { flex: 1; }
}

@media (min-width: 768px) {
  :root { --gutter: 24px; }
  .games__grid { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .shots { grid-template-columns: repeat(4, 1fr); }
  .showcase__grid { grid-template-columns: repeat(6, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .subscribe { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .games__grid { grid-template-columns: repeat(3, 1fr); }
  .money { grid-template-columns: 1.5fr 1fr; }
}
