/* ============================================================
   AMU — All My Universe · design system
   ============================================================
   L'idea guida e' una sola: GLANCEABLE. Il mondo di AMU vive sulla
   home screen di Android, dove le cose si leggono in un colpo
   d'occhio. Il sito e' costruito con gli stessi materiali: tessere
   che si leggono al volo, numeri veri in mono, e prodotti VIVI nella
   pagina invece che screenshot morti.

   Colore:  notte (#0E1220) come cielo comune a widget e giochi,
            carta (#F5F6F8) per la lettura lunga, sole (#FFC53D) come
            unico accento di marca. Ogni prodotto ha un colore firma
            usato con parsimonia: e' un accento, non un tema.
   Tipo:    Sora (display, geometrico: il carattere del marchio)
            Inter (testo, neutro: lascia parlare Sora)
            IBM Plex Mono (numeri: tabular, per contatori e timer che
            cambiano senza far ballare il layout — scelta funzionale)
   ============================================================ */

:root {
  /* — Notte: il cielo di AMU */
  --night: #0E1220;
  --night-2: #171C2E;
  --night-3: #232A42;

  /* — Carta */
  --paper: #F5F6F8;
  --card: #FFFFFF;
  --line: #E4E8EF;
  --line-dark: rgba(255, 255, 255, 0.10);

  /* — Inchiostro */
  --ink: #131A26;
  --ink-soft: #4A5768;
  --ink-faint: #8A94A6;
  --on-night: #EEF1F6;
  --on-night-soft: #A6B0C3;

  /* — Sole: l'unico accento di marca */
  --sun: #FFC53D;
  --sun-deep: #E9A800;
  --sun-ink: #2A2530;

  /* — Firme di prodotto (accenti, non temi) */
  --ams: #3B82F6;
  --amb: #22C55E;
  --amb-red: #EF4444;
  --sidera: #A78BFA;
  --squishy: #FF1F9C;

  /* — Struttura */
  --max: 1120px;
  --gutter: 24px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* — Ombre: basse e larghe, come una tessera appoggiata */
  --lift-1: 0 1px 2px rgba(19, 26, 38, .06), 0 4px 16px rgba(19, 26, 38, .05);
  --lift-2: 0 2px 4px rgba(19, 26, 38, .07), 0 16px 40px rgba(19, 26, 38, .10);
  --lift-night: 0 20px 60px rgba(0, 0, 0, .45);

  --ease: cubic-bezier(.22, .8, .28, 1);
}

/* ---------- reset essenziale ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

/* Accessibilita': focus SEMPRE visibile, mai rimosso. */
:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--sun); color: var(--sun-ink);
  padding: 10px 16px; border-radius: var(--r-pill); font-weight: 700;
}
.skip:focus { left: 12px; }

/* ---------- tipografia ---------- */
h1, h2, h3, h4 {
  font-family: Sora, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.7rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.015em; }
p { margin: 0 0 1em; text-wrap: pretty; }
.lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 62ch; }

/* L'occhiello dice DOVE sei, non decora. */
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 .8em;
  display: flex; align-items: center; gap: .6em;
}
.eyebrow::before {
  content: ""; width: 18px; height: 2px; background: var(--sun);
  border-radius: 2px; flex: none;
}
.mono { font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-variant-numeric: tabular-nums; }

