.exit-popup-top-left-logo {
    position: absolute;
    top: 18px;
    left: 20px;
    height: 1.8rem;
    width: auto;
    object-fit: contain;
}

.exit-popup-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.exit-popup-circle-logo {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    padding: ;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent, #B9775F);
}

html[data-theme="light"] .exit-popup-circle-logo {
    background: rgba(0, 0, 0, 0.05);
}

.exit-popup-overlay {    
    position: fixed;    
    inset: 0;     
    z-index: 99999;    
    display: flex;    
    align-items: center;    
    justify-content: center;    
    opacity: 0;    
    pointer-events: none;    
    transition: opacity 0.4s ease;    
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.exit-popup-overlay.show {    
    opacity: 1;    
    pointer-events: auto;
}

.exit-popup-content {    
    background: rgba(20, 20, 20, 0.85);    
    border: 1px solid rgba(255, 255, 255, 0.1);    
    border-radius: 16px;    
    max-width: 600px;    
    width: 100%;    
    padding: 40px 30px 30px 30px;    
    position: relative;    
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);    
    transform: scale(0.95);    
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);    
    color: #fff;
}

html[data-theme="light"] .exit-popup-content {    
    background: rgba(255, 255, 255, 0.9);    
    border: 1px solid rgba(0, 0, 0, 0.1);    
    color: #111;
}

.exit-popup-overlay.show .exit-popup-content {    
    transform: scale(1);
}

.exit-popup-close {    
    position: absolute;    
    top: 15px;    
    right: 20px;    
    background: none;    
    border: none;    
    color: inherit;    
    font-size: 2rem;    
    cursor: pointer;    
    opacity: 0.6;    
    transition: opacity 0.2s ease;    
    line-height: 1;
}

.exit-popup-close:hover {    
    opacity: 1;
}

.exit-popup-content h3 {    
    font-family: 'Montserrat', sans-serif;    
    font-weight: 900;    
    font-size: 1.8rem;    
    text-transform: uppercase;    
    text-align: center;    
    margin: 0 0 25px 0;    
    letter-spacing: -0.5px;
}

.exit-popup-options {    
    display: flex;    
    flex-direction: column;    
    gap: 15px;
}

.exit-popup-card {    
    display: flex;    
    align-items: center;    
    gap: 20px;    
    text-decoration: none !important;    
    padding: 16px;    
    border-radius: 12px;    
    background: rgba(255, 255, 255, 0.05);    
    border: 1px solid rgba(255, 255, 255, 0.1);    
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);    
    color: inherit !important;
}

html[data-theme="light"] .exit-popup-card {    
    background: rgba(0, 0, 0, 0.03);    
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.exit-popup-card:hover {    
    transform: translateX(5px);    
    background: rgba(255, 255, 255, 0.1);    
    border-color: var(--accent, #B9775F);
}

html[data-theme="light"] .exit-popup-card:hover {    
    background: rgba(0, 0, 0, 0.06);    
    border-color: var(--accent, #B9775F);
}

.exit-card-icon {    
    font-size: 1.8rem;    
    color: var(--accent, #B9775F);    
    display: flex;    
    align-items: center;    
    justify-content: center;    
    width: 40px;    
    flex-shrink: 0;
}

.exit-card-text h4 {    
    margin: 0 0 4px 0;    
    font-size: 1.1rem;    
    font-weight: 700;
}

.exit-card-text p {    
    margin: 0;    
    font-size: 0.85rem;    
    opacity: 0.7;    
    line-height: 1.3;    
    text-align: left;
}

@media (max-width: 480px) {    
    .exit-popup-content {        
        padding: 30px 20px 20px 20px;    
    }    
    .exit-popup-content h3 {        
        font-size: 1.4rem;    
    }    
    .exit-popup-card {        
        gap: 15px;        
        padding: 12px;    
    }
    .exit-popup-circle-logo {
        width: 65px;
        height: 65px;
    }
}