#blocker-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    justify-content: center;
    align-items: center;
}

.popup {
    background: #e74c3c; /* 🔴 تغيير اللون إلى الأحمر */
    padding: 35px; /* زيادة التباعد */
    border-radius: 15px;
    width: 85%;
    max-width: 520px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    transform: translateY(-40px);
    animation: popupAnim 0.6s ease-out forwards;
}

@keyframes popupAnim {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.9);
    }
    80% {
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup h2 {
    font-size: 2.2rem; /* 🔹 تكبير العنوان */
    font-weight: bold;
    margin-bottom: 12px;
    color: #ffffff;
}

.popup p {
    font-size: 2.5rem; /* 🔹 تكبير النص */
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 25px;
}

.popup .icon {
    width: 80px; /* 🔹 تكبير الأيقونة */
    height: 80px;
    margin-bottom: 25px;
    fill: #ffffff;
}
