<!
DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-
scale=1.0">
<title>XITET FW PHZIN</title>
<style>
body {
margin: 0;
background: #0a0a0a;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.panel {
width: 90vw;
max-width: 900px;
aspect-ratio: 4/3;
background: #111;
border-radius: 15px;
padding: 20px;
box-shadow: 0 0 25px
rgba(0,255,150,0.3);
display: flex;
flex-direction: column;
}
.header {
text-align: center;
color: #00ffae;
font-size: 24px;
font-weight: bold;
margin-bottom: 15px;
}
.menu {
flex: 1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.card {
background: #1a1a1a;
border-radius: 10px;
padding: 10px;
}
.card h3 {
color: #00ffae;
margin: 0;
font-size: 14px;
}
.toggle {
margin-top: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.switch {
width: 40px;
height: 20px;
background: #333;
border-radius: 20px;
position: relative;
cursor: pointer;
}
.switch::after {
content: "";
width: 16px;
height: 16px;
background: #00ffae;
position: absolute;
top: 2px;
left: 2px;
border-radius: 50%;
transition: 0.3s;
}
.[Link]::after {
left: 22px;
}
.footer {
text-align: center;
font-size: 12px;
color: #666;
margin-top: 10px;
}
button {
margin-top: 10px;
padding: 8px;
border: none;
border-radius: 8px;
background: #00ffae;
font-weight: bold;
cursor: pointer;
}
</style>
</head>
<body>
<div class="panel">
<div class="header">XITET FW PHZIN</
div>
<div class="menu">
<div class="card">
<h3>Aim Assist</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>
<div class="card">
<h3>Auto Headshot</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>
<div class="card">
<h3>No Recoil</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>
<div class="card">
<h3>Wall View</h3>
<div class="toggle">
<span>Status</span>
<div class="switch"
onclick="toggle(this)"></div>
</div>
</div>
</div>
<button
onclick="alert('Aplicado!')">Aplicar</
button>
<div class="footer">© 2026 XITET FW
PHZIN</div>
</div>
<script>
function toggle(el){
[Link]("active");
}
</script>
</body>
</html>