 /* Le lien déclencheur */
        .modal-trigger {
            color: #0071e3;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.2s ease;
            border-bottom: 1px solid transparent;
        }

        .modal-trigger:hover {
            color: #005bb5;
            border-bottom-color: #005bb5;
        }

        /* --- STRUCTURE DE LA MODALE --- */
        /* L'arrière-plan (Overlay) */
        .modal-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px); /* Effet flou moderne arrière-plan */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            
            /* État initial caché */
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        /* La boîte de dialogue (Fenêtre) */
        .modal-content {
            background-color: #ffffff;
            padding: 2.5rem;
            max-width: 500px;
            width: 90%;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            
            /* État initial de l'animation (décalé vers le bas et rétréci) */
            transform: translateY(20px) scale(0.95);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- ANIMATION À L'OUVERTURE --- */
        .modal-container.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-container.active .modal-content {
            transform: translateY(0) scale(1);
        }

        /* --- ÉLÉMENTS DE LA MODALE --- */
        /* Bouton Fermer (Croix) */
        .close-button {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #8e8e93;
            cursor: pointer;
            transition: color 0.2s ease;
            line-height: 1;
        }

        .close-button:hover {
            color: #1d1d1f;
        }

        /* Contenu textuel */
        .modal-content h2 {
            margin-top: 0;
            font-size: 1.5rem;
            color: #1d1d1f;
            font-weight: 600;
        }

        .modal-content p {
            color: #515154;
            line-height: 1.6;
            margin-bottom: 0;
        }