/* =========================================================================
   Wybór Gracza — style system
   Theme: "Mailchimp" vintage press house + one voltage-yellow signal.
   ========================================================================= */

:root {
  /* Colors */
  --press-black: #231e15;
  --voltage-yellow: #ffe01b;
  --teal-ink: #004e56;
  --warm-parchment: #ebe1cd;
  --sand-footer: #e7b75f;
  --ash-white: #f5f5f5;
  --pure-white: #ffffff;
  --graphite: #706d67;
  --warm-charcoal: #403b3b;
  --silver-rule: #bcbab6;
  --true-black: #000000;

  /* Fonts */
  --font-ui: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', 'Didot', Georgia, 'Times New Roman', serif;

  /* Type scale */
  --text-caption: 11px;
  --text-body: 16px;
  --text-subheading: 20px;
  --text-heading-sm: 24px;
  --text-heading: 32px;
  --text-heading-lg: 40px;
  --text-display: 48px;

  /* Spacing */
  --sp-4: 4px;  --sp-8: 8px;  --sp-12: 12px; --sp-16: 16px; --sp-20: 20px;
  --sp-24: 24px; --sp-32: 32px; --sp-40: 40px; --sp-48: 48px; --sp-60: 60px;
  --sp-64: 64px; --sp-80: 80px; --sp-100: 100px;

  /* Layout */
  --page-max: 1200px;
  --pad-inline: 24px;
  --header-h: 68px;

  /* Radius */
  --r-card: 10px;
  --r-badge: 8px;
  --r-nav: 3px;
  --r-pill: 26px;
  --r-tag: 32px;

  /* Shadow (warm) */
  --shadow-float: rgba(35, 30, 21, 0.15) 0px 0px 20px 3px;
  --shadow-hover: rgba(35, 30, 21, 0.22) 0px 8px 26px 0px;
  --ring: rgb(35, 30, 21) 0px 0px 0px 1px;
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--text-body);
  line-height: 1.5;
  letter-spacing: -0.013em;
  color: var(--press-black);
  background: var(--pure-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

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

/* ----------------------------- Utilities ------------------------------- */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.icon { width: 20px; height: 20px; flex: none; fill: currentColor; }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: var(--text-body); font-weight: 500; line-height: 1;
  letter-spacing: -0.013em; text-decoration: none; border: 0;
  padding: 13px 24px; white-space: nowrap; transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:hover { text-decoration: none; }
.btn--primary {
  background: var(--voltage-yellow); color: var(--press-black);
  border-radius: var(--r-pill); box-shadow: var(--ring);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--ring), rgba(35,30,21,.18) 0 6px 18px; }
.btn--ghost {
  background: transparent; color: var(--press-black);
  border-radius: var(--r-nav); box-shadow: var(--ring); padding: 12px 20px;
}
.btn--ghost:hover { background: rgba(35,30,21,.05); }
.btn--onDark { color: var(--pure-white); box-shadow: rgb(255,255,255) 0 0 0 1px; }
.btn--onDark:hover { background: rgba(255,255,255,.08); }
.btn--block { display: flex; width: 100%; }

/* --------------------------- Text link (arrow) ------------------------- */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; color: var(--press-black);
}
.arrow-link:hover { text-decoration: none; }
.arrow-link__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: var(--r-tag);
  background: var(--voltage-yellow); box-shadow: var(--ring);
  transition: transform .15s ease;
}
.arrow-link:hover .arrow-link__badge { transform: translateX(3px); }
.arrow-link__badge .icon { width: 14px; height: 14px; color: var(--press-black); }
.arrow-link--light { color: var(--pure-white); }

/* ------------------------------ Eyebrow -------------------------------- */
.eyebrow {
  display: inline-block; font-size: var(--text-caption); font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--press-black);
  margin: 0 0 16px;
}
.eyebrow--muted { color: var(--graphite); }
.eyebrow--light { color: rgba(255,255,255,.75); }

/* ------------------------------ Header --------------------------------- */
.announce {
  background: var(--press-black); color: var(--pure-white);
  font-size: 13px; text-align: center; padding: 11px 16px;
}
.announce b { color: var(--voltage-yellow); font-weight: 600; }
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--pure-white); border-bottom: 1px solid #ece9e2;
}
.header__inner {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--header-h);
}
.logo {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--press-black); white-space: nowrap;
  margin-right: auto;
}
.logo:hover { text-decoration: none; }
.logo__accent {
  background: var(--voltage-yellow);
  box-shadow: 4px 0 0 var(--voltage-yellow), -2px 0 0 var(--voltage-yellow);
  padding: 0 1px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  color: var(--press-black); font-size: 16px; font-weight: 400;
  padding: 8px 12px; border-radius: var(--r-nav);
}
.nav__link:hover { text-decoration: none; background: rgba(35,30,21,.05); }
.nav__cta { display: none; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 0; border-radius: var(--r-nav); color: var(--press-black);
}
.burger .icon { width: 26px; height: 26px; }
.burger__close { display: none; }
.header.is-open .burger__open { display: none; }
.header.is-open .burger__close { display: block; }

