/* Rend absolument tout transparent sur la page */
* {
  color: transparent !important;       /* Texte */
  background: transparent !important;  /* Fonds */
  border-color: transparent !important;/* Bordures */
  box-shadow: none !important;         /* Ombres */
  text-shadow: none !important;        /* Ombres de texte */
  outline: none !important;            /* Contours focus */
  opacity: 0 !important;               /* Élément entièrement invisible */
}

/* Désactive aussi les pseudo-éléments */
*::before,
*::after {
  content: none !important;
  background: transparent !important;
  border-color: transparent !important;
  opacity: 0 !important;
}

/* Si tu veux tout rendre invisible mais garder la structure (aucun décalage de layout) */
html, body {
  background: transparent !important;
  opacity: 0 !important;
}
