/* Exit Intent Modal Styles */
.exit-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 25, 41, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.exit-modal-content {
    background-color: var(--color-surface);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(62, 168, 244, 0.3);
    animation: slideDown 0.4s ease;
}

.close-modal {
    color: var(--color-text-muted);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-primary);
    text-decoration: none;
}

.exit-title {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.exit-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}