  body > * {
    display: none !important;
  }

  /* Affiche le message à la place */
  body::before {
    content: "Site en construction. Merci de l'ouvrir sur un ordinateur de bureau (écran large).";
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #0a0a0a;
    color: #fff;
    font-family: sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
  }
}