document.addEventListener("DOMContentLoaded", function () { const telegramLink = "https://t.me/velorlendhelp_bot"; const telegramButton = document.createElement("a"); telegramButton.href = telegramLink; telegramButton.target = "_blank"; telegramButton.style.position = "fixed"; telegramButton.style.bottom = "20px"; telegramButton.style.right = "20px"; telegramButton.style.zIndex = "9999"; telegramButton.style.width = "60px"; telegramButton.style.height = "60px"; telegramButton.style.borderRadius = "50%"; telegramButton.style.backgroundColor = "#0088cc"; telegramButton.style.display = "flex"; telegramButton.style.alignItems = "center"; telegramButton.style.justifyContent = "center"; telegramButton.style.boxShadow = "0 4px 10px rgba(0,0,0,0.3)"; telegramButton.style.cursor = "pointer"; telegramButton.innerHTML = ` `; document.body.appendChild(telegramButton); });