/* ---------- layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(56px, 9vw, 104px) 0; }
.section-head { max-width: 66ch; margin-bottom: clamp(28px, 4vw, 44px); }

.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .g-2, .g-3 { grid-template-columns: 1fr; } }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 246, 248, .82);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr-in {
  max-width: var(--max); margin: 0 auto; padding: 12px var(--gutter);
  display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand b { font-family: Sora, sans-serif; letter-spacing: -.02em; }
.brand span { color: var(--ink-faint); font-weight: 600; font-size: .9rem; }
@media (max-width: 560px) { .brand span { display: none; } }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--ink-soft); font-weight: 600;
  font-size: .93rem; padding: 8px 12px; border-radius: var(--r-pill);
  transition: color .18s, background .18s;
}
.nav a:hover { color: var(--ink); background: rgba(19, 26, 38, .05); }
.nav a[aria-current="page"] { color: var(--ink); background: rgba(19, 26, 38, .06); }

/* Menu Giochi: i due giochi sono figli, e la struttura lo dice. */
.drop { position: relative; }
.drop > button {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 0; cursor: pointer;
  color: var(--ink-soft); font-weight: 600; font-size: .93rem;
  padding: 8px 12px; border-radius: var(--r-pill);
}
.drop > button:hover { color: var(--ink); background: rgba(19, 26, 38, .05); }
.drop > button svg { transition: transform .2s var(--ease); }
.drop[data-open="true"] > button svg { transform: rotate(180deg); }
.drop[data-open="true"] > button {
  color: var(--ink); background: rgba(19, 26, 38, .06);
}
/* Il contenitore e' TRASPARENTE e attaccato al bottone (top:100%):
   il suo padding-top e' spazio vuoto che pero' fa parte dell'area
   sensibile. Il mouse scende dal bottone alla tendina senza mai
   uscire dal gruppo. */
.drop-menu {
  position: absolute; right: 0; top: 100%; min-width: 232px;
  padding-top: 9px; display: none;
}
.drop-inner {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--lift-2); padding: 6px;
}
/* UNA sola condizione di apertura: il click ha messo data-open.
   Nessun :hover, da nessuna parte. La tendina si apre quando la
   apri e si chiude quando la chiudi: non si muove da sola. */
.drop[data-open="true"] .drop-menu { display: block; }
.drop-menu a {
  display: flex; gap: 10px; align-items: center; padding: 9px 10px;
  border-radius: var(--r-sm); text-decoration: none;
}
.drop-menu a:hover { background: var(--paper); }
.drop-menu img { width: 26px; height: 26px; border-radius: 7px; }
.drop-menu i { font-style: normal; font-size: .78rem; color: var(--ink-faint); display: block; }
.drop-menu b { font-size: .93rem; }

.nav-toggle { display: none; }
@media (max-width: 780px) {
  .nav {
    position: fixed; inset: 60px 0 auto; flex-direction: column;
    align-items: stretch; gap: 2px; background: var(--card);
    border-bottom: 1px solid var(--line); padding: 10px;
    box-shadow: var(--lift-2); transform: translateY(-120%);
    transition: transform .3s var(--ease);
  }
  .nav[data-open="true"] { transform: none; }
  .nav a, .drop > button { width: 100%; padding: 12px; border-radius: var(--r-sm); }
  .drop-menu { position: static; display: block; padding: 0 0 0 12px; }
  .drop-inner { background: none; border: 0; box-shadow: none; padding: 0; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; align-items: center; gap: 7px;
    background: none; border: 1px solid var(--line); border-radius: var(--r-pill);
    padding: 7px 13px; font-weight: 700; font-size: .88rem; cursor: pointer;
  }
}

/* ---------- bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .96rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sun { background: var(--sun); color: var(--sun-ink); box-shadow: 0 6px 20px rgba(255, 197, 61, .38); }
.btn-sun:hover { box-shadow: 0 10px 28px rgba(255, 197, 61, .5); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost { border-color: var(--line); background: var(--card); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-faint); }
.on-night .btn-ghost {
  background: rgba(255, 255, 255, .06); border-color: var(--line-dark);
  color: var(--on-night);
}
.btn[aria-disabled="true"] {
  background: var(--line); color: var(--ink-faint); pointer-events: none;
  box-shadow: none;
}

/* ---------- tessere ---------- */
.tile {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--lift-1);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
a.tile { text-decoration: none; display: block; color: inherit; }
a.tile:hover { transform: translateY(-4px); box-shadow: var(--lift-2); border-color: #D6DCE6; }
.tile-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tile-head img { width: 52px; height: 52px; border-radius: 14px; box-shadow: var(--lift-1); }
.tile p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 16px; padding: 0; list-style: none; }
.chips li {
  font-size: .78rem; font-weight: 600; color: var(--ink-soft);
  background: var(--paper); border: 1px solid var(--line);
  padding: 4px 11px; border-radius: var(--r-pill);
}
.on-night .chips li {
  background: rgba(255, 255, 255, .05); border-color: var(--line-dark);
  color: var(--on-night-soft);
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill);
  font-family: "IBM Plex Mono", monospace;
}
.badge-live { background: rgba(34, 197, 94, .14); color: #15803D; }
.badge-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; box-shadow: 0 0 0 3px rgba(34, 197, 94, .22);
}
.badge-soon { background: rgba(255, 197, 61, .18); color: #8A6200; }

/* ---------- sezioni notte ---------- */
.on-night {
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--on-night);
}
.on-night h1, .on-night h2, .on-night h3 { color: #fff; }
.on-night .lede, .on-night p { color: var(--on-night-soft); }
.on-night .eyebrow { color: var(--on-night-soft); }
.on-night .tile {
  background: rgba(255, 255, 255, .04); border-color: var(--line-dark);
  box-shadow: none; backdrop-filter: blur(6px);
}
.on-night a.tile:hover { border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .07); }