/* ------------------------------- Hero ---------------------------------- */
.hero { padding: 72px 0 88px; background: var(--pure-white); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(31px, 6vw, 52px); line-height: 1.08; letter-spacing: -0.021em;
  color: var(--press-black); margin: 0 0 20px;
}
.hero__title .mark {
  background: var(--voltage-yellow);
  box-shadow: 6px 0 0 var(--voltage-yellow), -3px 0 0 var(--voltage-yellow);
}
.hero__lead {
  font-size: 18px; line-height: 1.55; color: var(--graphite);
  max-width: 30em; margin: 0 0 28px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 12px 26px; padding-top: 22px;
  border-top: 1px solid #e7e3da;
}
.trust { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--warm-charcoal); }
.trust .icon { width: 18px; height: 18px; color: var(--teal-ink); }
.trust b { font-weight: 600; color: var(--press-black); }

/* Hero media — floating screenshot cards */
.hero__media { position: relative; min-height: 600px; }
.shot-card {
  position: absolute; background: var(--ash-white); border-radius: var(--r-card);
  padding: 8px; box-shadow: var(--shadow-float);
}
.shot-card img { border-radius: 6px; display: block; width: 100%; height: 340px; object-fit: cover; object-position: top center; }
.shot-card--a { width: 210px; left: 3%;  top: 92px; transform: rotate(-3deg); z-index: 2; }
.shot-card--b { width: 222px; right: 5%; top: 18px; transform: rotate(2.5deg); z-index: 3; }
.shot-card--c { width: 190px; left: 33%; top: 248px; transform: rotate(-1.5deg); z-index: 1; }
.hero__tag {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px;
  background: var(--press-black); color: var(--pure-white);
  font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: var(--r-badge);
  box-shadow: var(--shadow-float);
}
.hero__tag .icon { width: 15px; height: 15px; color: var(--voltage-yellow); }
.hero__tag--top { right: 22%; top: 2px; }
.hero__tag--bot { left: 0; bottom: 78px; }

/* ------------------------------ Sections ------------------------------- */
.section { padding: 96px 0; }
.section--dark { background: var(--press-black); color: var(--pure-white); }
.section--parch { background: var(--warm-parchment); }
.section--gray { background: var(--ash-white); }
.section--white { background: var(--pure-white); }

.section__head { max-width: 680px; margin: 0 0 52px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 5vw, 40px); line-height: 1.15; letter-spacing: -0.018em;
  color: inherit; margin: 0 0 16px;
}
.section__lead { font-size: 18px; line-height: 1.55; color: var(--graphite); }
.section--dark .section__lead { color: rgba(255,255,255,.68); }

/* ----------------------------- Features -------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--r-card);
  background: rgba(255,255,255,.08); color: var(--voltage-yellow); margin-bottom: 20px;
}
.feature__icon .icon { width: 26px; height: 26px; }
.feature__title {
  font-family: var(--font-display); font-weight: 400; font-size: 24px;
  letter-spacing: -0.01em; color: var(--pure-white); margin: 0 0 10px;
}
.feature__text { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.65); }

/* ------------------------------- Games --------------------------------- */
.games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.game {
  display: flex; flex-direction: column;
  background: var(--pure-white); border-radius: var(--r-card);
  border: 1px solid #eae6de; overflow: hidden;
  transition: box-shadow .16s ease, transform .16s ease;
}
.game:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.game__media {
  background: var(--ash-white); padding: 10px;
  display: flex; align-items: center; justify-content: center;
  height: 200px;
}
.game__media img {
  max-height: 180px; width: auto; border-radius: 6px;
  box-shadow: rgba(35,30,21,.12) 0 2px 10px;
}
.game__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.game__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.game__icon {
  width: 56px; height: 56px; border-radius: var(--r-card); flex: none;
  box-shadow: var(--ring);
}
.game__ident { min-width: 0; }
.game__name {
  font-family: var(--font-display); font-weight: 500; font-size: 21px;
  letter-spacing: -0.01em; color: var(--press-black); line-height: 1.15;
}
.game__dev { font-size: 13px; color: var(--graphite); margin-top: 2px; }
.game__desc { font-size: 15px; line-height: 1.55; color: var(--warm-charcoal); margin-bottom: 20px; }
.game__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tag--free {
  font-size: 12px; font-weight: 600; letter-spacing: -0.01em;
  background: var(--press-black); color: var(--pure-white);
  padding: 5px 11px; border-radius: var(--r-badge);
}

