﻿ 

#openPopup {
   
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

#openPopup2 {
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

 

/* پاپ‌آپ تار و شفاف */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .popup-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.popup {
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 25px 30px;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    animation: fadeIn 0.3s ease;
}

    .popup h3 {
        margin-bottom: 20px;
        color: #333;
    }

    .popup a {
        display: block;
        background: #2a9d8f;
        color: white;
        text-decoration: none;
        margin: 8px 0;
        padding: 10px 0;
        border-radius: 8px;
        font-size: 15px;
        transition: background 0.2s;
    }

        .popup a:hover {
            background: #21867a;
        }

.close-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 18px;
}

@keyframes fadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

