.popup-ad-component-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

#popup-ad-wrapper {
    position: relative;
    width: auto;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

#popup-ad-wrapper img {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

#popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
}

#popup-close svg {
    width: 22px;   /* bigger cross */
    height: 22px;
}