/* ============================================================
   GameQuoro — community picks for free Google Play games
   Design DNA: near-white minimal, typographic hero, one magenta note
   ============================================================ */

:root {
  --bg: #FBFBFD;
  --panel: #FFFFFF;
  --panel-2: #F5F5F8;
  --ink: #101014;
  --muted: #63636E;
  --accent: #C026D3;
  --accent-soft: #FBEBFE;
  --border: #EAEAF0;
  --border-strong: #DEDEE7;

  --font-display: "Sora", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1120px;
  --pad-inline: clamp(1.15rem, 4vw, 2.75rem);

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;

  --shadow-soft: 0 1px 2px rgba(16, 16, 20, 0.04), 0 12px 34px rgba(16, 16, 20, 0.05);

  --header-h: 68px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; }

p { margin: 0; }

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-s);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

/* ---------- Utility label (mono) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  flex: none;
}
.eyebrow--dot::before {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85em 1.4em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease),
    border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #a81fb8; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo__accent { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-s);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav__link:hover { color: var(--ink); background: var(--panel-2); text-decoration: none; }

.header__cta { margin-left: 0.4rem; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  background: var(--panel);
  border-radius: var(--radius-s);
  cursor: pointer;
  padding: 0;
  color: var(--ink);
}
.burger svg { width: 22px; height: 22px; margin: auto; }
.burger__close { display: none; }
.burger.is-open .burger__open { display: none; }
.burger.is-open .burger__close { display: block; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3rem, 8vw, 6.5rem); padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero__inner { display: block; }
.hero__title {
  margin-top: 1.3rem;
  font-weight: 800;
  font-size: clamp(2.9rem, 9vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 15ch;
}
.hero__accent { color: var(--accent); position: relative; }
.hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.09em;
  background: var(--accent);
  opacity: 0.35;
  border-radius: 2px;
}
.hero__lead {
  margin-top: 1.7rem;
  max-width: 54ch;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
}
.hero__actions {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero__stats {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ---------- Community shelf (hero icon strip) ---------- */
.shelf { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.shelf__caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.shelf__caption::before {
  content: "";
  width: 8px; height: 8px; border-radius: 2px; background: var(--accent);
}
.shelf__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 2vw, 1.1rem);
  align-items: center;
}
.shelf__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.shelf__icon {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border);
}
.shelf__name { font-weight: 600; font-size: 0.9rem; }

/* ---------- Section scaffold ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tint { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); border-block: 1px solid var(--border); }
.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section__title {
  margin-top: 0.9rem;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section__intro { margin-top: 1.1rem; color: var(--muted); font-size: 1.08rem; max-width: 56ch; }

/* ---------- Games grid ---------- */
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
.game {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(1.3rem, 2.4vw, 1.7rem);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.game:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.game__head { display: flex; align-items: center; gap: 0.9rem; }
.game__icon {
  width: 58px; height: 58px; border-radius: 14px; flex: none;
  border: 1px solid var(--border);
}
.game__name { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; }
.game__dev { font-size: 0.86rem; color: var(--muted); margin-top: 0.15rem; }

.game__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}
.game__genre {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--border);
  padding: 0.35em 0.65em;
  border-radius: 999px;
}
.game__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.3em 0.6em;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 1.1rem;
}
.game__desc { margin-top: 1rem; color: var(--muted); font-size: 0.97rem; flex: 1 1 auto; }
.game__cta { margin-top: 1.4rem; align-self: flex-start; }

/* ---------- Star rating ---------- */
.rating { display: inline-flex; align-items: center; gap: 0.45rem; }
.rating__stars { position: relative; display: inline-block; line-height: 0; }
.rating__layer { display: flex; gap: 2px; }
.rating__layer svg { width: 15px; height: 15px; }
.rating__empty { color: var(--border-strong); }
.rating__full {
  position: absolute;
  top: 0; left: 0;
  color: var(--accent);
  overflow: hidden;
  white-space: nowrap;
}
.rating__value { font-size: 0.85rem; font-weight: 600; color: var(--ink); }

/* ---------- Split / feature blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__title {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-top: 0.9rem;
}
.split__text { margin-top: 1.1rem; color: var(--muted); }
.split__list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1rem; }
.split__li { display: flex; gap: 0.8rem; align-items: flex-start; }
.split__li svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.split__li b { color: var(--ink); font-weight: 600; }
.split__actions { margin-top: 1.8rem; }
.split__media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-2);
  aspect-ratio: 4 / 3;
}
.split__img { width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5em 0.9em;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: center; gap: 0.5em;
}
.split__badge::before { content:""; width:7px; height:7px; border-radius:2px; background: var(--accent); }

/* ---------- Trust cards ---------- */
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 2vw, 1.3rem);
}
.trust {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.5rem;
}
.trust__icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__title { font-size: 1.08rem; font-weight: 700; font-family: var(--font-display); }
.trust__text { margin-top: 0.5rem; color: var(--muted); font-size: 0.94rem; }

