/* ============================================================
   TacticsCastle — foglio di stile (tema "21n" chiaro, monocromo)
   BEM, nessuna libreria esterna, flat, hairline, senza ombre.
   ============================================================ */

:root {
  /* Colori (token del tema) */
  --color-snow: #ffffff;
  --color-fog: #f9f9fb;
  --color-mist: #eff0f6;
  --color-silver: #e5e7eb;
  --color-charcoal: #333333;
  --color-graphite: #545454;
  --color-smoke: #767676;
  --color-ash: #808080;
  --color-emerald: #24b26d;
  --color-cobalt: #2c70dd;

  /* Alias semantici */
  --text: #333333;
  --text-muted: #545454;
  --text-soft: #767676;
  --bg: #ffffff;
  --surface-1: #f9f9fb;
  --surface-2: #eff0f6;
  --border: #e5e7eb;
  --accent: #2c70dd;
  --accent-2: #24b26d;

  /* Tipografia */
  --font-sen: 'Sen', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-logo: 'Georgia', 'Iowan Old Style', 'Times New Roman', serif;

  /* Scala tipografica */
  --text-caption: 13px;
  --text-body-sm: 15px;
  --text-body: 16px;
  --text-body-lg: 17px;
  --text-subheading: 19px;
  --text-heading-sm: 22px;
  --text-heading: 28px;
  --text-heading-lg: 40px;
  --text-display: 54px;

  /* Spaziatura */
  --sp-4: 4px;  --sp-8: 8px;   --sp-13: 13px; --sp-17: 17px;
  --sp-21: 21px; --sp-25: 25px; --sp-29: 29px; --sp-33: 33px;
  --sp-38: 38px; --sp-50: 50px; --sp-67: 67px; --sp-84: 84px; --sp-95: 95px;

  /* Layout */
  --page-max: 1200px;
  --content-max: 1100px;
  --radius-card: 12px;
  --radius-link: 6px;
  --radius-pill: 9999px;
  --header-h: 64px;

  /* Maschera stelle (5 stelle, 112x20) */
  --star-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='20' viewBox='0 0 112 20'%3E%3Cg fill='%23000'%3E%3Cpolygon points='10,1 12.6,7.4 19.5,7.4 13.9,11.8 16,18.6 10,14.5 4,18.6 6.1,11.8 0.5,7.4 7.4,7.4'/%3E%3Cpolygon points='10,1 12.6,7.4 19.5,7.4 13.9,11.8 16,18.6 10,14.5 4,18.6 6.1,11.8 0.5,7.4 7.4,7.4' transform='translate(23,0)'/%3E%3Cpolygon points='10,1 12.6,7.4 19.5,7.4 13.9,11.8 16,18.6 10,14.5 4,18.6 6.1,11.8 0.5,7.4 7.4,7.4' transform='translate(46,0)'/%3E%3Cpolygon points='10,1 12.6,7.4 19.5,7.4 13.9,11.8 16,18.6 10,14.5 4,18.6 6.1,11.8 0.5,7.4 7.4,7.4' transform='translate(69,0)'/%3E%3Cpolygon points='10,1 12.6,7.4 19.5,7.4 13.9,11.8 16,18.6 10,14.5 4,18.6 6.1,11.8 0.5,7.4 7.4,7.4' transform='translate(92,0)'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- Reset leggero ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sen);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.12; color: var(--text); }
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; }
}

/* ---------- Contenitore ---------- */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Sezioni ---------- */
.section { padding-block: var(--sp-84); }
.section--tint { background: var(--surface-1); border-block: 1px solid var(--border); }
.section__head { max-width: 720px; margin-bottom: var(--sp-38); }
.section__eyebrow {
  display: inline-block;
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-13);
}
.section__title {
  font-size: var(--text-heading-lg);
  letter-spacing: -0.02em;
}
.section__subtitle {
  margin-top: var(--sp-17);
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1;
  padding: 13px 24px;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--color-charcoal); color: var(--color-snow); }
