const NotificationManager = { container: null, init() { this.container = document.getElementById('notificationContainer'); if (!this.container) { this.container = document.createElement('div'); this.container.id = 'notificationContainer'; this.container.className = 'notification-container'; document.body.appendChild(this.container); } }, show(message, type = 'info', duration = CONFIG.NOTIFICATION_DURATION) { const notification = document.createElement('div'); notification.className = `notification ${type} fade-in`; notification.innerHTML = `