Convers Or
Convers Or
DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Minecraft Account Converter</title>
<style>
/* Seus estilos CSS aqui (mantidos como no código original) */
:root {
--primary: #48cae4;
--primary-dark: #0077b6;
--accent: #00f5d4;
--bg-dark: #0f172a;
--bg-light: #1e293b;
--text: #e0fbfc;
--text-dim: rgba(224, 251, 252, 0.6);
--danger: #ef4444;
--success: #10b981;
--warning: #f59e0b;
}
/* ... outros estilos ... */
</style>
</head>
<body>
<div class="cursor-dot"></div>
<div class="cursor-outline"></div>
<div id="app-container">
<button id="home-button" class="nav-button hidden" aria-label="Página
inicial">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-
linecap="round" stroke-linejoin="round">
<path d="m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
<polyline points="9 22 9 12 15 12 15 22"></polyline>
</svg>
</button>
<div id="loading-screen">
<div class="loading-container">
<div id="app-logo">
<div class="cube">
<div class="cube-face face-front"></div>
<div class="cube-face face-back"></div>
<div class="cube-face face-right"></div>
<div class="cube-face face-left"></div>
<div class="cube-face face-top"></div>
<div class="cube-face face-bottom"></div>
</div>
</div>
<h2>Inicializando</h2>
<div class="progress-bar">
<div class="progress-fill"></div>
</div>
</div>
</div>
<div class="btn-container">
<button class="btn" id="register-submit">
<div class="btn-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24"
height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4
4v2"></path>
<circle cx="9" cy="7" r="4"></circle>
<line x1="19" y1="8" x2="19" y2="14"></line>
<line x1="22" y1="11" x2="16" y2="11"></line>
</svg>
</div>
<div class="btn-text">Registrar</div>
</button>
</div>
<span id="version-tag">v4.00</span>
</div>
<div class="toast-container"></div>
<script>
// Seu JavaScript aqui (adicionado abaixo)
const cursorDot = document.querySelector('.cursor-dot');
const cursorOutline = document.querySelector('.cursor-outline');
cursorDot.style.left = `${posX}px`;
cursorDot.style.top = `${posY}px`;
cursorOutline.style.left = `${posX}px`;
cursorOutline.style.top = `${posY}px`;
// Funções de navegação
function showScreen(screenId) {
const screens = document.querySelectorAll('#app-container > div');
screens.forEach(screen => screen.classList.add('hidden'));
document.getElementById(screenId).classList.remove('hidden');
}
loginBtn.addEventListener('click', () => {
// Lógica de login aqui
});
registerBtn.addEventListener('click', () => {
showScreen('register-form');
});
guestBtn.addEventListener('click', () => {
// Lógica de entrada como convidado aqui
});
registerSubmit.addEventListener('click', () => {
// Lógica de registro aqui
});
backToStart.addEventListener('click', () => {
showScreen('login-register-screen');
});
userMenuButton.addEventListener('click', () => {
userMenu.classList.toggle('hidden');
});
viewProfile.addEventListener('click', () => {
userMenu.classList.add('hidden');
showScreen('user-profile-screen');
});
logout.addEventListener('click', () => {
// Lógica de logout aqui
showScreen('login-register-screen');
userMenu.classList.add('hidden');
});
settingsButton.addEventListener('click', () => {
showScreen('settings-screen');
});
homeButton.addEventListener('click', () => {
showScreen('login-register-screen');
});
darkModeToggle.addEventListener('change', () => {
document.body.classList.toggle('dark-mode');
});
</script>
</body>
</html>