.btn--primary:hover { background: #1f2126; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--color-graphite); }
.btn--ghost:hover { border-color: var(--color-charcoal); background: var(--surface-2); }
.btn--light { background: var(--color-snow); color: var(--color-charcoal); }
.btn--light:hover { background: #eceef3; }
.btn--block { width: 100%; }
.btn__icon { width: 18px; height: 18px; flex: none; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-21);
  min-height: var(--header-h);
}
.logo {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.logo__accent { color: var(--accent); }
.nav { display: flex; align-items: center; gap: var(--sp-25); }
.nav__list { display: flex; align-items: center; gap: var(--sp-25); }
.nav__link {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-link);
  transition: color .16s ease;
}
.nav__link:hover { color: var(--accent); }
.nav__cta { margin-left: var(--sp-8); }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-link);
  background: var(--color-snow);
  align-items: center; justify-content: center;
}
.burger__bars, .burger__bars::before, .burger__bars::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.burger__bars { position: relative; }
.burger__bars::before { position: absolute; top: -6px; left: 0; }
.burger__bars::after { position: absolute; top: 6px; left: 0; }
.burger.is-open .burger__bars { background: transparent; }
.burger.is-open .burger__bars::before { transform: translateY(6px) rotate(45deg); }
.burger.is-open .burger__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--color-snow);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(15,17,22,0.92) 0%, rgba(15,17,22,0.78) 42%, rgba(15,17,22,0.55) 100%);
}
.hero__inner { padding-block: 110px 96px; max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-8);
  font-size: var(--text-caption); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #dfe7f6;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: var(--sp-25);
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); }
.hero__title {
  font-size: var(--text-display);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-snow);
}
.hero__title-accent { color: #7fb0ff; }
.hero__subtitle {
  margin-top: var(--sp-21);
  font-size: var(--text-subheading);
  font-weight: 400;
  line-height: 1.65;
  color: #e7e9ee;
  max-width: 620px;
}
.hero__actions { margin-top: var(--sp-33); display: flex; flex-wrap: wrap; gap: var(--sp-13); }
.hero__note { margin-top: var(--sp-21); font-size: var(--text-body-sm); color: #c7cbd4; }

/* ---------- Statistiche ---------- */
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-17);
}
.stat {
  background: var(--color-snow);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--sp-25);
}
.stat__num { font-size: var(--text-heading-lg); letter-spacing: -0.02em; }
.stat__label { margin-top: var(--sp-8); font-size: var(--text-body-sm); color: var(--text-muted); }

/* ---------- Stelle rating ---------- */
.stars {
  position: relative; display: inline-block;
  width: 112px; height: 20px; vertical-align: middle; flex: none;
}
.stars__bg, .stars__fg {
  position: absolute; top: 0; left: 0; height: 20px;
  -webkit-mask: var(--star-mask) left center / 112px 20px no-repeat;
          mask: var(--star-mask) left center / 112px 20px no-repeat;
}
.stars__bg { width: 112px; background: var(--color-silver); }
.stars__fg { width: var(--pct, 0%); background: var(--color-charcoal); }
.rating { display: inline-flex; align-items: center; gap: var(--sp-8); }
.rating__num { font-size: var(--text-body-sm); font-weight: 600; color: var(--text); }

/* ---------- Sezione gioco in evidenza (star) ---------- */
.star { }
.star__layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-50); align-items: start; }
.star__media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-13); }
.star__shot {
  width: 100%; height: auto; border-radius: var(--radius-card);
  border: 1px solid var(--border); background: var(--surface-2);
}
.star__shot--wide { grid-column: 1 / -1; }
.star__head { display: flex; align-items: center; gap: var(--sp-17); margin-bottom: var(--sp-21); }
.star__icon {
  width: 74px; height: 74px; border-radius: 18px; border: 1px solid var(--border); flex: none;
}
.star__name { font-size: var(--text-heading); letter-spacing: -0.02em; }
.star__dev { font-size: var(--text-body-sm); color: var(--text-soft); margin-top: 2px; }
.star__lead { font-size: var(--text-body-lg); color: var(--text-muted); line-height: 1.7; margin-bottom: var(--sp-21); }
.star__facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-13);
  margin-bottom: var(--sp-25);
}
.fact {
  border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: var(--sp-13) var(--sp-17); background: var(--surface-1);
}
.fact__k { font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); }
.fact__v { font-size: var(--text-body); font-weight: 600; margin-top: 3px; }
.star__subtitle { font-size: var(--text-subheading); font-weight: 600; margin: var(--sp-25) 0 var(--sp-13); }
.star__list { display: grid; gap: var(--sp-13); margin-bottom: var(--sp-25); }
.star__list li { position: relative; padding-left: 28px; color: var(--text-muted); font-size: var(--text-body); line-height: 1.6; }
.star__list .ico { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; color: var(--accent-2); }

