#exit-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
}

.exit-popup-content {
    position: relative;
    max-width: 600px;
    max-height: 90%;
}

.exit-popup-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.exit-popup-close {
    position: absolute;
    top: -10px; right: -10px;
    background: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
}
