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