document.addEventListener('DOMContentLoaded', () => { // Initialize any global functionality here console.log('StreamSphere Live initialized'); // Example: Add click event for notification buttons document.querySelectorAll('[data-notify]').forEach(button => { button.addEventListener('click', () => { alert('You will be notified when this event starts!'); }); }); });