.exoclick-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
}

.exoclick-modal.show {
    visibility: visible;
    opacity: 1;
}

.exoclick-modal-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    height: 250px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exoclick-ad-container {
    width: 300px;
    height: 250px;
}

.exoclick-close {
    position: absolute;
    bottom: 230px; /* lo sacas fuera del contenedor */
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 3px 3px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.8em;
    display: none;
    z-index: 10;
}
