/* Overlay styles */
.exit-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

.exit-overlay.show {
    display: block;
}

/* Popup styles */
.exit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.exit-popup.show {
    display: block;
}

.exit-popup h2 {
    margin: 0 0 20px;
    color: #333;
    font-size: 28px;
}

.exit-popup p {
    margin: 0 0 30px;
    color: #666;
    font-size: 18px;
    line-height: 1.5;
}

.exit-popup button {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
}

.exit-popup button:hover {
    background: #0056b3;
}

.exit-popup .close-btn {
    background: #6c757d;
}

.exit-popup .close-btn:hover {
    background: #545b62;
}

.debug-info {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 1000;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .exit-popup {
        padding: 30px 20px;
    }

    .exit-popup h2 {
        font-size: 24px;
    }

    .exit-popup p {
        font-size: 16px;
    }

    .exit-popup button {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}