class NumberDisplay extends HTMLElement { constructor() { super(); } connectedCallback() { this.attachShadow({ mode: 'open' }); this.render(); } render() { const number = this.getAttribute('number') || '1'; const animation = this.getAttribute('animation') || 'zoom'; this.shadowRoot.innerHTML = `