File size: 12,727 Bytes
79ac13a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free Fire Headshot Panel</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.glow-effect {
box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
}
.panel-bg {
background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
border: 1px solid #334155;
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 30px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #334155;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 22px;
width: 22px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #3b82f6;
}
input:checked + .slider:before {
transform: translateX(30px);
}
.slider:after {
content: 'OFF';
color: white;
display: block;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 70%;
font-size: 10px;
}
input:checked + .slider:after {
content: 'ON';
left: 30%;
}
.range-slider {
-webkit-appearance: none;
width: 100%;
height: 8px;
border-radius: 5px;
background: #334155;
outline: none;
}
.range-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #3b82f6;
cursor: pointer;
}
.range-slider::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: #3b82f6;
cursor: pointer;
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
}
70% {
box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
}
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen flex items-center justify-center p-4">
<div class="panel-bg rounded-xl p-6 w-full max-w-md relative overflow-hidden">
<!-- Watermark -->
<div class="absolute top-2 right-2 text-xs text-gray-500">SIMULATION ONLY</div>
<!-- Header -->
<div class="flex items-center justify-between mb-6">
<div class="flex items-center">
<img src="https://via.placeholder.com/40" alt="Free Fire Logo" class="w-10 h-10 rounded-full mr-3">
<div>
<h1 class="text-xl font-bold">HEADSHOT PANEL</h1>
<p class="text-xs text-gray-400">Free Fire Advanced Controls</p>
</div>
</div>
<div class="flex items-center">
<span class="text-xs mr-2">v2.4.1</span>
<div class="w-3 h-3 bg-green-500 rounded-full pulse-animation"></div>
</div>
</div>
<!-- Connection Status -->
<div class="bg-gray-800 rounded-lg p-3 mb-6 flex items-center justify-between">
<div class="flex items-center">
<div class="w-3 h-3 bg-green-500 rounded-full mr-2"></div>
<span>Connected to Free Fire</span>
</div>
<div class="text-xs text-gray-400">Latency: 28ms</div>
</div>
<!-- Features Section -->
<div class="space-y-4">
<!-- Aimlock Feature -->
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex items-center justify-between mb-3">
<div class="flex items-center">
<i class="fas fa-crosshairs text-blue-500 mr-2"></i>
<h3 class="font-medium">Aimlock Headshot</h3>
</div>
<label class="switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="space-y-3">
<div>
<label class="text-xs text-gray-400 block mb-1">Sensitivity</label>
<input type="range" min="1" max="100" value="75" class="range-slider">
</div>
<div>
<label class="text-xs text-gray-400 block mb-1">Activation Key</label>
<select class="w-full bg-gray-700 rounded p-2 text-sm">
<option>Right Shoulder Button</option>
<option>Left Shoulder Button</option>
<option>Screen Tap (3 fingers)</option>
</select>
</div>
</div>
</div>
<!-- Recoil Control -->
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex items-center justify-between mb-3">
<div class="flex items-center">
<i class="fas fa-bullseye text-red-500 mr-2"></i>
<h3 class="font-medium">0 Recoil Control</h3>
</div>
<label class="switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="space-y-3">
<div>
<label class="text-xs text-gray-400 block mb-1">Weapon Profile</label>
<select class="w-full bg-gray-700 rounded p-2 text-sm">
<option>Auto-Adapt (Dynamic)</option>
<option>Assault Rifles</option>
<option>SMGs</option>
<option>Snipers</option>
<option>Shotguns</option>
</select>
</div>
<div>
<label class="text-xs text-gray-400 block mb-1">Compensation Strength</label>
<input type="range" min="1" max="100" value="85" class="range-slider">
</div>
</div>
</div>
<!-- DPI Settings -->
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex items-center justify-between mb-3">
<div class="flex items-center">
<i class="fas fa-tachometer-alt text-yellow-500 mr-2"></i>
<h3 class="font-medium">DPI Optimization</h3>
</div>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
</div>
<div class="space-y-3">
<div>
<label class="text-xs text-gray-400 block mb-1">DPI Value</label>
<input type="range" min="400" max="3200" value="1200" class="range-slider">
</div>
<div>
<label class="text-xs text-gray-400 block mb-1">Screen Area</label>
<div class="flex space-x-2">
<button class="bg-gray-700 px-3 py-1 rounded text-sm flex-1">Detect Auto</button>
<button class="bg-blue-600 px-3 py-1 rounded text-sm flex-1">Calibrate</button>
</div>
</div>
</div>
</div>
<!-- Advanced Settings -->
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex items-center justify-between mb-3">
<div class="flex items-center">
<i class="fas fa-cog text-purple-500 mr-2"></i>
<h3 class="font-medium">Advanced Settings</h3>
</div>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
</div>
<div class="space-y-3">
<div>
<label class="text-xs text-gray-400 block mb-1">Trigger Mode</label>
<select class="w-full bg-gray-700 rounded p-2 text-sm">
<option>Hold to Activate</option>
<option>Toggle Mode</option>
<option>Auto-Fire</option>
</select>
</div>
<div>
<label class="text-xs text-gray-400 block mb-1">Anti-Detection</label>
<select class="w-full bg-gray-700 rounded p-2 text-sm">
<option>Randomized Pattern</option>
<option>Humanized Input</option>
<option>Stealth Mode</option>
</select>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="mt-6 pt-4 border-t border-gray-700 flex justify-between items-center">
<button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-lg font-medium flex items-center">
<i class="fas fa-play mr-2"></i> Apply Settings
</button>
<div class="text-xs text-gray-400">
<i class="fas fa-shield-alt mr-1"></i> Secure Connection
</div>
</div>
<!-- Disclaimer -->
<div class="mt-4 text-xs text-center text-gray-500">
This is a simulation panel for educational purposes only. Actual game modifications may violate terms of service.
</div>
</div>
<script>
// Simple toggle functionality for demonstration
document.querySelectorAll('.switch input').forEach(switchInput => {
switchInput.addEventListener('change', function() {
const parentPanel = this.closest('.bg-gray-800');
if (this.checked) {
parentPanel.classList.add('glow-effect');
} else {
parentPanel.classList.remove('glow-effect');
}
});
});
// Initialize any checked switches to glow
document.querySelectorAll('.switch input:checked').forEach(checkedInput => {
const parentPanel = checkedInput.closest('.bg-gray-800');
parentPanel.classList.add('glow-effect');
});
// Apply settings button
document.querySelector('button.bg-blue-600').addEventListener('click', function() {
alert('Settings applied (simulation only)');
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Pnkj01/t" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |