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

See it in action

Watch how Short AI transforms your content creation process

`; } } customElements.define('custom-video-demo', CustomVideoDemo);