/* On applique un filtre sombre sur le fond d'écran pour réduire son impact visuel */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* 0.55 = 55% d'opacité noire. Augmente à 0.70 si tu veux encore plus sombre */
    z-index: -1;
}
