.angie-popup-overlay-b3dccb3b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-popup-overlay-b3dccb3b.angie-popup-active {
    opacity: 1;
    visibility: visible;
}

.angie-popup-content-b3dccb3b {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    direction: rtl;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.angie-popup-overlay-b3dccb3b.angie-popup-active .angie-popup-content-b3dccb3b {
    transform: translateY(0);
}

.angie-popup-close-b3dccb3b {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.angie-popup-close-b3dccb3b:hover {
    color: #e74c3c;
}

.angie-popup-body-b3dccb3b h2 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 24px;
}

.angie-popup-body-b3dccb3b p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.angie-popup-btn-b3dccb3b {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.angie-popup-btn-b3dccb3b:hover {
    background: #2980b9;
    color: #fff;
}