:root{
    --bg:#f3f4f6;
    --text:#111827;
    --muted:#374151;

    --overlay: rgba(0,0,0,.72);

    --boxBg:#ffffff;
    --bar:#e5e7eb;
    --bar2:#f3f4f6;
    --border:#d1d5db;
    --shadow: 0 30px 90px rgba(0,0,0,.45);

    --radius: 10px;
}

body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height:100vh;
}

/* ===== Exit Intent Popup ===== */
.ExitPopOverlay{
    position: fixed;
    inset: 0;
    background: var(--overlay);
    display:none;
    align-items:center;
    justify-content:center;
    padding: 16px;
    z-index: 99999;
}
.ExitPopOverlay.show{ display:flex; }

.lightbox{
    width: min(1200px, 98vw);
    height: min(740px, 92vh);
    background: var(--boxBg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.topBar{
    background: linear-gradient(180deg, var(--bar2), var(--bar));
    border-bottom: 1px solid var(--border);
    padding: 12px 14px;
    font-weight: 700;
    font-size: 14px;
    color:#111827;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.closeBtn{
    cursor:pointer;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background:#fff;
    font-weight:700;
    font-size: 13px;
    color:#111827;
    user-select:none;
}

.closeBtn:hover{
    background:#f9fafb;
}

.contentArea{
    flex:1;
    background:#fff;
    padding: 12px;
}

.frameWrap{
    width:100%;
    height:100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow:hidden;
    background:#fff;
}

iframe {
    width:100%;
    height:100%;
    border:0;
    display:block;
    background:#fff;
}

/* ✅ BIGGER FOOTER TEXT */
.bottomBar{
    background: linear-gradient(180deg, var(--bar), var(--bar2));
    border-top: 1px solid var(--border);
    padding: 14px 14px;
    text-align:center;
}