`;
document.body.appendChild(modal);
setTimeout(() => {
const btn = document.getElementById('continue-btn');
btn.disabled = false;
btn.style.background = '#4CAF50';
btn.style.color = 'white';
btn.style.cursor = 'pointer';
btn.textContent = 'Continuar al contenido';
btn.onclick = () => {
window.location.href = targetUrl;
};
}, 5000);
}