async function copy(text, button) { try { await navigator.clipboard.writeText(text); button.textContent = 'Copied'; } catch { button.textContent = 'Press Ctrl+C'; } setTimeout(() => { button.textContent = 'Copy'; }, 2000); }