.ad-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
}

.ad-modal-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.7);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: white;
    color: black;

    font-size: 24px;
    font-weight: bold;

    cursor: pointer;
    z-index: 100000;
}
