Texto
Texto
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zenith Tool UI</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: #101010;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.wrapper {
width: 90%;
max-width: 1000px;
background: #1c1c1c;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
display: flex;
flex-direction: column;
}
/* Header style */
.header {
background: linear-gradient(135deg, #3b3b3b, #4a4a4a);
padding: 20px;
text-align: center;
color: #fff;
font-size: 28px;
font-weight: bold;
text-transform: uppercase;
}
/* Profile Section */
.profile-section {
display: flex;
justify-content: center;
padding: 30px;
background: #2c2c2c;
border-top: 2px solid #444;
}
.profile-section img {
width: 120px;
height: 120px;
border-radius: 50%;
border: 4px solid #fff;
}
.profile-section .user-info {
margin-left: 20px;
color: #fff;
}
.profile-section .user-info p {
font-size: 18px;
margin-bottom: 8px;
}
/* Controls Section */
.controls-section {
background: #242424;
padding: 20px;
flex-grow: 1;
overflow-y: auto;
}
.control-group {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.control-group label {
color: #ddd;
font-size: 16px;
}
.control-group input[type="checkbox"] {
transform: scale(1.3);
}
.slider-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.slider-container input[type="range"] {
width: 70%;
background: #333;
border-radius: 5px;
outline: none;
height: 6px;
}
.slider-container input[type="range"]:focus {
background: #444;
}
.footer {
background: #333;
padding: 10px;
text-align: center;
color: #aaa;
font-size: 14px;
}
.footer a {
color: #bbb;
text-decoration: none;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="header">
Zenith Tool UI
</div>
<div class="slider-container">
<label for="aim-pov">AIM POV:</label>
<input type="range" id="aim-pov" min="0" max="100">
</div>
<div class="slider-container">
<label for="dpi">DPI:</label>
<input type="range" id="dpi" min="0" max="100">
</div>
<div class="control-group">
<label><input type="checkbox"> Secure servers</label>
<label><input type="checkbox"> Bypass</label>
</div>
<div class="control-group">
<label><input type="checkbox"> Anti Detected</label>
<label><input type="checkbox"> 80% Recoil</label>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", () => {
console.log("UI loaded successfully!");
});
</script>
</body></html>