class CustomControls extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Instructions:

1. Set start and end points
2. Add walls to create obstacles
3. Click "Solve Puzzle" to find path

`; } } customElements.define('custom-controls', CustomControls);