#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;
    padding: 20px;
    box-sizing: border-box;
}

.exit-popup-content {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-content a {
    display: inline-block;
}

.exit-popup-content img {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    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: 0;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px;
    line-height: 20px;
}
