body.rvp-open { overflow: hidden; }
.rvp-overlay[hidden] { display: none !important; }
.rvp-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.78);
}
.rvp-modal {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    padding: 18px;
    overflow: auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.rvp-video {
    display: block;
    width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    background: #000;
}
.rvp-close {
    position: absolute;
    top: 5px;
    right: 8px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.rvp-cta {
    display: block;
    width: fit-content;
    margin: 18px auto 0;
    padding: 13px 28px;
    border-radius: 999px;
    background: #f36c21;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
}
.rvp-cta:hover { opacity: .9; }
@media (max-width: 640px) {
    .rvp-overlay { padding: 12px; }
    .rvp-modal { padding: 12px; border-radius: 12px; }
    .rvp-cta { width: 100%; box-sizing: border-box; }
}
