.exit-pop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.75);
    display: none;
}

.exit-pop.active { display: block; }

.exit-pop .inner {
    max-width: 620px;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%) scale(50%);
    background: #ffffff;
    padding: 10px;
    border-radius: 34px;
    width: 90vw; 
    max-height:90vh;
    overflow:auto;
}

.exit-pop .close-button {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 20px; 
    right: 20px;
    background: #116f5d;
    color: #ffffff;
    text-align: center;
    line-height: 32px;
    font-size: 19px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-pop .close-button:hover {
    background: #ffffff;
    color: #116f5d;
}