<!
DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>gebeyf1x - Speed FlashX Panel</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000
100%);
background-attachment: fixed;
min-height: 100vh;
color: white;
position: relative;
overflow-x: hidden;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(45deg, transparent 40%, rgba(255, 0, 0, 0.1) 50%,
transparent 60%),
linear-gradient(-45deg, transparent 40%, rgba(255, 0, 0, 0.1) 50%,
transparent 60%);
background-size: 100px 100px;
pointer-events: none;
z-index: -1;
}
.container {
max-width: 400px;
margin: 20px auto;
padding: 20px;
background: rgba(0, 0, 0, 0.8);
border: 2px solid #ff0000;
border-radius: 15px;
box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}
.header {
text-align: center;
margin-bottom: 30px;
}
.title {
font-size: 18px;
font-weight: bold;
margin-bottom: 15px;
color: #ffffff;
}
.subtitle {
font-size: 16px;
color: #cccccc;
margin-bottom: 20px;
}
.section-title {
font-size: 20px;
font-weight: bold;
margin: 20px 0 15px 0;
color: #ffffff;
}
.info-box {
background: rgba(255, 0, 0, 0.1);
border: 1px solid #ff0000;
border-radius: 8px;
padding: 15px;
margin: 15px 0;
text-align: center;
font-size: 16px;
}
.checkbox-group {
margin: 15px 0;
}
.checkbox-item {
display: flex;
align-items: center;
margin: 12px 0;
font-size: 14px;
}
.checkbox-item input[type="checkbox"] {
width: 18px;
height: 18px;
margin-right: 12px;
accent-color: #ff0000;
}
.mode-section {
margin: 20px 0;
}
.mode-label {
font-size: 14px;
margin-bottom: 8px;
display: block;
}
.mode-select {
width: 100%;
padding: 10px;
background: #333;
border: 1px solid #ff0000;
border-radius: 5px;
color: white;
font-size: 14px;
}
.fov-section {
margin: 20px 0;
}
.fov-label {
font-size: 14px;
margin-bottom: 10px;
display: block;
}
.slider-container {
margin: 15px 0;
}
.slider {
width: 100%;
height: 8px;
border-radius: 5px;
background: #333;
outline: none;
-webkit-appearance: none;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #0066ff;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: #0066ff;
cursor: pointer;
border: none;
}
.device-section {
margin: 25px 0;
}
.device-title {
font-size: 16px;
margin-bottom: 15px;
color: #ffffff;
}
.radio-group {
display: flex;
gap: 30px;
}
.radio-item {
display: flex;
align-items: center;
font-size: 16px;
}
.radio-item input[type="radio"] {
width: 18px;
height: 18px;
margin-right: 8px;
accent-color: #0066ff;
}
.inject-button {
width: 100%;
padding: 15px;
background: linear-gradient(135deg, #ff0000, #cc0000);
border: none;
border-radius: 8px;
color: white;
font-size: 16px;
font-weight: bold;
cursor: pointer;
margin-top: 25px;
text-transform: uppercase;
transition: all 0.3s ease;
}
.inject-button:hover {
background: linear-gradient(135deg, #cc0000, #990000);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<div class="title">gebeyf1x - Version: speed flashX</div>
<div class="subtitle">Painel criado por gebeyf1x</div>
</div>
<div class="section-title">Funções</div>
<div class="section-title">Info</div>
<div class="info-box">
Role o painel para baixo!
</div>
<div class="checkbox-group">
<div class="checkbox-item">
<input type="checkbox" id="headshot" checked>
<label for="headshot">Facilitar acertos na cabeça</label>
</div>
<div class="checkbox-item">
<input type="checkbox" id="precision" checked>
<label for="precision">Aumentar precisão / Diminuir recuo dos
disparos</label>
</div>
<div class="checkbox-item">
<input type="checkbox" id="sensitivity" checked>
<label for="sensitivity">Aumentar sensibilidade</label>
</div>
<div class="checkbox-item">
<input type="checkbox" id="maintain" checked>
<label for="maintain">Manter disparos na cabeça</label>
</div>
</div>
<div class="mode-section">
<label class="mode-label">Modo:</label>
<select class="mode-select">
<option value="brutal" selected>BRUTAL</option>
<option value="normal">NORMAL</option>
<option value="suave">SUAVE</option>
</select>
</div>
<div class="fov-section">
<div class="checkbox-item">
<input type="checkbox" id="fov" checked>
<label for="fov">Ativar FOV Px</label>
</div>
<label class="fov-label">FOV Px (Tamanho):</label>
<div class="slider-container">
<input type="range" min="0" max="100" value="40" class="slider"
id="fovSlider">
</div>
</div>
<div class="device-section">
<div class="device-title">Selecione seu dispositivo:</div>
<div class="radio-group">
<div class="radio-item">
<input type="radio" id="android" name="device" value="android"
checked>
<label for="android">Android</label>
</div>
<div class="radio-item">
<input type="radio" id="ios" name="device" value="ios">
<label for="ios">iOS</label>
</div>
</div>
</div>
<button class="inject-button" onclick="injectChanges()">
INJETAR TODAS ALTERAÇÕES AO JOGO
</button>
</div>
<script>
function injectChanges() {
// Simular injeção de alterações
const button = document.querySelector('.inject-button');
const originalText = button.textContent;
button.textContent = 'INJETANDO...';
button.style.background = 'linear-gradient(135deg, #666, #444)';
button.disabled = true;
setTimeout(() => {
button.textContent = 'ALTERAÇÕES INJETADAS!';
button.style.background = 'linear-gradient(135deg, #00aa00,
#008800)';
setTimeout(() => {
button.textContent = originalText;
button.style.background = 'linear-gradient(135deg, #ff0000,
#cc0000)';
button.disabled = false;
}, 2000);
}, 3000);
}
// Atualizar valor do slider
const slider = document.getElementById('fovSlider');
slider.addEventListener('input', function() {
console.log('FOV Value:', this.value);
});
</script>
</body>
</html>