#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: #f39c12;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(-30px);
    animation: popupAnim 0.5s forwards;
}

@keyframes popupAnim {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.popup p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.popup .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    fill: #ffffff;
}
