File size: 14,121 Bytes
2de95a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
301
302
303
304
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Free Fire Elite 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>
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
            100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
        }
        .pulse-effect {
            animation: pulse 2s infinite;
        }
        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        input:checked + .slider {
            background-color: #3B82F6;
        }
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        .glow-text {
            text-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
        }
    </style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
    <div class="container mx-auto px-4 py-8">
        <!-- Header -->
        <header class="flex justify-between items-center mb-8">
            <div class="flex items-center">
                <img src="https://via.placeholder.com/50" alt="Logo" class="w-12 h-12 rounded-full mr-3">
                <div>
                    <h1 class="text-2xl font-bold glow-text">Free Fire Elite</h1>
                    <p class="text-blue-400 text-sm">Ultimate Gaming Panel</p>
                </div>
            </div>
            <div class="flex items-center space-x-2">
                <span class="bg-green-500 text-xs px-2 py-1 rounded-full">VIP</span>
                <button class="bg-blue-600 hover:bg-blue-700 px-3 py-1 rounded-lg text-sm">
                    <i class="fas fa-crown mr-1"></i> Upgrade
                </button>
            </div>
        </header>

        <!-- Status Bar -->
        <div class="bg-gray-800 rounded-xl p-4 mb-6 flex justify-between items-center">
            <div class="flex items-center">
                <div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
                <span class="text-sm">Connected</span>
            </div>
            <div class="text-sm">
                <span class="text-blue-400">Version 4.2.1</span>
                <span class="mx-2">|</span>
                <span>Last Updated: Today</span>
            </div>
        </div>

        <!-- Main Features -->
        <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
            <!-- Headshot Panel -->
            <div class="bg-gray-800 rounded-xl p-6 border-l-4 border-blue-500 pulse-effect">
                <div class="flex justify-between items-start mb-4">
                    <div>
                        <h2 class="text-xl font-bold flex items-center">
                            <i class="fas fa-bullseye text-blue-400 mr-2"></i>
                            Headshot Master
                        </h2>
                        <p class="text-gray-400 text-sm">100% precision headshots</p>
                    </div>
                    <label class="switch">
                        <input type="checkbox" checked>
                        <span class="slider"></span>
                    </label>
                </div>
                <div class="space-y-4">
                    <div class="flex justify-between items-center">
                        <span>Headshot Rate</span>
                        <span class="font-bold text-green-400">100%</span>
                    </div>
                    <div class="flex justify-between items-center">
                        <span>Auto Aim Lock</span>
                        <span class="font-bold text-green-400">Enabled</span>
                    </div>
                    <div class="flex justify-between items-center">
                        <span>Detection Range</span>
                        <div class="flex items-center">
                            <input type="range" min="50" max="300" value="200" class="w-24 mr-2">
                            <span>200m</span>
                        </div>
                    </div>
                </div>
            </div>

            <!-- Recoil Control -->
            <div class="bg-gray-800 rounded-xl p-6 border-l-4 border-purple-500">
                <div class="flex justify-between items-start mb-4">
                    <div>
                        <h2 class="text-xl font-bold flex items-center">
                            <i class="fas fa-crosshairs text-purple-400 mr-2"></i>
                            Recoil Control
                        </h2>
                        <p class="text-gray-400 text-sm">Perfect weapon stability</p>
                    </div>
                    <label class="switch">
                        <input type="checkbox" checked>
                        <span class="slider"></span>
                    </label>
                </div>
                <div class="space-y-4">
                    <div class="flex justify-between items-center">
                        <span>Recoil Reduction</span>
                        <span class="font-bold text-green-400">100%</span>
                    </div>
                    <div class="flex justify-between items-center">
                        <span>Bullet Spread</span>
                        <span class="font-bold text-red-400">0%</span>
                    </div>
                    <div class="flex justify-between items-center">
                        <span>Weapon Profile</span>
                        <select class="bg-gray-700 text-white rounded px-2 py-1 text-sm">
                            <option>All Weapons</option>
                            <option>AR Only</option>
                            <option>SMG Only</option>
                            <option>Sniper Only</option>
                        </select>
                    </div>
                </div>
            </div>
        </div>

        <!-- Advanced Settings -->
        <div class="bg-gray-800 rounded-xl p-6 mb-8">
            <h2 class="text-xl font-bold mb-4 flex items-center">
                <i class="fas fa-cog text-yellow-400 mr-2"></i>
                Advanced Settings
            </h2>
            <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                <div>
                    <h3 class="font-medium mb-3">Performance</h3>
                    <div class="space-y-4">
                        <div class="flex justify-between items-center">
                            <span>FPS Boost</span>
                            <span class="font-bold text-green-400">Enabled</span>
                        </div>
                        <div class="flex justify-between items-center">
                            <span>Memory Optimization</span>
                            <span class="font-bold text-green-400">Active</span>
                        </div>
                        <div class="flex justify-between items-center">
                            <span>Auto Error Fix</span>
                            <span class="font-bold text-green-400">Enabled</span>
                        </div>
                    </div>
                </div>
                <div>
                    <h3 class="font-medium mb-3">Sensitivity</h3>
                    <div class="space-y-4">
                        <div class="flex justify-between items-center">
                            <span>General Sensitivity</span>
                            <input type="range" min="1" max="100" value="85" class="w-24">
                        </div>
                        <div class="flex justify-between items-center">
                            <span>ADS Sensitivity</span>
                            <input type="range" min="1" max="100" value="90" class="w-24">
                        </div>
                        <div class="flex justify-between items-center">
                            <span>Scope Sensitivity</span>
                            <input type="range" min="1" max="100" value="80" class="w-24">
                        </div>
                    </div>
                </div>
            </div>
        </div>

        <!-- Activation Section -->
        <div class="bg-gradient-to-r from-blue-600 to-purple-600 rounded-xl p-6 mb-8">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="mb-4 md:mb-0">
                    <h2 class="text-xl font-bold mb-1">Ready to Dominate?</h2>
                    <p class="text-blue-100">Activate all features with one click</p>
                </div>
                <button class="bg-white text-blue-600 hover:bg-gray-100 font-bold px-6 py-3 rounded-lg flex items-center">
                    <i class="fas fa-power-off mr-2"></i> Activate All Features
                </button>
            </div>
        </div>

        <!-- Stats Section -->
        <div class="bg-gray-800 rounded-xl p-6">
            <h2 class="text-xl font-bold mb-4 flex items-center">
                <i class="fas fa-chart-line text-green-400 mr-2"></i>
                Performance Stats
            </h2>
            <div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-center">
                <div class="bg-gray-700 p-3 rounded-lg">
                    <div class="text-2xl font-bold text-blue-400">0ms</div>
                    <div class="text-sm text-gray-400">Latency</div>
                </div>
                <div class="bg-gray-700 p-3 rounded-lg">
                    <div class="text-2xl font-bold text-green-400">60 FPS</div>
                    <div class="text-sm text-gray-400">Frame Rate</div>
                </div>
                <div class="bg-gray-700 p-3 rounded-lg">
                    <div class="text-2xl font-bold text-purple-400">0%</div>
                    <div class="text-sm text-gray-400">Error Rate</div>
                </div>
                <div class="bg-gray-700 p-3 rounded-lg">
                    <div class="text-2xl font-bold text-yellow-400">100%</div>
                    <div class="text-sm text-gray-400">Stability</div>
                </div>
            </div>
        </div>

        <!-- Footer -->
        <footer class="mt-8 text-center text-gray-500 text-sm">
            <p>This is a UI demonstration only. Use of actual game cheats may violate terms of service.</p>
            <p class="mt-2">© 2023 Free Fire Elite Panel | v4.2.1</p>
        </footer>
    </div>

    <script>
        // Simple toggle functionality for demonstration
        document.querySelectorAll('input[type="checkbox"]').forEach(checkbox => {
            checkbox.addEventListener('change', function() {
                const parentCard = this.closest('.bg-gray-800');
                if (this.checked) {
                    parentCard.querySelectorAll('.text-green-400').forEach(el => {
                        el.textContent = 'Enabled';
                        el.classList.remove('text-red-400');
                        el.classList.add('text-green-400');
                    });
                } else {
                    parentCard.querySelectorAll('.text-green-400').forEach(el => {
                        el.textContent = 'Disabled';
                        el.classList.remove('text-green-400');
                        el.classList.add('text-red-400');
                    });
                }
            });
        });

        // Range input value display (would need more complex implementation for actual use)
        document.querySelectorAll('input[type="range"]').forEach(range => {
            range.addEventListener('input', function() {
                const valueDisplay = this.nextElementSibling;
                if (valueDisplay) {
                    valueDisplay.textContent = this.value + (this.id.includes('range') ? '%' : '');
                }
            });
        });

        // Activate button animation
        const activateBtn = document.querySelector('button.bg-white');
        if (activateBtn) {
            activateBtn.addEventListener('click', function() {
                this.innerHTML = '<i class="fas fa-check mr-2"></i> Activated!';
                this.classList.remove('bg-white');
                this.classList.add('bg-green-500', 'text-white');
                setTimeout(() => {
                    this.innerHTML = '<i class="fas fa-power-off mr-2"></i> Activate All Features';
                    this.classList.remove('bg-green-500', 'text-white');
                    this.classList.add('bg-white');
                }, 2000);
            });
        }
    </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/vip" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>