document.addEventListener('DOMContentLoaded', function() {
const form = document.querySelector('form');
if (!form) return;
const hp = document.createElement('input');
hp.type = 'text';
hp.name = 'hp';
hp.style.display = 'none';
form.appendChild(hp);
});