/* Rating stars */
.rating { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.stars { position: relative; display: inline-block; width: 92px; height: 16px; line-height: 0; }
.stars__row { position: absolute; inset: 0; display: flex; gap: 2px; overflow: hidden; white-space: nowrap; }
.stars__row .icon { width: 16px; height: 16px; }
.stars__base .icon { color: var(--silver-rule); }
.stars__fill .icon { color: var(--press-black); }
.rating__num { font-size: 14px; font-weight: 600; color: var(--press-black); }

/* --------------------------- Jak zarabiamy ----------------------------- */
.earn { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.earn__points { display: grid; gap: 22px; margin: 8px 0 28px; }
.earn__point { display: flex; gap: 14px; }
.earn__point .icon { width: 24px; height: 24px; color: var(--teal-ink); flex: none; margin-top: 2px; }
.earn__ptitle { font-weight: 600; font-size: 16px; color: var(--press-black); margin-bottom: 3px; }
.earn__ptext { font-size: 15px; line-height: 1.55; color: var(--warm-charcoal); }
.earn__media {
  border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-float);
  background: var(--pure-white);
}
.earn__media img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------ Reviews -------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review {
  background: var(--pure-white); border-radius: var(--r-card);
  border: 1px solid #eae6de; padding: 28px 24px; display: flex; flex-direction: column;
}
.review__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review__stars .icon { width: 18px; height: 18px; color: var(--press-black); }
.review__quote { font-size: 16px; line-height: 1.6; color: var(--warm-charcoal); margin-bottom: 22px; }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: var(--r-tag); flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--warm-parchment); color: var(--press-black);
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
}
.review__name { font-weight: 600; font-size: 15px; color: var(--press-black); }
.review__role { font-size: 13px; color: var(--graphite); }

/* ------------------------------ Subscribe ------------------------------ */
.subscribe__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.subscribe__card {
  background: var(--pure-white); box-shadow: var(--shadow-float);
  padding: 36px 32px;
}
.form { display: grid; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 13px; font-weight: 500; color: var(--warm-charcoal); }
.field__input {
  font-family: inherit; font-size: 16px; letter-spacing: -0.013em; color: var(--press-black);
  background: transparent; border: 0; border-bottom: 1px solid var(--press-black);
  border-radius: 0; padding: 9px 2px;
}
.field__input::placeholder { color: var(--silver-rule); }
.field__input:focus { outline: none; border-bottom-color: var(--teal-ink); border-bottom-width: 2px; }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; line-height: 1.5; color: var(--warm-charcoal); }
.consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--press-black); flex: none; }
.form__note { font-size: 12px; color: var(--graphite); }
.success {
  display: none; align-items: flex-start; gap: 14px;
  background: var(--warm-parchment); padding: 24px; border-radius: var(--r-card);
}
.success.is-visible { display: flex; }
.success .icon { width: 30px; height: 30px; color: var(--teal-ink); flex: none; }
.success__title { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.success__text { font-size: 15px; line-height: 1.55; color: var(--warm-charcoal); }

/* -------------------------------- FAQ ---------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid #e2ddd2; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: transparent; border: 0; text-align: left;
  padding: 24px 4px; font-size: 19px; font-weight: 500; color: var(--press-black);
  font-family: var(--font-ui); letter-spacing: -0.013em;
}
.faq__icon {
  width: 30px; height: 30px; flex: none; border-radius: var(--r-tag);
  display: flex; align-items: center; justify-content: center;
  background: var(--voltage-yellow); box-shadow: var(--ring); transition: transform .2s ease;
}
.faq__icon .icon { width: 15px; height: 15px; color: var(--press-black); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .28s ease; }
.faq__a-inner { padding: 0 4px 26px; font-size: 16px; line-height: 1.6; color: var(--warm-charcoal); max-width: 68ch; }

/* ------------------------------- About --------------------------------- */
.about { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.about__media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-float); }
.about__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__points { display: grid; gap: 20px; margin-top: 24px; }
.about__point { display: flex; gap: 14px; }
.about__point .icon { width: 24px; height: 24px; color: var(--teal-ink); flex: none; margin-top: 2px; }
.about__ptitle { font-weight: 600; font-size: 16px; margin-bottom: 3px; }
.about__ptext { font-size: 15px; line-height: 1.55; color: var(--warm-charcoal); }

