        /* Désactiver la sélection du texte */
        body {
            user-select: none;
        }

                /* Cacher le texte derrière un div transparent */
        .text-container {
            position: relative;
        }

        .text-container p {
            position: relative;
			z-index: 1;  /* Texte au-dessus */
        }

        .text-container::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0); /* Transparent */
            z-index: 2; /* Le div transparent par-dessus le texte */
        }

        .watermark {
            position: relative;
            display: inline-block;
        }

        .watermark img {
            width: 100%;
            height: auto;
        }

        .watermark::after {
            content: "Focus Actualité";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 30px;
            color: rgba(255, 255, 255, 0.5); /* Couleur du texte du watermark */
            font-weight: bold;
            z-index: 10;
        }