/* ---------- Reviews ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.3rem);
}
.review {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  position: relative;
}
.review__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.review__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1 1 auto;
}
.review__quote::before { content: "\201C"; color: var(--accent); }
.review__quote::after { content: "\201D"; color: var(--accent); }
.review__foot { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); font-size: 0.9rem;
  flex: none;
}
.review__name { font-weight: 600; font-size: 0.95rem; }
.review__role { font-size: 0.82rem; color: var(--muted); }
.review__stars { margin-top: 0.9rem; }

/* ---------- Subscribe ---------- */
.subscribe__card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
}
.subscribe__title { font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.4rem); letter-spacing: -0.03em; margin-top: 0.9rem; line-height: 1.08; }
.subscribe__text { margin-top: 1rem; color: var(--muted); }
.form { display: grid; gap: 0.9rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.field__input {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8em 0.95em;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-s);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field__input::placeholder { color: #9a9aa4; }
.field__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--muted); }
.consent input { margin-top: 0.2rem; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.consent a { text-decoration: underline; }
.form__success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-soft);
  border: 1px solid #f1c7fa;
  color: #7a1786;
  padding: 0.9em 1.1em;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.95rem;
}
.form__success.is-visible { display: flex; }
.form__success svg { width: 20px; height: 20px; flex: none; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq__item { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-m); overflow: hidden; }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq__icon { width: 20px; height: 20px; color: var(--accent); flex: none; transition: transform 0.25s var(--ease); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq__answer-inner { padding: 0 1.4rem 1.35rem; color: var(--muted); }
.faq__answer-inner a { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--panel); border-top: 1px solid var(--border); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__tagline { margin-top: 1rem; color: var(--muted); max-width: 34ch; font-size: 0.95rem; }
.footer__mail { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--ink); }
.footer__mail svg { width: 18px; height: 18px; color: var(--accent); }
.footer__mail:hover { color: var(--accent); }
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__link { color: var(--muted); font-size: 0.95rem; }
.footer__link:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer__disclaimer { max-width: 62ch; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(192, 38, 211, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 90;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: clamp(0.8rem, 3vw, 1.5rem);
  right: clamp(0.8rem, 3vw, 1.5rem);
  bottom: clamp(0.8rem, 3vw, 1.5rem);
  z-index: 120;
  max-width: 720px;
  margin-inline: auto;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-m);
  box-shadow: 0 18px 50px rgba(16,16,20,0.14);
  padding: 1.25rem 1.4rem;
  display: none;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie.is-visible { display: flex; }
.cookie__text { font-size: 0.9rem; color: var(--muted); flex: 1 1 260px; }
.cookie__text a { text-decoration: underline; }
.cookie__actions { display: flex; gap: 0.6rem; flex: none; }
.cookie__actions .btn { padding: 0.65em 1.1em; font-size: 0.9rem; }

/* ---------- Legal pages ---------- */
.legal { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3rem, 8vw, 5rem); }
.legal__back { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.92rem; margin-bottom: 1.6rem; }
.legal__back svg { width: 16px; height: 16px; }
.legal__title { font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.05; }
.legal__updated { margin-top: 0.8rem; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.legal__body { max-width: 760px; margin-top: 2.2rem; }
.legal__body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2.6rem;
  margin-bottom: 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.legal__body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal__body h3 { font-size: 1.08rem; font-weight: 700; margin-top: 1.6rem; margin-bottom: 0.5rem; font-family: var(--font-display); }
.legal__body p { margin-top: 0.9rem; color: #3b3b45; }
.legal__body ul { margin-top: 0.9rem; padding-left: 1.2rem; color: #3b3b45; }
.legal__body li { margin-top: 0.5rem; }
.legal__body a { text-decoration: underline; }
.legal__note {
  background: var(--accent-soft);
  border: 1px solid #f1c7fa;
  border-radius: var(--radius-m);
  padding: 1.1rem 1.3rem;
  color: #7a1786;
  font-size: 0.92rem;
  margin-top: 1.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .subscribe__card { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__cta { display: none; }
  .nav.is-open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 1rem var(--pad-inline) 1.6rem;
  }
  .nav.is-open .nav__list { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .nav.is-open .nav__link { padding: 0.85rem 0.6rem; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav.is-open .header__cta { display: inline-flex; margin: 1rem 0 0; }
  .games__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .games__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 1.4rem 2rem; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.footer__contact-label{display:block;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;opacity:.6;margin-bottom:.35rem}
