/* ============================================
   Универсальная модалка для уведомлений
   ============================================ */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.notification-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.notification-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.notification-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.notification-modal-icon.info {
    background: rgba(255, 217, 61, 0.15);
    color: var(--primary-yellow-dark);
}

.notification-modal-icon.success {
    background: rgba(107, 203, 119, 0.15);
    color: var(--primary-green-dark);
}

.notification-modal-icon.error {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.notification-modal-icon .material-icons {
    font-size: 32px;
}

.notification-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.notification-modal-text {
    font-size: 14px;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.notification-modal-btn {
    padding: 10px 32px;
    background: var(--gradient-main);
    color: #1a1a2e;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.notification-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.3);
}

.notification-modal-btn.secondary {
    background: rgba(255, 255, 255, 0.6);
    color: #1a1a2e;
    border: 1px solid rgba(107, 203, 119, 0.2);
}

.notification-modal-btn.secondary:hover {
    background: rgba(255, 217, 61, 0.1);
}
