// Seleciona o elemento com a classe 'cursor_novo' const message = document.querySelector(".cursor_novo"); // Garante que o elemento existe antes de adicionar o conteúdo if (message) { // Insere o conteúdo HTML dentro do elemento existente message.innerHTML = `

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

$
`; // Adiciona os estilos diretamente no documento const styles = ` .cursor_novo{ background: transparent!important; width: 100%; display: grid; justify-content: end; position: fixed; height: 100vh; align-items: center; float: right; right: 0; justify-items: end; z-index: 999; } .tags { transform: rotate(90deg); background-color: rgba(255, 255, 255, 0.1); 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%; } .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; } `; // Adiciona os estilos ao DOM 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.'); }