/* ============================================================================
 * TEST — sfondo “Know your roots” (controller bianco su nero)
 *
 * Come tornare allo stato precedente:
 *   1. In index.html rimuovi  data-rgh-test-bg  dal tag <html>
 *   2. Rimuovi il <link> a questo file (vedi commento vicino in index.html)
 *   3. (Opzionale) elimina questo file e l’immagine in /assets/images/
 *
 * Immagine: copia il PNG allegato in chat come:
 *   /assets/images/know-your-roots-bg.png
 * ============================================================================ */

html[data-rgh-test-bg] body::before {
  /* Sostituisce il parallax fixed con nero pieno (l’immagine scorre nel pannello) */
  position: absolute;
  inset: 0;
  transform: none;
  transition: none;
  will-change: auto;
  background: #000000;
}

html[data-rgh-test-bg] .content__body {
  background-color: #000000;
  background-image: url('/assets/images/Io3rG2a-video-game-backgrounds.webp');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-attachment: scroll;
  /* Ridimensiona il motivo in basso a destra senza tagliare il testo */
  background-size: min(92vw, 640px) auto;
}
