| <!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"> |
| |
| <div class="absolute top-2 right-2 text-xs text-gray-500">SIMULATION ONLY</div> |
| |
| |
| <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> |
| |
| |
| <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> |
| |
| |
| <div class="space-y-4"> |
| |
| <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> |
| |
| |
| <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> |
| |
| |
| <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> |
| |
| |
| <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> |
| |
| |
| <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> |
| |
| |
| <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> |
| |
| 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'); |
| } |
| }); |
| }); |
| |
| |
| document.querySelectorAll('.switch input:checked').forEach(checkedInput => { |
| const parentPanel = checkedInput.closest('.bg-gray-800'); |
| parentPanel.classList.add('glow-effect'); |
| }); |
| |
| |
| 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> |