/* ---------- Catalogo giochi ---------- */
.games__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-25);
}
.card {
  display: flex; flex-direction: column;
  background: var(--color-snow);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: var(--sp-21);
  transition: border-color .18s ease, background-color .18s ease;
}
.card:hover { border-color: #d2d5db; background: var(--surface-1); }
.card__top { display: flex; gap: var(--sp-13); align-items: center; margin-bottom: var(--sp-17); }
.card__icon { width: 58px; height: 58px; border-radius: 14px; border: 1px solid var(--border); flex: none; }
.card__title { font-size: var(--text-body-lg); font-weight: 700; letter-spacing: -0.01em; }
.card__dev { font-size: var(--text-caption); color: var(--text-soft); margin-top: 2px; }
.card__rating { margin-bottom: var(--sp-13); }
.card__desc { font-size: var(--text-body-sm); color: var(--text-muted); line-height: 1.6; flex: 1 1 auto; margin-bottom: var(--sp-17); }
.card__foot { margin-top: auto; }

/* ---------- Passi / come iniziare ---------- */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-25); }
.step { border: 1px solid var(--border); border-radius: var(--radius-card); padding: var(--sp-25); background: var(--color-snow); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-charcoal); color: var(--color-snow);
  font-weight: 700; font-size: var(--text-body); margin-bottom: var(--sp-17);
}
.step__title { font-size: var(--text-heading-sm); margin-bottom: var(--sp-8); }
.step__text { font-size: var(--text-body-sm); color: var(--text-muted); line-height: 1.65; }

/* ---------- Fiducia / valori ---------- */
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-25); }
.trust__item { }
.trust__icon {
  width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  margin-bottom: var(--sp-17); background: var(--surface-1);
}
.trust__icon svg { width: 24px; height: 24px; }
.trust__title { font-size: var(--text-heading-sm); margin-bottom: var(--sp-8); }
.trust__text { font-size: var(--text-body-sm); color: var(--text-muted); line-height: 1.65; }

/* ---------- Monetizzazione ---------- */
.monetize__layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-50); align-items: center; }
.monetize__list { display: grid; gap: var(--sp-17); }
.monetize__item {
  border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: var(--sp-21); background: var(--color-snow);
}
.monetize__item h3 { font-size: var(--text-body-lg); margin-bottom: 6px; }
.monetize__item p { font-size: var(--text-body-sm); color: var(--text-muted); line-height: 1.6; }
.monetize__aside {
  border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: var(--sp-33); background: var(--surface-2);
}
.monetize__aside h3 { font-size: var(--text-heading-sm); margin-bottom: var(--sp-13); }
.monetize__aside p { color: var(--text-muted); font-size: var(--text-body-sm); line-height: 1.7; margin-bottom: var(--sp-13); }
.monetize__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-caption); font-weight: 600; color: var(--accent-2);
  border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 5px 12px; background: var(--color-snow);
}

/* ---------- Recensioni ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-25); }
.review {
  border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: var(--sp-25); background: var(--color-snow);
  display: flex; flex-direction: column; gap: var(--sp-13);
}
.review__quote { font-size: var(--text-body); color: var(--text); line-height: 1.65; flex: 1 1 auto; }
.review__author { display: flex; align-items: center; gap: var(--sp-13); }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border);
  font-weight: 700; font-size: var(--text-body-sm); color: var(--text);
}
.review__name { font-size: var(--text-body-sm); font-weight: 600; }
.review__role { font-size: var(--text-caption); color: var(--text-soft); }

/* ---------- Form ---------- */
.subscribe__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-50); align-items: center; }
.form {
  border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: var(--sp-33); background: var(--color-snow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-13); margin-bottom: var(--sp-13); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label { font-size: var(--text-caption); font-weight: 600; color: var(--text-muted); }
.field__input {
  width: 100%; padding: 12px 14px; font-size: var(--text-body-sm);
  border: 1px solid var(--border); border-radius: var(--radius-link);
  background: var(--surface-1); color: var(--text); font-family: inherit;
  transition: border-color .16s ease, background-color .16s ease;
}
.field__input:focus { outline: none; border-color: var(--accent); background: var(--color-snow); }
.consent { display: flex; align-items: flex-start; gap: var(--sp-8); margin: var(--sp-13) 0; }
.consent input { margin-top: 3px; width: 16px; height: 16px; flex: none; accent-color: var(--color-charcoal); }
.consent label { font-size: var(--text-caption); color: var(--text-muted); line-height: 1.5; }
.consent a { color: var(--accent); text-decoration: underline; }
.form__success {
  display: none; margin-top: var(--sp-17);
  border: 1px solid var(--accent-2); border-radius: var(--radius-link);
  background: #eafaf1; color: #146c43; padding: 12px 14px; font-size: var(--text-body-sm);
}
.form__success.is-visible { display: block; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-17);
  padding: var(--sp-21) 0; font-size: var(--text-body-lg); font-weight: 600; color: var(--text);
}
.faq__q .chev { width: 20px; height: 20px; flex: none; transition: transform .2s ease; color: var(--text-soft); }
.faq__item.is-open .chev { transform: rotate(180deg); }
.faq__a {
  overflow: hidden; max-height: 0; transition: max-height .28s ease;
}
.faq__a-inner { padding-bottom: var(--sp-21); color: var(--text-muted); font-size: var(--text-body); line-height: 1.7; }

/* ---------- Footer ---------- */
.footer { background: var(--surface-1); border-top: 1px solid var(--border); padding-block: var(--sp-67) var(--sp-33); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-38); margin-bottom: var(--sp-50); }
.footer__brand .logo { font-size: 20px; }
.footer__tag { margin-top: var(--sp-13); font-size: var(--text-body-sm); color: var(--text-muted); max-width: 320px; line-height: 1.6; }
.footer__col h4 { font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); margin-bottom: var(--sp-17); }
.footer__col li { margin-bottom: var(--sp-13); }
.footer__col a { font-size: var(--text-body-sm); color: var(--text-muted); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-17);
  padding-top: var(--sp-25); border-top: 1px solid var(--border);
  font-size: var(--text-caption); color: var(--text-soft); flex-wrap: wrap;
}
.footer__bottom a { color: var(--text-soft); }
.footer__bottom a:hover { color: var(--accent); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-charcoal); color: var(--color-snow);
  border: none; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70;
  max-width: 640px; margin-inline: auto;
  background: var(--color-snow); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: var(--sp-21);
  display: none; gap: var(--sp-17); align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie.is-visible { display: flex; }
.cookie__text { font-size: var(--text-body-sm); color: var(--text-muted); flex: 1 1 260px; line-height: 1.55; }
.cookie__text a { color: var(--accent); text-decoration: underline; }
.cookie__actions { display: flex; gap: var(--sp-8); }
.cookie .btn { padding: 10px 18px; font-size: var(--text-body-sm); }

/* ---------- Pagine legali ---------- */
.legal { padding-block: var(--sp-67); }
.legal__back { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-body-sm); color: var(--accent); margin-bottom: var(--sp-25); }
.legal__title { font-size: var(--text-heading-lg); letter-spacing: -0.02em; margin-bottom: var(--sp-8); }
.legal__updated { font-size: var(--text-body-sm); color: var(--text-soft); margin-bottom: var(--sp-38); }
.legal__body { max-width: 800px; }
.legal__body h2 { font-size: var(--text-heading-sm); margin: var(--sp-38) 0 var(--sp-13); }
.legal__body h3 { font-size: var(--text-body-lg); margin: var(--sp-25) 0 var(--sp-8); }
.legal__body p, .legal__body li { font-size: var(--text-body); color: var(--text-muted); line-height: 1.75; }
.legal__body p { margin-bottom: var(--sp-13); }
.legal__body ul { list-style: disc; padding-left: 22px; margin-bottom: var(--sp-17); }
.legal__body li { margin-bottom: 6px; }
.legal__body a { color: var(--accent); text-decoration: underline; }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.tag-ad {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-soft); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 2px 8px; margin-left: 8px; vertical-align: middle;
}

