/* Arrière-plan opaque imitant l'effet de l'image */
#pm-age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 25, 25, 0.94); /* Fond noir très sombre et opaque */
    z-index: 9999999; /* Priorité absolue devant tous les éléments */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Boîte centrale blanche */
#pm-age-box {
    background-color: #ffffff;
    padding: 40px 50px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

/* Style de la marque Passion Mens */
.pm-age-header {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.pm-brand-passion {
    color: #000000; /* Noir exact */
}

.pm-brand-mens {
    color: #f72772; /* Rose fuchsia exact */
}

/* Texte de la question */
.pm-age-body {
    color: #7c7c7c;
    font-size: 15px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Conteneur des boutons */
.pm-age-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Style de base des boutons */
.pm-age-btn {
    flex: 1;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

/* Bouton OUI fuchsia */
#pm-age-btn-yes {
    background-color: #f72772;
    color: #ffffff;
}

#pm-age-btn-yes:hover {
    opacity: 0.9;
}

/* Bouton NON gris */
#pm-age-btn-no {
    background-color: #e0e0e0;
    color: #bcbcbc;
}

#pm-age-btn-no:hover {
    background-color: #d5d5d5;
}