/* ── OVERLAY BACKDROP ── */
.mpcp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* ── POPUP BOX ── */
.mpcp-content {
    background: #fff;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
    animation: mpcpPop 0.35s cubic-bezier(.34,1.56,.64,1) both;
    max-height: 90vh;
    overflow-y: auto;
}

/* ── CLOSE BUTTON ── */
.mpcp-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
    transition: background 0.2s;
}
.mpcp-close:hover { background: rgba(255,255,255,0.35); }

/* ── ANIMATION ── */
@keyframes mpcpPop {
    from { opacity: 0; transform: scale(0.88) translateY(20px); }
    to   { opacity: 1; transform: scale(1)   translateY(0);     }
}

/* ── SCROLLBAR HIDE ── */
.mpcp-content::-webkit-scrollbar { display: none; }
.mpcp-content { -ms-overflow-style: none; scrollbar-width: none; }