/* ---------- Guida per principianti ---------- */
.guide__layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: var(--sp-50); align-items: start; }
.guide__sign { margin-top: var(--sp-21); font-size: var(--text-caption); text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); }
.guide__list { display: grid; }
.guide__step { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-21); align-items: start; padding: var(--sp-21) 0; border-bottom: 1px solid var(--border); }
.guide__step:first-child { padding-top: 0; }
.guide__step:last-child { border-bottom: none; }
.guide__n { font-family: var(--font-logo); font-size: var(--text-heading-sm); font-weight: 700; color: var(--accent); line-height: 1; padding-top: 3px; }
.guide__t { font-size: var(--text-subheading); margin-bottom: 6px; letter-spacing: -0.01em; }
.guide__p { font-size: var(--text-body); color: var(--text-muted); line-height: 1.7; }

/* ---------- Byline redazionale ---------- */
.star__byline { font-size: var(--text-body-sm); color: var(--text-soft); font-style: italic; margin: var(--sp-8) 0 0; }

/* ---------- Catalogo magazine ---------- */
.featured {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-33); align-items: center;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: var(--sp-38); margin-bottom: var(--sp-33);
}
.featured__icon { width: 112px; height: 112px; border-radius: 24px; border: 1px solid var(--border); flex: none; }
.featured__meta { display: flex; align-items: center; gap: var(--sp-13); margin-bottom: var(--sp-13); flex-wrap: wrap; }
.pill-editor {
  display: inline-flex; align-items: center; font-size: var(--text-caption); font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-snow); background: var(--color-charcoal);
  border-radius: var(--radius-pill); padding: 4px 12px;
}
.featured__title { font-size: var(--text-heading); letter-spacing: -0.02em; }
.featured__dev { font-size: var(--text-body-sm); color: var(--text-soft); margin: 2px 0 var(--sp-13); }
.featured__desc { font-size: var(--text-body-lg); color: var(--text-muted); line-height: 1.7; margin-bottom: var(--sp-21); max-width: 62ch; }

.mag__cols { column-count: 2; column-gap: var(--sp-25); }
.mag__cols .card { break-inside: avoid; margin-bottom: var(--sp-25); }
.card__kicker { font-size: var(--text-body-sm); font-style: italic; color: var(--text-soft); margin: -6px 0 var(--sp-17); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .star__layout, .monetize__layout, .subscribe__layout { grid-template-columns: 1fr; gap: var(--sp-38); }
  .games__grid, .steps__grid, .trust__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .guide__layout { grid-template-columns: 1fr; gap: var(--sp-29); }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: var(--color-snow);
    border-bottom: 1px solid var(--border); flex-direction: column; align-items: stretch;
    gap: 0; padding: var(--sp-13) 24px var(--sp-25); transform: translateY(-8px);
    opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav__cta { margin: var(--sp-17) 0 0; }
  .nav__cta .btn { width: 100%; }
  .burger { display: inline-flex; }
  .hero__title { font-size: 42px; }
  .hero__inner { padding-block: 76px 64px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-33); }
  .footer__brand { grid-column: 1 / -1; }
  .mag__cols { column-count: 1; }
  .featured { grid-template-columns: 1fr; padding: var(--sp-25); gap: var(--sp-21); }
  .featured__icon { width: 84px; height: 84px; }
}
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .section { padding-block: var(--sp-50); }
  .games__grid, .steps__grid, .trust__grid, .reviews__grid, .stats__grid, .star__facts { grid-template-columns: 1fr; }
  .star__media { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__title { font-size: 34px; }
  .section__title { font-size: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
