<script>
// Find the element
const target = document.querySelector(".mt-3.mt-sm-5.mt-lg-10");

if (target) {
    // Create button
    const btn = document.createElement("button");
    btn.innerText = "Open Xerour";
    
    // Button style
    btn.style.padding = "12px 25px";
    btn.style.background = "#007bff";
    btn.style.color = "#fff";
    btn.style.border = "none";
    btn.style.borderRadius = "8px";
    btn.style.fontSize = "16px";
    btn.style.cursor = "pointer";
    btn.style.marginTop = "20px";

    // Click function
    btn.onclick = () => {
        window.open("https://xerour.com", "_blank");
    };

    // Insert button AFTER the target element
    target.insertAdjacentElement("afterend", btn);
} else {
    console.error("Target element not found!");
}
</script>