#nw-popup-overlay{
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 99999;
background: rgba(0,0,0,0.6);
opacity: 0;
pointer-events: none;
transition: opacity .22s ease;
}
#nw-popup-overlay.nw-show{
opacity: 1;
pointer-events: auto;
}
#nw-popup-modal{
background: #fff;
max-width: 900px;
width: calc(100% - 40px);
max-height: 85vh;
overflow: auto;
border-radius: 8px;
position: relative;
padding: 18px;
box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
#nw-popup-close{
position: absolute;
right: 10px;
top: 8px;
border: none;
background: transparent;
font-size: 28px;
line-height: 1;
cursor: pointer;
color: #333;
}
#nw-popup-inner iframe{
max-width:100%;
height: auto;
}
@media (max-width:600px){
#nw-popup-modal{
width: calc(100% - 24px);
height: calc(80vh);
padding: 12px;
}
#nw-popup-close{
font-size: 24px;
}
}