/* VoxiyAI Modern Notification Modals */

:root {
    --notify-bg: rgba(15, 23, 42, 0.7);
    --notify-border: rgba(255, 255, 255, 0.1);
    --notify-glass: blur(15px);
    --notify-error: #ef4444;
    --notify-success: #6366f1;
    --notify-warning: #f59e0b;
    --notify-text: #f8fafc;
    --notify-text-muted: #94a3b8;
}

.vox-notify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vox-notify-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vox-notify-modal {
    background: var(--notify-bg);
    backdrop-filter: var(--notify-glass);
    border: 1px solid var(--notify-border);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.vox-notify-overlay.active .vox-notify-modal {
    transform: scale(1) translateY(0);
}

/* Decorative background glow */
.vox-notify-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.vox-notify-content {
    position: relative;
    z-index: 1;
}

.vox-notify-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px currentColor);
}

.vox-notify-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--notify-text);
    margin-bottom: 0.75rem;
}

.vox-notify-message {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--notify-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vox-notify-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vox-notify-btn {
    padding: 0.8rem 2rem;
    border-radius: 1rem;
    border: none;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.vox-notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.vox-notify-btn:active {
    transform: translateY(0);
}

.vox-notify-btn-secondary {
    background: transparent !important;
    border: 1px solid var(--notify-border);
    color: var(--notify-text-muted);
}

.vox-notify-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--notify-text);
    box-shadow: none;
}

.vox-notify-btn-premium {
    background: linear-gradient(135deg, #6366f1, #a855f7) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vox-notify-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(168, 85, 247, 0.4) !important;
}

.vox-notify-btn-premium svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Type variations */
.vox-notify-error .vox-notify-icon {
    color: var(--notify-error);
}

.vox-notify-error .vox-notify-btn {
    background: var(--notify-error);
}

.vox-notify-error .vox-notify-btn:hover {
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.vox-notify-warning .vox-notify-icon {
    color: var(--notify-warning);
}

.vox-notify-warning .vox-notify-btn {
    background: var(--notify-warning);
}

.vox-notify-warning .vox-notify-btn:hover {
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.vox-notify-success .vox-notify-icon {
    color: var(--notify-success);
}