/* ── Nexo Popup ────────────────────────────────────────────────────────────── */

#nexo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: nexo-fadein 0.3s ease;
}

@keyframes nexo-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#nexo-popup-box {
    position: relative;
    background: #0e0b1e;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    width: min(520px, 92vw);
    max-height: 90vh;
    overflow: hidden;
    animation: nexo-slidein 0.3s ease;
    color-scheme: dark;
}

@keyframes nexo-slidein {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

#nexo-popup-content {
    width: 100%;
    overflow: hidden;
}

#nexo-popup-content iframe {
    display: block;
    width: 100%;
    border: none;
}

#nexo-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

#nexo-popup-close:hover {
    background: rgba(0,0,0,0.8);
}

/* ── Mobile ──────────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    #nexo-popup-box {
        width: 92vw;
        max-height: 88vh;
    }
    #nexo-popup-content,
    #nexo-popup-content iframe {
        max-height: 80vh;
    }
}
