(function () { const styles = ` .glowbox { isolation: isolate; overflow: hidden; border-radius: 999px; position: relative; --animation-speed: 2s } .glowbox-animations, .glowbox-borders { left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 1 } .glowbox-borders, .glowbox-glow, .glowbox-stars { animation: borderTurn var(--animation-speed) infinite linear; background-image: conic-gradient(from 0 at 50% 50%, rgba(255,136,72,1) 0deg, rgba(100,132,139,0) 60deg, rgba(100,132,139,0) 300deg, rgba(255,198,164,1) 360deg); background-size: cover } .glowbox-glow { filter: blur(8px); opacity: .12 } @keyframes borderTurn { 0% { transform: rotate(0) } to { transform: rotate(360deg) } } @keyframes borderTurnWithTranslate { 0% { transform: translate(-50%, -50%) rotate(0) } to { transform: translate(-50%, -50%) rotate(360deg) } } .btn-cta-box { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 10px 20px 10px 10px; background: linear-gradient(225deg, rgba(240,242,255,.24) 5%, rgba(255,255,255,.08) 43%, rgba(255,255,255,.03) 68%); border: 1px solid rgba(132,117,110,.26); border-radius: 100px; box-shadow: 23.9px 19.78px 82.49px 0px #00000094 } .btn-cta { position: relative; z-index: 2; padding: 14px 16px; background: linear-gradient(271.55deg, rgba(255,136,72,.44) 5.88%, rgba(204,126,58,0) 50.22%, rgba(153,73,43,.44) 95.32%); border: 1px solid rgba(132,117,110,.55); border-radius: 100px; font-family: sans-serif; font-weight: 600; font-size: 15px; color: #fff; overflow: hidden } .btn-cta::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://i.ibb.co/HDT1CFq2/bg-button.webp') no-repeat center center/cover; border-radius: 100px; transform: scale(1.1); opacity: .8; transition: transform .3s ease, opacity .3s ease; z-index: -1 } .btn-cta:hover::before { transform: scale(1); opacity: 1 } .arrow-icon { width: 18px; rotate: -90deg; transition: .5s ease all } .btn-cta-box:hover .arrow-icon { rotate: -140deg } `; const styleTag = document.createElement("style"); styleTag.textContent = styles; document.head.appendChild(styleTag); function enhanceButton() { const btn = document.querySelector("#e_3222304_1_175494439218424029"); if (btn && !btn.classList.contains("glowbox")) { const text = btn.textContent.trim(); btn.classList.add("glowbox", "glowbox-active"); btn.innerHTML = ` ${text}
`; } } const observer = new MutationObserver(enhanceButton); observer.observe(document.body, { childList: true, subtree: true }); enhanceButton(); })();