#psf-exit-popup-root { display: none; }
.psf-exit-overlay { position: fixed; inset:0; background: rgba(0,0,0,0.55); display:flex; align-items:center; justify-content:center; z-index:120000; }
.psf-exit-modal { width:92%; max-width:600px; border-radius:16px; overflow:hidden; box-shadow:0 8px 38px rgba(0,0,0,0.15); transform: translateY(20px); opacity:0; transition: all 360ms ease; }
.psf-exit-modal.show { transform: translateY(0); opacity:1; }
.psf-exit-inner { padding:28px; background: linear-gradient(120deg,#E8A03C 0%, #1A1A1A 100%); color:#fff; font-family: Poppins, Arial, sans-serif; position:relative; }
.psf-title { font-family: 'Playfair Display', serif; color:#C1272D; font-size:22px; margin:0 0 8px; }
.psf-message { font-size:15px; color: #fffdf6; margin-bottom:12px; }
.psf-code { display:inline-block; background:#111; padding:10px 14px; border-radius:10px; font-weight:700; color:#fff; margin-bottom:12px; }
.psf-footer { font-size:13px; color:#ffd700; font-style:italic; margin-top:6px; }
.psf-actions { display:flex; gap:12px; justify-content:center; margin-top:16px; }
.psf-btn { padding:10px 16px; border-radius:10px; border:none; cursor:pointer; font-weight:700; }
.psf-btn.primary { background:#C1272D; color:#fff; }
.psf-btn.secondary { background:transparent; border:2px solid #0086C9; color:#fff; }
/* mobile bottom bar */
@media (max-width:600px){
    .psf-exit-modal { position: fixed; bottom: 0; left:0; right:0; width:100%; border-radius:12px 12px 0 0; max-width:none; }
    .psf-inner { padding:16px; }
    .psf-actions { flex-direction:column; gap:8px; }
}
