class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` SecureVault Vault ID: ${window.location.hash.substring(1) || 'Private'} `; } } customElements.define('custom-header', CustomHeader);