.seo-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.65);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px; 
}

.seo-popup-content {
    position: relative;
    background: transparent;

    max-width: 720px;   
    width: 100%;

    border-radius: 12px;
    overflow: hidden;

    animation: popupFadeIn 0.3s ease-out;
}

.seo-popup-content img {
    display: block;
    width: 100%;
    height: auto;
}

.seo-popup-close {
    position: absolute;
    top: 160px;
    right: 30px;

    width: 36px;
    height: 36px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    font-size: 22px;
    line-height: 36px;
    text-align: center;

    cursor: pointer;
    z-index: 10;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .seo-popup-content {
        max-width: 100%;
        border-radius: 8px;
    }

    .seo-popup-close {
        top: 80px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 20px;
        line-height: 32px;
    }
}
