/* Fond commun au site (index + result) */
body.bg-img{
  /* couleur de fond + image */
  background: #f7f9fc url("/assets/img/bg.webp") center/cover fixed no-repeat;
}

/* Sur result.html, on neutralise les décors ::before/::after
   pour que l'image soit bien visible */
body.bg-img::before,
body.bg-img::after{
  display: none !important;
}

/* Impression : fond blanc propre */
@media print{
  body.bg-img{
    background: #fff !important;
  }
}