/* ---------- footer ---------- */
.ftr { background: var(--night); color: var(--on-night-soft); padding: 60px 0 28px; }
.ftr h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; font-family: "IBM Plex Mono", monospace; font-weight: 600; margin-bottom: 14px; }
.ftr a { color: var(--on-night-soft); text-decoration: none; font-size: .93rem;
  display: block; padding: 4px 0; }
.ftr a:hover { color: var(--sun); }
.ftr-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .ftr-grid { grid-template-columns: 1fr; gap: 28px; } }
.ftr-btm { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line-dark);
  font-size: .82rem; color: #6B7686; display: flex; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; }

/* ---------- rivelazione allo scroll (discreta) ---------- */
.rise { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rise.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .rise { opacity: 1; transform: none; }
}

/* ============================================================
   IL PEZZO FORTE — la home screen viva.
   ============================================================
   Non uno screenshot: i widget FUNZIONANO. Il countdown scorre
   davvero, il bottone diventa verde davvero, la gelatina sbatte le
   palpebre. E' la dimostrazione della promessa di AMU ("lo vedi a
   colpo d'occhio") fatta con la cosa stessa, non con un'immagine di
   essa. Tutto in CSS/SVG: zero immagini pesanti, zero framework.
   ============================================================ */

.phone {
  width: min(300px, 82vw); aspect-ratio: 9 / 18.6;
  border-radius: 40px; padding: 12px;
  background: linear-gradient(155deg, #2C3448, #141926);
  box-shadow: var(--lift-night), 0 0 0 1px rgba(255, 255, 255, .10) inset;
  position: relative;
}
.phone::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 9px; width: 96px; height: 4px; border-radius: 4px;
  background: rgba(255, 255, 255, .28);
}
.screen {
  height: 100%; border-radius: 30px; overflow: hidden; position: relative;
  background:
    radial-gradient(120% 80% at 20% 0%, #3C4A7A 0%, transparent 60%),
    radial-gradient(100% 70% at 90% 10%, #7A3F6E 0%, transparent 55%),
    linear-gradient(180deg, #1B2138 0%, #0D1120 100%);
  padding: 14px 12px; display: flex; flex-direction: column; gap: 10px;
}
.status {
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255, 255, 255, .72); font-size: .66rem; padding: 0 4px 2px;
  font-family: "IBM Plex Mono", monospace;
}
.wdg { border-radius: 16px; padding: 11px 13px; position: relative; overflow: hidden; }

/* Widget AMS: il countdown vero */
.w-ams {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  box-shadow: 0 8px 22px rgba(37, 99, 235, .40);
}
.w-ams .lbl { color: rgba(255, 255, 255, .82); font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; }
.w-ams .clock {
  font-family: "IBM Plex Mono", monospace; font-variant-numeric: tabular-nums;
  color: #fff; font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em;
  line-height: 1.15;
}
.w-ams .clock .cs { color: #BFDBFE; font-size: 1.05rem; }
.bar { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, .28); margin-top: 7px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: #fff; border-radius: 4px; }

/* Widget AMB: il bottone che si tocca davvero */
.w-amb {
  background: linear-gradient(135deg, var(--amb-red), #DC2626);
  box-shadow: 0 8px 22px rgba(239, 68, 68, .38);
  cursor: pointer; border: 0; width: 100%; text-align: left;
  transition: background .32s var(--ease), box-shadow .32s var(--ease);
  color: #fff; display: flex; align-items: center; gap: 10px;
}
.w-amb[data-on="true"] {
  background: linear-gradient(135deg, var(--amb), #16A34A);
  box-shadow: 0 8px 22px rgba(34, 197, 94, .40);
}
.w-amb .dot {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: rgba(255, 255, 255, .22);
  display: grid; place-items: center; font-size: .95rem;
}
.w-amb .t { font-size: .74rem; font-weight: 800; line-height: 1.25; }
.w-amb .s { font-size: .6rem; opacity: .85; font-family: "IBM Plex Mono", monospace; }

/* Riga giochi: due tessere quadrate come icone sulla home */
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.w-sidera {
  background: linear-gradient(160deg, #241B45, #120E24);
  border: 1px solid rgba(167, 139, 250, .30);
  display: grid; place-items: center; aspect-ratio: 1;
}
.w-squishy {
  background: linear-gradient(160deg, #FF57A8, #C2185B);
  display: grid; place-items: center; aspect-ratio: 1;
  box-shadow: 0 8px 22px rgba(255, 31, 156, .34);
}
.jelly { width: 62%; cursor: pointer; }
.jelly .eye-l, .jelly .eye-r { transform-origin: center; }
.blink .eye-l, .blink .eye-r { animation: blink 3.6s var(--ease) infinite; }
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(.08); }
}
.squish { animation: squish .42s var(--ease); }
@keyframes squish {
  0% { transform: scale(1, 1); }
  35% { transform: scale(1.14, .84); }
  70% { transform: scale(.94, 1.07); }
  100% { transform: scale(1, 1); }
}
.stars-grid { width: 74%; }
.stars-grid .st { opacity: 0; }
.stars-grid.on .st { animation: pop .5s var(--ease) forwards; }
.stars-grid.on .st:nth-child(1) { animation-delay: .1s; }
.stars-grid.on .st:nth-child(2) { animation-delay: .5s; }
.stars-grid.on .st:nth-child(3) { animation-delay: .9s; }
.stars-grid.on .st:nth-child(4) { animation-delay: 1.3s; }
@keyframes pop {
  0% { opacity: 0; transform: scale(.4); }
  60% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}

.wdg-cap {
  font-size: .58rem; color: rgba(255, 255, 255, .5); text-align: center;
  font-family: "IBM Plex Mono", monospace; letter-spacing: .06em;
  margin-top: auto; padding-bottom: 4px;
}

/* hero — SEMPRE notte: e' la firma di AMU. Apri una pagina qualsiasi
   e sai dove sei. Sotto, il contenuto lungo torna su carta, dove si
   legge meglio. Il ritmo (notte -> carta -> notte -> carta -> footer)
   e' identico su tutte le pagine: e' quello che tiene insieme il
   sito. */
.hero { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(48px, 7vw, 90px); }
.hero.on-night { position: relative; overflow: hidden; }
/* Alone dietro l'oggetto dell'hero: stacca il telefono (o la foto)
   dal fondo scuro, senza aggiungere immagini. */
.hero.on-night::before {
  content: ""; position: absolute; z-index: 0;
  right: -6%; top: 50%; transform: translateY(-50%);
  width: 62vw; max-width: 720px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,197,61,.13) 0%,
    rgba(59,130,246,.10) 42%, transparent 68%);
  pointer-events: none;
}
.hero.on-night > * { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .hero.on-night::before { right: -20%; top: 26%; width: 110vw; }
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; display: grid; place-items: center; }
}
.hero-art { display: grid; place-items: center; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 0; }

/* numeri: fatti, non slogan */
.facts { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; }
.facts b {
  font-family: Sora, sans-serif; font-size: 1.7rem; font-weight: 800;
  display: block; line-height: 1; letter-spacing: -.03em;
}
.facts span { font-size: .78rem; color: var(--ink-faint); font-weight: 600;
  font-family: "IBM Plex Mono", monospace; }
.on-night .facts b { color: #fff; }
.on-night .facts span { color: var(--on-night-soft); }
.on-night .badge-live { background: rgba(34,197,94,.18); color: #6EE7A8; }
.on-night .badge-soon { background: rgba(255,197,61,.20); color: var(--sun); }
.on-night strong { color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   LEGAL — informative privacy e cancellazione dati
   Una colonna di lettura lunga su carta. L'accento Sole compare
   solo dove aiuta a leggere: numeri dei passaggi, testate delle
   tabelle, sottolineature dei link. Nessun colore nuovo.
   ═══════════════════════════════════════════════════════════════ */
.legal { max-width: 74ch; margin-inline: auto; }
.legal > h2 {
  font-size: clamp(1.3rem, 2.3vw, 1.62rem);
  margin: 2.5em 0 .55em;
  padding-top: 1.5em;
  border-top: 1px solid var(--line);
}
.legal > h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal h3 { font-size: 1.02rem; margin: 1.8em 0 .35em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin: 0 0 1em; }
.legal ul { padding-left: 1.25em; margin: 0 0 1.1em; }
.legal li { margin-bottom: .45em; }
.legal strong { color: var(--ink); }
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--sun);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--sun-deep); }

/* Timbro della data: mono, come i dati altrove nel sito */
.stamp {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .82rem;
  letter-spacing: .02em;
  margin: 1.4em 0 0;
}

/* Riquadro "in breve": la promessa in chiaro, prima del testo legale */
.glance { margin-bottom: 2.6em; }
.glance ul { list-style: none; padding: 0; margin: 0; display: block; }
.glance li {
  position: relative;
  padding-left: 34px;
  margin: 0 0 .7em;
  color: var(--ink-soft);
}
.glance li:last-child { margin-bottom: 0; }
.glance li::before {
  content: "✓";
  position: absolute; left: 0; top: .1em;
  width: 22px; height: 22px; line-height: 22px;
  font-weight: 800; font-size: .82rem; text-align: center;
  border-radius: var(--r-pill);
  background: rgba(255, 197, 61, .22); color: var(--sun-deep);
}
.glance li b { color: var(--ink); }

/* Passaggi numerati (pagina di cancellazione) */
.legal-steps {
  list-style: none; counter-reset: ls; padding: 0;
  margin: 0 0 1.8em; display: grid; gap: 1.15em;
}
.legal-steps > li {
  counter-increment: ls; margin: 0;
  position: relative; padding-left: 60px; min-height: 44px;
}
.legal-steps > li::before {
  content: counter(ls);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--sun); color: var(--sun-ink);
  font-family: Sora, sans-serif; font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center;
}
.legal-steps b {
  display: block; color: var(--ink);
  font-family: Sora, sans-serif; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .15em;
}

/* Tabelle: leggere, con la testata marcata dal Sole */
.legal table {
  width: 100%; border-collapse: collapse;
  margin: .3em 0 1.5em; font-size: .95rem;
}
.legal th, .legal td {
  text-align: left; padding: .78em .9em;
  border-bottom: 1px solid var(--line);
  vertical-align: top; color: var(--ink-soft);
}
.legal thead th {
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 2px solid var(--sun);
}
.legal tbody tr:last-child td { border-bottom: 0; }
.legal-table-wrap { overflow-x: auto; }

@media (max-width: 560px) {
  .legal-steps > li { padding-left: 50px; }
  .legal-steps > li::before { width: 38px; height: 38px; font-size: .95rem; }
}


/* Primo item della tendina Games: "vedi tutti", con icona a griglia
   coerente con le voci-gioco che seguono, ma segnato come indice. */
.drop-all { align-items: center; }
.drop-all-ic {
  width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(255, 197, 61, .16); color: var(--sun-deep);
  flex: 0 0 26px;
}
.drop-inner .drop-all + a,
.drop-all { border-radius: 10px; }
.drop-all + a { margin-top: 2px; }
