import './style.css' document.querySelector('#app').innerHTML = `
${Array.from({length: 20}).map(() => `
`).join('')}

The Ultimate Balloon Gala

Join us for a night of floating fun, vivid colors, and high-altitude entertainment.

📅 Saturday, August 29th, 2026
📍 The Sky Lounge, Downtown
` document.querySelector('#rsvp-btn').addEventListener('click', (e) => { e.target.innerHTML = '🎉 YOU ARE ON THE GUEST LIST! 🎉'; e.target.style.backgroundColor = '#10b981'; e.target.style.color = 'white'; e.target.style.transform = 'scale(1.05)'; });