class FloatingButton extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` `; this.shadowRoot.querySelector('button').addEventListener('click', () => { window.scrollTo({ top: 0, behavior: 'smooth' }); }); } } customElements.define('floating-button', FloatingButton);