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

.angie-popup-overlay.show {
    opacity: 1;
}

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

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

.angie-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: #333;
}

.angie-popup-title {
    margin-top: 0;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.angie-popup-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.angie-popup-button {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s ease;
}

.angie-popup-button:hover {
    background: #005177;
    color: #fff;
}