/* ------------------------------ Footer --------------------------------- */
.footer { background: var(--sand-footer); color: var(--press-black); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .logo { color: var(--press-black); }
.footer__about { font-size: 14px; line-height: 1.6; color: var(--warm-charcoal); margin-top: 16px; max-width: 34ch; }
.footer__col-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 16px; }
.footer__links { display: grid; gap: 10px; }
.footer__link { color: var(--press-black); font-size: 15px; }
.footer__link:hover { text-decoration: underline; }
.footer__contact { font-size: 15px; }
.footer__contact a { color: var(--press-black); font-weight: 600; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(35,30,21,.22);
  font-size: 13px; color: var(--warm-charcoal);
}
.footer__disclaimer { max-width: 62ch; }

/* ------------------------------ To top --------------------------------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 48px; height: 48px; border-radius: var(--r-tag); border: 0;
  background: var(--press-black); color: var(--pure-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-float); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top .icon { width: 22px; height: 22px; }

/* --------------------------- Cookie banner ----------------------------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  max-width: 720px; margin-inline: auto;
  background: var(--press-black); color: var(--pure-white);
  border-radius: var(--r-card); box-shadow: var(--shadow-float);
  padding: 20px 22px; display: none;
  grid-template-columns: 1fr auto; gap: 18px; align-items: center;
}
.cookie.is-visible { display: grid; }
.cookie__text { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.82); }
.cookie__text a { color: var(--voltage-yellow); }
.cookie__actions { display: flex; gap: 10px; flex: none; }
.cookie .btn--ghost { color: var(--pure-white); box-shadow: rgba(255,255,255,.5) 0 0 0 1px; padding: 10px 16px; }
.cookie .btn--ghost:hover { background: rgba(255,255,255,.1); }
.cookie .btn--primary { padding: 11px 18px; }

/* ------------------------------- Legal --------------------------------- */
.legal { padding: 64px 0 88px; }
.legal__head { max-width: 760px; margin-bottom: 40px; }
.legal__title {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em; line-height: 1.12; margin: 14px 0 12px;
}
.legal__meta { font-size: 14px; color: var(--graphite); }
.legal__body { max-width: 760px; }
.legal__body h2 {
  font-family: var(--font-display); font-weight: 500; font-size: 26px; letter-spacing: -0.01em;
  margin: 40px 0 14px;
}
.legal__body h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; }
.legal__body p { font-size: 16px; line-height: 1.65; color: var(--warm-charcoal); margin-bottom: 14px; }
.legal__body ul { display: grid; gap: 8px; margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.legal__body li { font-size: 16px; line-height: 1.6; color: var(--warm-charcoal); }
.legal__body a { font-weight: 500; }
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-weight: 500; color: var(--press-black); }
.back-home .icon { width: 16px; height: 16px; }
.table-simple { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 15px; }
.table-simple th, .table-simple td { text-align: left; padding: 12px 12px; border-bottom: 1px solid #e2ddd2; vertical-align: top; }
.table-simple th { font-weight: 600; color: var(--press-black); }
.table-simple td { color: var(--warm-charcoal); }

/* ============================ Responsive =============================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--pure-white); padding: 88px 20px 24px;
    box-shadow: rgba(35,30,21,.2) -8px 0 30px; transform: translateX(100%);
    transition: transform .25s ease; z-index: 45; overflow-y: auto;
  }
  .header.is-open .nav { transform: translateX(0); }
  .nav__link { font-size: 18px; padding: 12px 14px; border-bottom: 1px solid #f0ede6; }
  .nav__cta { display: inline-flex; margin-top: 16px; }
  .burger { display: inline-flex; z-index: 46; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(35,30,21,.4); z-index: 44;
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s;
  }
  .header.is-open .nav-backdrop { opacity: 1; visibility: visible; }
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { min-height: 540px; max-width: 480px; margin-inline: auto; width: 100%; }
  .features { grid-template-columns: 1fr; gap: 32px; }
  .games { grid-template-columns: repeat(2, 1fr); }
  .earn, .about, .subscribe__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { order: -1; }
  .reviews { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --pad-inline: 18px; }
  .header__actions .btn--primary { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .games { grid-template-columns: 1fr; }
  .section__head { margin-bottom: 36px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cookie { grid-template-columns: 1fr; }
  .cookie__actions { justify-content: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__media { min-height: 470px; }
  .shot-card img { height: 280px; }
  .shot-card--a { width: 172px; top: 78px; } .shot-card--b { width: 186px; top: 14px; } .shot-card--c { width: 160px; top: 208px; }
  .hero__tag--bot { bottom: 58px; }
}
@media (max-width: 380px) {
  .hero__media { min-height: 430px; }
  .shot-card img { height: 250px; }
  .shot-card--a { width: 150px; } .shot-card--b { width: 162px; } .shot-card--c { width: 140px; }
}
