const message = document.querySelector(".cursor_novo"); if (message) { message.innerHTML = `

Purchase the premium version of the theme and unlock its full potential.

$
`; const styles = ` .cursor_novo{ width: 100%; display: grid; justify-content: end; position: fixed; height: 100vh; align-items: center; float: right; right: -250px; justify-items: end; z-index: 998; } .tags { transform: rotate(90deg); background-color: rgba(0, 0, 0, 0.8); padding: 5px 10px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 5px; z-index: 1000; display: flex; align-items: center; justify-content: center; gap: 10px; width: auto; align-self: center; height: min-content; justify-self: auto; margin-right: -40%; z-index: 999; } .cursor_novo svg{ color: #fff; margin: 0px; } .cursor_novo_text { color: #fff; font-size: 13px; font-family: Arial, sans-serif; text-align: center; white-space: nowrap; margin: 0; } .cursor_novo_link { display: inline-block; width: 30px; height: 30px; background-color:rgb(0, 212, 89); color: #fff; font-size: 20px; font-weight: bold; font-family: Arial, sans-serif; text-align: center; line-height: 30px; border-radius: 5px; text-decoration: none; margin: 0px; } `; const styleTag = document.createElement("style"); styleTag.textContent = styles; document.head.appendChild(styleTag); } else { console.error('Elemento com a classe "cursor_novo" não foi encontrado.'); }