Davi111 commited on
Commit
c1c4e43
·
verified ·
1 Parent(s): 73d2c18

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +471 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Games
3
- emoji: 🏃
4
- colorFrom: blue
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: games
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,471 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Free Fire Lite - Battle Royale</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #0f172a;
15
+ color: white;
16
+ overflow-x: hidden;
17
+ }
18
+
19
+ .hero-gradient {
20
+ background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
21
+ }
22
+
23
+ .btn-glow {
24
+ box-shadow: 0 0 15px rgba(234, 88, 12, 0.7);
25
+ transition: all 0.3s ease;
26
+ }
27
+
28
+ .btn-glow:hover {
29
+ box-shadow: 0 0 25px rgba(234, 88, 12, 0.9);
30
+ transform: translateY(-2px);
31
+ }
32
+
33
+ .character-card {
34
+ transition: all 0.3s ease;
35
+ transform-style: preserve-3d;
36
+ }
37
+
38
+ .character-card:hover {
39
+ transform: translateY(-10px) scale(1.03);
40
+ }
41
+
42
+ .game-mode-card {
43
+ background: rgba(30, 41, 59, 0.7);
44
+ backdrop-filter: blur(10px);
45
+ border: 1px solid rgba(255, 255, 255, 0.1);
46
+ transition: all 0.3s ease;
47
+ }
48
+
49
+ .game-mode-card:hover {
50
+ background: rgba(234, 88, 12, 0.2);
51
+ border-color: rgba(234, 88, 12, 0.5);
52
+ }
53
+
54
+ .nav-link {
55
+ position: relative;
56
+ }
57
+
58
+ .nav-link::after {
59
+ content: '';
60
+ position: absolute;
61
+ width: 0;
62
+ height: 2px;
63
+ bottom: -2px;
64
+ left: 0;
65
+ background-color: #ea580c;
66
+ transition: width 0.3s ease;
67
+ }
68
+
69
+ .nav-link:hover::after {
70
+ width: 100%;
71
+ }
72
+
73
+ .countdown-timer {
74
+ font-family: 'Poppins', sans-serif;
75
+ font-weight: 800;
76
+ text-shadow: 0 0 10px rgba(234, 88, 12, 0.7);
77
+ }
78
+
79
+ @keyframes pulse {
80
+ 0% { transform: scale(1); }
81
+ 50% { transform: scale(1.05); }
82
+ 100% { transform: scale(1); }
83
+ }
84
+
85
+ .pulse-animation {
86
+ animation: pulse 2s infinite;
87
+ }
88
+ </style>
89
+ </head>
90
+ <body>
91
+ <!-- Navigation -->
92
+ <nav class="bg-gray-900/80 backdrop-blur-md fixed w-full z-50">
93
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
94
+ <div class="flex items-center justify-between h-16">
95
+ <div class="flex items-center">
96
+ <div class="flex-shrink-0">
97
+ <img class="h-10" src="https://via.placeholder.com/150x60?text=Free+Fire+Lite" alt="Free Fire Lite">
98
+ </div>
99
+ <div class="hidden md:block">
100
+ <div class="ml-10 flex items-baseline space-x-4">
101
+ <a href="#" class="nav-link text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
102
+ <a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Characters</a>
103
+ <a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Modes</a>
104
+ <a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Events</a>
105
+ <a href="#" class="nav-link text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Shop</a>
106
+ </div>
107
+ </div>
108
+ </div>
109
+ <div class="hidden md:block">
110
+ <div class="ml-4 flex items-center md:ml-6">
111
+ <button class="bg-orange-600 hover:bg-orange-700 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center">
112
+ <i class="fas fa-download mr-2"></i> Download Now
113
+ </button>
114
+ </div>
115
+ </div>
116
+ <div class="-mr-2 flex md:hidden">
117
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
118
+ <span class="sr-only">Open main menu</span>
119
+ <i class="fas fa-bars"></i>
120
+ </button>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </nav>
125
+
126
+ <!-- Hero Section -->
127
+ <section class="hero-gradient pt-24 pb-16 md:pt-32 md:pb-24">
128
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
129
+ <div class="md:flex md:items-center md:justify-between">
130
+ <div class="md:w-1/2 mb-10 md:mb-0">
131
+ <h1 class="text-4xl md:text-6xl font-bold leading-tight mb-4">
132
+ <span class="text-orange-500">FREE FIRE</span> LITE
133
+ </h1>
134
+ <p class="text-lg md:text-xl text-gray-300 mb-8">
135
+ The ultimate battle royale experience optimized for all devices. Join 50 players in a 10-minute survival match!
136
+ </p>
137
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
138
+ <button class="btn-glow bg-orange-600 hover:bg-orange-700 text-white px-6 py-3 rounded-lg font-bold flex items-center justify-center">
139
+ <i class="fas fa-play mr-2"></i> Play Now
140
+ </button>
141
+ <button class="bg-gray-800 hover:bg-gray-700 text-white px-6 py-3 rounded-lg font-bold flex items-center justify-center">
142
+ <i class="fas fa-info-circle mr-2"></i> Learn More
143
+ </button>
144
+ </div>
145
+ <div class="mt-8 flex items-center space-x-4">
146
+ <div class="flex -space-x-2">
147
+ <img class="w-10 h-10 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
148
+ <img class="w-10 h-10 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
149
+ <img class="w-10 h-10 rounded-full border-2 border-gray-800" src="https://randomuser.me/api/portraits/women/45.jpg" alt="">
150
+ </div>
151
+ <div>
152
+ <p class="text-sm text-gray-300">Join <span class="font-bold text-white">10M+</span> players worldwide</p>
153
+ <div class="flex items-center text-yellow-400 text-xs">
154
+ <i class="fas fa-star"></i>
155
+ <i class="fas fa-star"></i>
156
+ <i class="fas fa-star"></i>
157
+ <i class="fas fa-star"></i>
158
+ <i class="fas fa-star-half-alt"></i>
159
+ <span class="ml-1 text-gray-300">4.7 (2.3M reviews)</span>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ <div class="md:w-1/2 relative">
165
+ <img src="https://via.placeholder.com/600x400?text=Game+Screenshot" alt="Free Fire Lite Gameplay" class="rounded-lg shadow-2xl border border-gray-700 w-full">
166
+ <div class="absolute -bottom-6 -right-6 bg-orange-600 text-white px-4 py-2 rounded-lg font-bold flex items-center">
167
+ <i class="fas fa-trophy mr-2"></i>
168
+ <span>Season 12</span>
169
+ </div>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </section>
174
+
175
+ <!-- Characters Section -->
176
+ <section class="py-16 bg-gray-900">
177
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
178
+ <div class="text-center mb-12">
179
+ <h2 class="text-3xl font-bold text-white mb-2">Choose Your Character</h2>
180
+ <p class="text-gray-400 max-w-2xl mx-auto">Each character has unique abilities to help you survive in the battlefield</p>
181
+ </div>
182
+
183
+ <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
184
+ <!-- Character 1 -->
185
+ <div class="character-card bg-gray-800 rounded-lg overflow-hidden shadow-lg">
186
+ <div class="relative">
187
+ <img src="https://via.placeholder.com/300x400?text=Character+1" alt="Character" class="w-full h-64 object-cover">
188
+ <div class="absolute top-2 right-2 bg-orange-600 text-white text-xs px-2 py-1 rounded">NEW</div>
189
+ </div>
190
+ <div class="p-4">
191
+ <h3 class="text-xl font-bold text-white mb-1">Alok</h3>
192
+ <p class="text-gray-400 text-sm mb-3">Drop the Beat</p>
193
+ <div class="flex justify-between items-center">
194
+ <span class="text-orange-500 font-bold">Active Skill</span>
195
+ <button class="text-white bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded text-sm">
196
+ <i class="fas fa-info-circle"></i>
197
+ </button>
198
+ </div>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Character 2 -->
203
+ <div class="character-card bg-gray-800 rounded-lg overflow-hidden shadow-lg">
204
+ <div class="relative">
205
+ <img src="https://via.placeholder.com/300x400?text=Character+2" alt="Character" class="w-full h-64 object-cover">
206
+ </div>
207
+ <div class="p-4">
208
+ <h3 class="text-xl font-bold text-white mb-1">K</h3>
209
+ <p class="text-gray-400 text-sm mb-3">Master of All</p>
210
+ <div class="flex justify-between items-center">
211
+ <span class="text-orange-500 font-bold">Active Skill</span>
212
+ <button class="text-white bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded text-sm">
213
+ <i class="fas fa-info-circle"></i>
214
+ </button>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Character 3 -->
220
+ <div class="character-card bg-gray-800 rounded-lg overflow-hidden shadow-lg">
221
+ <div class="relative">
222
+ <img src="https://via.placeholder.com/300x400?text=Character+3" alt="Character" class="w-full h-64 object-cover">
223
+ </div>
224
+ <div class="p-4">
225
+ <h3 class="text-xl font-bold text-white mb-1">Chrono</h3>
226
+ <p class="text-gray-400 text-sm mb-3">Time Turner</p>
227
+ <div class="flex justify-between items-center">
228
+ <span class="text-orange-500 font-bold">Active Skill</span>
229
+ <button class="text-white bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded text-sm">
230
+ <i class="fas fa-info-circle"></i>
231
+ </button>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Character 4 -->
237
+ <div class="character-card bg-gray-800 rounded-lg overflow-hidden shadow-lg">
238
+ <div class="relative">
239
+ <img src="https://via.placeholder.com/300x400?text=Character+4" alt="Character" class="w-full h-64 object-cover">
240
+ <div class="absolute top-2 right-2 bg-blue-600 text-white text-xs px-2 py-1 rounded">ELITE</div>
241
+ </div>
242
+ <div class="p-4">
243
+ <h3 class="text-xl font-bold text-white mb-1">Skyler</h3>
244
+ <p class="text-gray-400 text-sm mb-3">Riptide Rhythm</p>
245
+ <div class="flex justify-between items-center">
246
+ <span class="text-orange-500 font-bold">Active Skill</span>
247
+ <button class="text-white bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded text-sm">
248
+ <i class="fas fa-info-circle"></i>
249
+ </button>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+
255
+ <div class="text-center mt-10">
256
+ <button class="border-2 border-orange-600 text-orange-600 hover:bg-orange-600 hover:text-white px-6 py-2 rounded-lg font-bold">
257
+ View All Characters
258
+ </button>
259
+ </div>
260
+ </div>
261
+ </section>
262
+
263
+ <!-- Game Modes Section -->
264
+ <section class="py-16 bg-gray-800">
265
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
266
+ <div class="text-center mb-12">
267
+ <h2 class="text-3xl font-bold text-white mb-2">Game Modes</h2>
268
+ <p class="text-gray-400 max-w-2xl mx-auto">Different ways to experience the battle royale</p>
269
+ </div>
270
+
271
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
272
+ <!-- Mode 1 -->
273
+ <div class="game-mode-card rounded-lg p-6">
274
+ <div class="flex items-center mb-4">
275
+ <div class="bg-orange-600 p-3 rounded-lg mr-4">
276
+ <i class="fas fa-skull text-white text-xl"></i>
277
+ </div>
278
+ <h3 class="text-xl font-bold text-white">Battle Royale</h3>
279
+ </div>
280
+ <p class="text-gray-300 mb-4">The classic 50-player survival match. Be the last one standing to claim victory!</p>
281
+ <div class="flex justify-between items-center">
282
+ <span class="text-sm text-gray-400">10 min matches</span>
283
+ <span class="text-sm font-bold text-orange-500">50 Players</span>
284
+ </div>
285
+ </div>
286
+
287
+ <!-- Mode 2 -->
288
+ <div class="game-mode-card rounded-lg p-6">
289
+ <div class="flex items-center mb-4">
290
+ <div class="bg-blue-600 p-3 rounded-lg mr-4">
291
+ <i class="fas fa-users text-white text-xl"></i>
292
+ </div>
293
+ <h3 class="text-xl font-bold text-white">Clash Squad</h3>
294
+ </div>
295
+ <p class="text-gray-300 mb-4">Fast-paced 4v4 matches with economy rounds. First to win 7 rounds wins!</p>
296
+ <div class="flex justify-between items-center">
297
+ <span class="text-sm text-gray-400">5 min matches</span>
298
+ <span class="text-sm font-bold text-blue-500">4v4</span>
299
+ </div>
300
+ </div>
301
+
302
+ <!-- Mode 3 -->
303
+ <div class="game-mode-card rounded-lg p-6">
304
+ <div class="flex items-center mb-4">
305
+ <div class="bg-purple-600 p-3 rounded-lg mr-4">
306
+ <i class="fas fa-ghost text-white text-xl"></i>
307
+ </div>
308
+ <h3 class="text-xl font-bold text-white">Lone Wolf</h3>
309
+ </div>
310
+ <p class="text-gray-300 mb-4">Solo survival against 49 other players. No teams, just pure survival skills.</p>
311
+ <div class="flex justify-between items-center">
312
+ <span class="text-sm text-gray-400">10 min matches</span>
313
+ <span class="text-sm font-bold text-purple-500">Solo</span>
314
+ </div>
315
+ </div>
316
+ </div>
317
+ </div>
318
+ </section>
319
+
320
+ <!-- Event Countdown -->
321
+ <section class="py-16 bg-gradient-to-r from-orange-900/50 to-orange-800/50">
322
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
323
+ <div class="bg-gray-900/70 rounded-xl p-8 backdrop-blur-md border border-gray-700">
324
+ <div class="md:flex items-center justify-between">
325
+ <div class="md:w-1/2 mb-8 md:mb-0">
326
+ <h2 class="text-2xl md:text-3xl font-bold text-white mb-2">Season 12: Cyber Revolution</h2>
327
+ <p class="text-gray-300 mb-4">New characters, weapons, and a futuristic map await in the latest season!</p>
328
+ <div class="flex items-center space-x-2">
329
+ <span class="text-sm text-gray-400">Starts in:</span>
330
+ <div id="countdown" class="countdown-timer text-xl font-bold text-orange-500"></div>
331
+ </div>
332
+ </div>
333
+ <div class="md:w-1/2">
334
+ <div class="bg-gray-800 rounded-lg overflow-hidden">
335
+ <img src="https://via.placeholder.com/600x300?text=Season+12+Event" alt="Season 12 Event" class="w-full h-full object-cover">
336
+ </div>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </div>
341
+ </section>
342
+
343
+ <!-- Download Section -->
344
+ <section class="py-16 bg-gray-900">
345
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
346
+ <div class="bg-gradient-to-r from-orange-600 to-orange-800 rounded-2xl p-8 md:p-12 shadow-2xl">
347
+ <div class="md:flex items-center justify-between">
348
+ <div class="md:w-2/3 mb-8 md:mb-0">
349
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Ready to Join the Battle?</h2>
350
+ <p class="text-orange-100 mb-6">Download Free Fire Lite now and experience the optimized battle royale on any device!</p>
351
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
352
+ <button class="pulse-animation bg-white hover:bg-gray-100 text-orange-600 px-6 py-3 rounded-lg font-bold flex items-center justify-center">
353
+ <i class="fab fa-google-play mr-2 text-xl"></i>
354
+ <div class="text-left">
355
+ <div class="text-xs">GET IT ON</div>
356
+ <div class="text-lg">Google Play</div>
357
+ </div>
358
+ </button>
359
+ <button class="pulse-animation bg-white hover:bg-gray-100 text-orange-600 px-6 py-3 rounded-lg font-bold flex items-center justify-center">
360
+ <i class="fab fa-apple mr-2 text-xl"></i>
361
+ <div class="text-left">
362
+ <div class="text-xs">Download on the</div>
363
+ <div class="text-lg">App Store</div>
364
+ </div>
365
+ </button>
366
+ </div>
367
+ </div>
368
+ <div class="md:w-1/3 flex justify-center">
369
+ <img src="https://via.placeholder.com/200x200?text=App+Icon" alt="Free Fire Lite" class="w-40 h-40 rounded-xl border-4 border-white shadow-lg">
370
+ </div>
371
+ </div>
372
+ </div>
373
+ </div>
374
+ </section>
375
+
376
+ <!-- Footer -->
377
+ <footer class="bg-gray-900 border-t border-gray-800">
378
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
379
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
380
+ <div>
381
+ <img src="https://via.placeholder.com/150x60?text=Free+Fire+Lite" alt="Free Fire Lite" class="h-10 mb-4">
382
+ <p class="text-gray-400 text-sm">The ultimate battle royale experience optimized for all devices.</p>
383
+ <div class="flex space-x-4 mt-4">
384
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
385
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
386
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
387
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
388
+ </div>
389
+ </div>
390
+ <div>
391
+ <h3 class="text-white font-bold mb-4">Game</h3>
392
+ <ul class="space-y-2">
393
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Modes</a></li>
394
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Characters</a></li>
395
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Maps</a></li>
396
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Weapons</a></li>
397
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Rankings</a></li>
398
+ </ul>
399
+ </div>
400
+ <div>
401
+ <h3 class="text-white font-bold mb-4">Support</h3>
402
+ <ul class="space-y-2">
403
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Help Center</a></li>
404
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Community</a></li>
405
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Feedback</a></li>
406
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a></li>
407
+ <li><a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a></li>
408
+ </ul>
409
+ </div>
410
+ <div>
411
+ <h3 class="text-white font-bold mb-4">Contact</h3>
412
+ <ul class="space-y-2">
413
+ <li class="text-gray-400 text-sm">Email: support@freefirelite.com</li>
414
+ <li class="text-gray-400 text-sm">Phone: +1 (555) 123-4567</li>
415
+ <li class="text-gray-400 text-sm">Address: 123 Game Street, CA</li>
416
+ </ul>
417
+ </div>
418
+ </div>
419
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
420
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 Free Fire Lite. All rights reserved.</p>
421
+ <div class="flex space-x-6">
422
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Privacy</a>
423
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Terms</a>
424
+ <a href="#" class="text-gray-500 hover:text-white text-sm">Cookies</a>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ </footer>
429
+
430
+ <script>
431
+ // Countdown timer
432
+ function updateCountdown() {
433
+ const now = new Date();
434
+ const eventDate = new Date();
435
+ eventDate.setDate(now.getDate() + 3); // 3 days from now
436
+ eventDate.setHours(12, 0, 0, 0); // Set to noon
437
+
438
+ const diff = eventDate - now;
439
+
440
+ const days = Math.floor(diff / (1000 * 60 * 60 * 24));
441
+ const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
442
+ const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
443
+ const seconds = Math.floor((diff % (1000 * 60)) / 1000);
444
+
445
+ document.getElementById('countdown').innerHTML =
446
+ `${days}d ${hours}h ${minutes}m ${seconds}s`;
447
+ }
448
+
449
+ setInterval(updateCountdown, 1000);
450
+ updateCountdown();
451
+
452
+ // Mobile menu toggle
453
+ const mobileMenuButton = document.querySelector('[aria-controls="mobile-menu"]');
454
+ mobileMenuButton.addEventListener('click', function() {
455
+ // This would toggle a mobile menu in a real implementation
456
+ console.log('Mobile menu toggled');
457
+ });
458
+
459
+ // Character card hover effects
460
+ const characterCards = document.querySelectorAll('.character-card');
461
+ characterCards.forEach(card => {
462
+ card.addEventListener('mouseenter', function() {
463
+ this.style.transform = 'translateY(-10px) scale(1.03)';
464
+ });
465
+ card.addEventListener('mouseleave', function() {
466
+ this.style.transform = '';
467
+ });
468
+ });
469
+ </script>
470
+ <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=Davi111/games" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
471
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Criar o free fire lite