.popup-annonce {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.popup-annonce-content { background: #fff; padding: 30px 40px; border-radius: 12px; width: 90%; max-width: 520px; text-align: center; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); transform: scale(0.95); opacity: 0; animation: popupFadeIn 0.5s ease-out forwards; z-index: 100000; font-family: "Segoe UI", sans-serif; }

@keyframes popupFadeIn { to { transform: scale(1); opacity: 1; } }


.show-popup {
    opacity: 1;
}

.show-popup .popup-content {
    transform: scale(1);
    opacity: 1;
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

#close-popup {
    padding: 10px 20px;
    border: none;
    background: #8CC63F;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease-in-out;
}

#close-popup:hover {
    background: #6aa62b;
}
