innocent1265 commited on
Commit
538a944
·
verified ·
1 Parent(s): 328fa16

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +551 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Innocent Smith
3
- emoji: 🌖
4
- colorFrom: red
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: innocent-smith
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: pink
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,551 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Innocent Bet - Paris Sportifs Responsables</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
+ /* Custom animations */
11
+ @keyframes pulse {
12
+ 0%, 100% { transform: scale(1); }
13
+ 50% { transform: scale(1.05); }
14
+ }
15
+ .animate-pulse-slow {
16
+ animation: pulse 3s infinite;
17
+ }
18
+
19
+ /* Custom scrollbar */
20
+ ::-webkit-scrollbar {
21
+ width: 8px;
22
+ }
23
+ ::-webkit-scrollbar-track {
24
+ background: #f1f1f1;
25
+ }
26
+ ::-webkit-scrollbar-thumb {
27
+ background: #4f46e5;
28
+ border-radius: 4px;
29
+ }
30
+ ::-webkit-scrollbar-thumb:hover {
31
+ background: #4338ca;
32
+ }
33
+
34
+ /* Glassmorphism effect */
35
+ .glass {
36
+ background: rgba(255, 255, 255, 0.15);
37
+ backdrop-filter: blur(10px);
38
+ -webkit-backdrop-filter: blur(10px);
39
+ border: 1px solid rgba(255, 255, 255, 0.18);
40
+ }
41
+
42
+ /* Gradient text */
43
+ .gradient-text {
44
+ background: linear-gradient(90deg, #4f46e5 0%, #06b6d4 100%);
45
+ -webkit-background-clip: text;
46
+ background-clip: text;
47
+ color: transparent;
48
+ }
49
+ </style>
50
+ </head>
51
+ <body class="bg-gradient-to-br from-indigo-900 via-purple-900 to-gray-900 min-h-screen text-white font-sans">
52
+ <!-- Navigation -->
53
+ <nav class="glass fixed top-0 left-0 right-0 z-50 py-3 px-4 md:px-8 shadow-lg">
54
+ <div class="max-w-7xl mx-auto flex justify-between items-center">
55
+ <div class="flex items-center space-x-2">
56
+ <i class="fas fa-dove text-2xl text-indigo-300"></i>
57
+ <span class="text-xl font-bold gradient-text">INNOCENT BET</span>
58
+ </div>
59
+
60
+ <div class="hidden md:flex items-center space-x-6">
61
+ <a href="#" class="hover:text-indigo-300 transition">Accueil</a>
62
+ <a href="#" class="hover:text-indigo-300 transition">Sports</a>
63
+ <a href="#" class="hover:text-indigo-300 transition">Promotions</a>
64
+ <a href="#" class="hover:text-indigo-300 transition">Aide</a>
65
+ </div>
66
+
67
+ <div class="flex items-center space-x-4">
68
+ <button class="hidden md:block bg-gradient-to-r from-indigo-500 to-blue-500 hover:from-indigo-600 hover:to-blue-600 px-4 py-2 rounded-full font-medium transition transform hover:scale-105">
69
+ S'identifier
70
+ </button>
71
+ <button class="md:hidden text-white">
72
+ <i class="fas fa-bars text-xl"></i>
73
+ </button>
74
+ </div>
75
+ </div>
76
+ </nav>
77
+
78
+ <!-- Main Content -->
79
+ <main class="pt-24 pb-12 px-4 md:px-8">
80
+ <!-- Hero Section -->
81
+ <section class="max-w-7xl mx-auto mb-16">
82
+ <div class="glass rounded-3xl p-8 md:p-12 relative overflow-hidden">
83
+ <div class="absolute inset-0 bg-gradient-to-r from-indigo-500/20 to-purple-500/20 -z-10"></div>
84
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
85
+ <div class="animate-pulse-slow">
86
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4 leading-tight">
87
+ <span class="gradient-text">Paris sportifs</span> <br>
88
+ <span>avec éthique</span>
89
+ </h1>
90
+ <p class="text-lg text-gray-200 mb-8 max-w-lg">
91
+ Découvrez une nouvelle expérience de paris sportifs où le plaisir du jeu rencontre la responsabilité.
92
+ </p>
93
+ <div class="flex flex-wrap gap-4">
94
+ <button class="bg-gradient-to-r from-indigoA-500 to-pink-500 hover:from-indigo-600 hover:to-pink-600 px-6 py-3 rounded-full font-bold transition transform hover:scale-105 shadow-lg">
95
+ Commencer
96
+ </button>
97
+ <button class="glass px-6 py-3 rounded-full font-medium transition hover:bg-white/10">
98
+ En savoir plus
99
+ </button>
100
+ </div>
101
+ </div>
102
+ <div class="relative">
103
+ <div class="absolute -top-12 -right-12 w-64 h-64 rounded-full bg-indigo-500/30 blur-3xl -z-10"></div>
104
+ <div class="glass rounded-2xl p-4 transform rotate-1 shadow-2xl">
105
+ <div class="bg-gray-800 rounded-lg overflow-hidden">
106
+ <div class="bg-gray-700 p-3 flex items-center justify-between">
107
+ <div class="flex items-center space-x-2">
108
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
109
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
110
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
111
+ </div>
112
+ <div class="text-sm">Match en direct</div>
113
+ <div class="w-6"></div>
114
+ </div>
115
+ <div class="p-4">
116
+ <div class="flex justify-between items-center mb-6">
117
+ <div class="text-center">
118
+ <div class="w-16 h-16 mx-auto bg-white/10 rounded-full flex items-center justify-center mb-2">
119
+ <img src="https://img.icons8.com/color/48/000000/france.png" alt="France" class="w-12 h-12">
120
+ </div>
121
+ <div class="font-medium">France</div>
122
+ <div class="text-sm text-gray-400">2.10</div>
123
+ </div>
124
+ <div class="text-2xl font-bold px-4">VS</div>
125
+ <div class="text-center">
126
+ <div class="w-16 h-16 mx-auto bg-white/10 rounded-full flex items-center justify-center mb-2">
127
+ <img src="https://img.icons8.com/color/48/000000/brazil.png" alt="Brazil" class="w-12 h-12">
128
+ </div>
129
+ <div class="font-medium">Brésil</div>
130
+ <div class="text-sm text-gray-400">3.40</div>
131
+ </div>
132
+ </div>
133
+ <div class="bg-gray-700 rounded-lg p-3 mb-4">
134
+ <div class="flex justify-between text-xs">
135
+ <span>45'+2'</span>
136
+ <span>1-0</span>
137
+ <span>Mi-temps</span>
138
+ </div>
139
+ <div class="w-full bg-gray-600 h-1 rounded-full mt-2">
140
+ <div class="bg-indigo-400 h-1 rounded-full" style="width: 45%"></div>
141
+ </div>
142
+ </div>
143
+ <div class="grid grid-cols-3 gap-2">
144
+ <button class="bg-indigo-600 hover:bg-indigo-700 py-2 rounded text-sm transition">1</button>
145
+ <button class="bg-gray-700 hover:bg-gray-600 py-2 rounded text-sm transition">N</button>
146
+ <button class="bg-gray-700 hover:bg-gray-600 py-2 rounded text-sm transition">2</button>
147
+ </div>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </section>
155
+
156
+ <!-- Features Section -->
157
+ <section class="max-w-7xl mx-auto mb-16">
158
+ <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center gradient-text">Pourquoi choisir Innocent Bet?</h2>
159
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
160
+ <!-- Feature 1 -->
161
+ <div class="glass rounded-2xl p-6 hover:transform hover:-translate-y-2 transition duration-300">
162
+ <div class="w-14 h-14 rounded-full bg-indigo-500/20 flex items-center justify-center mb-4">
163
+ <i class="fas fa-leaf text-2xl text-indigo-300"></i>
164
+ </div>
165
+ <h3 class="text-xl font-bold mb-3">Jouez responsable</h3>
166
+ <p class="text-gray-300">
167
+ Nous encourageons une pratique responsable avec des outils de contrôle et des limites personnalisables.
168
+ </p>
169
+ </div>
170
+
171
+ <!-- Feature 2 -->
172
+ <div class="glass rounded-2xl p-6 hover:transform hover:-translate-y-2 transition duration-300">
173
+ <div class="w-14 h-14 rounded-full bg-blue-500/20 flex items-center justify-center mb-4">
174
+ <i class="fas fa-shield-alt text-2xl text-blue-300"></i>
175
+ </div>
176
+ <h3 class="text-xl font-bold mb-3">Sécurité maximale</h3>
177
+ <p class="text-gray-300">
178
+ Vos données et transactions sont protégées avec les dernières technologies de chiffrement.
179
+ </p>
180
+ </div>
181
+
182
+ <!-- Feature 3 -->
183
+ <div class="glass rounded-2xl p-6 hover:transform hover:-translate-y-2 transition duration-300">
184
+ <div class="w-14 h-14 rounded-full bg-purple-500/20 flex items-center justify-center mb-4">
185
+ <i class="fas fa-gift text-2xl text-purple-300"></i>
186
+ </div>
187
+ <h3 class="text-xl font-bold mb-3">Bonus équitables</h3>
188
+ <p class="text-gray-300">
189
+ Des promotions transparentes sans conditions cachées pour une expérience client optimale.
190
+ </p>
191
+ </div>
192
+ </div>
193
+ </section>
194
+
195
+ <!-- Live Matches Section -->
196
+ <section class="max-w-7xl mx-auto mb-16">
197
+ <div class="flex justify-between items-center mb-8">
198
+ <h2 class="text-3xl font-bold gradient-text">Matchs en direct</h2>
199
+ <div class="flex items-center space-x-2">
200
+ <span class="relative flex h-3 w-3">
201
+ <span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-red-400 opacity-75"></span>
202
+ <span class="relative inline-flex rounded-full h-3 w-3 bg-red-500"></span>
203
+ </span>
204
+ <span>10 matchs en cours</span>
205
+ </div>
206
+ </div>
207
+
208
+ <div class="bg-gray-800/50 rounded-2xl overflow-hidden">
209
+ <!-- Matches Navigation -->
210
+ <div class="flex border-b border-gray-700">
211
+ <button class="px-6 py-3 font-medium border-b-2 border-indigo-500">Football</button>
212
+ <button class="px-6 py-3 font-medium text-gray-400 hover:text-white transition">Tennis</button>
213
+ <button class="px-6 py-3 font-medium text-gray-400 hover:text-white transition">Basket</button>
214
+ <button class="px-6 py-3 font-medium text-gray-400 hover:text-white transition">Rugby</button>
215
+ </div>
216
+
217
+ <!-- Matches List -->
218
+ <div class="divide-y divide-gray-700">
219
+ <!-- Match 1 -->
220
+ <div class="p-4 hover:bg-gray-700/50 transition cursor-pointer">
221
+ <div class="flex justify-between items-center">
222
+ <div class="flex-1">
223
+ <div class="flex items-center">
224
+ <div class="w-8 h-8 rounded-full bg-gray-600 flex items-center justify-center mr-3">
225
+ <i class="fas fa-futbol text-gray-300"></i>
226
+ </div>
227
+ <span>Ligue 1</span>
228
+ </div>
229
+ </div>
230
+ <div class="flex-1 text-right">
231
+ <span class="text-sm text-gray-400">75'</span>
232
+ </div>
233
+ </div>
234
+ <div class="flex items-center justify-between mt-4">
235
+ <div class="flex-1">
236
+ <div class="flex items-center">
237
+ <div class="w-6 h-6 bg-white/10 rounded-full mr-3 overflow-hidden">
238
+ <img src="https://img.icons8.com/color/48/000000/paris-saint-germain.png" alt="PSG" class="w-full h-full object-cover">
239
+ </div>
240
+ <span class="font-medium">PSG</span>
241
+ </div>
242
+ </div>
243
+ <div class="px-4 flex items-center">
244
+ <div class="w-16 py-1 bg-gray-700 rounded text-center font-bold">
245
+ 2 - 1
246
+ </div>
247
+ </div>
248
+ <div class="flex-1 text-right">
249
+ <div class="flex items-center justify-end">
250
+ <span class="font-medium">OM</span>
251
+ <div class="w-6 h-6 bg-white/10 rounded-full ml-3 overflow-hidden">
252
+ <img src="https://img.icons8.com/color/48/000000/olympique-de-marseille.png" alt="OM" class="w-full h-full object-cover">
253
+ </div>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ <div class="grid grid-cols-3 gap-2 mt-4">
258
+ <button class="bg-gray-700 hover:bg-indigo-600 py-2 rounded text-sm transition">1.75</button>
259
+ <button class="bg-gray-700 hover:bg-indigo-600 py-2 rounded text-sm transition">3.50</button>
260
+ <button class="bg-gray-700 hover:bg-indigo-600 py-2 rounded text-sm transition">2.10</button>
261
+ </div>
262
+ </div>
263
+
264
+ <!-- Match 2 -->
265
+ <div class="p-4 hover:bg-gray-700/50 transition cursor-pointer">
266
+ <div class="flex justify-between items-center">
267
+ <div class="flex-1">
268
+ <div class="flex items-center">
269
+ <div class="w-8 h-8 rounded-full bg-gray-600 flex items-center justify-center mr-3">
270
+ <i class="fas fa-futbol text-gray-300"></i>
271
+ </div>
272
+ <span>Premier League</span>
273
+ </div>
274
+ </div>
275
+ <div class="flex-1 text-right">
276
+ <span class="text-sm text-gray-400">62'</span>
277
+ </div>
278
+ </div>
279
+ <div class="flex items-center justify-between mt-4">
280
+ <div class="flex-1">
281
+ <div class="flex items-center">
282
+ <div class="w-6 h-6 bg-white/10 rounded-full mr-3 overflow-hidden">
283
+ <img src="https://img.icons8.com/color/48/000000/manchester-city.png" alt="Man City" class="w-full h-full object-cover">
284
+ </div>
285
+ <span class="font-medium">Man City</span>
286
+ </div>
287
+ </div>
288
+ <div class="px-4 flex items-center">
289
+ <div class="w-16 py-1 bg-gray-700 rounded text-center font-bold">
290
+ 0 - 0
291
+ </div>
292
+ </div>
293
+ <div class="flex-1 text-right">
294
+ <div class="flex items-center justify-end">
295
+ <span class="font-medium">Liverpool</span>
296
+ <div class="w-6 h-6 bg-white/10 rounded-full ml-3 overflow-hidden">
297
+ <img src="https://img.icons8.com/color/48/000000/liverpool-fc.png" alt="Liverpool" class="w-full h-full object-cover">
298
+ </div>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ <div class="grid grid-cols-3 gap-2 mt-4">
303
+ <button class="bg-indigo-600 hover:bg-indigo-700 py-2 rounded text-sm transition">1.90</button>
304
+ <button class="bg-gray-700 hover:bg-indigo-600 py-2 rounded text-sm transition">3.80</button>
305
+ <button class="bg-gray-700 hover:bg-indigo-600 py-2 rounded text-sm transition">3.20</button>
306
+ </div>
307
+ </div>
308
+ </div>
309
+
310
+ <div class="p-4 text-center">
311
+ <button class="text-indigo-300 hover:text-indigo-200 font-medium flex items-center justify-center mx-auto">
312
+ Voir plus de matchs
313
+ <i class="fas fa-chevron-down ml-2 text-sm"></i>
314
+ </button>
315
+ </div>
316
+ </div>
317
+ </section>
318
+
319
+ <!-- Jackpot Banner -->
320
+ <section class="max-w-7xl mx-auto mb-16">
321
+ <div class="glass rounded-2xl p-6 md:p-8 bg-gradient-to-r from-purple-500/20 to-indigo-500/20 relative overflow-hidden">
322
+ <div class="absolute -top-20 -right-20 w-64 h-64 rounded-full bg-purple-500/20 blur-3xl -z-10"></div>
323
+ <div class="absolute -bottom-20 -left-20 w-64 h-64 rounded-full bg-indigo-500/20 blur-3xl -z-10"></div>
324
+
325
+ <div class="flex flex-col md:flex-row items-center justify-between">
326
+ <div class="mb-6 md:mb-0">
327
+ <h3 class="text-2xl md:text-3xl font-bold mb-2">Jackpot du weekend</h3>
328
+ <p class="text-gray-300 max-w-md mb-4">
329
+ Tentez de remporter notre jackpot spécial de 250 000€ en pronostiquant les résultats des 10 matchs sélectionnés!
330
+ </p>
331
+ <button class="bg-gradient-to-r from-yellow-500 to-yellow-600 hover:from-yellow-600 hover:to-yellow-700 px-6 py-2 rounded-full font-bold transition transform hover:scale-105 shadow-lg">
332
+ Participer
333
+ </button>
334
+ </div>
335
+ <div class="relative">
336
+ <div class="w-48 h-48 bg-yellow-500/10 rounded-full flex items-center justify-center border-2 border-yellow-500/30 animate-pulse-slow">
337
+ <div class="w-40 h-40 bg-yellow-500/20 rounded-full flex items-center justify-center border-2 border-yellow-500/20">
338
+ <div class="text-center">
339
+ <div class="text-4xl font-bold">250K€</div>
340
+ <div class="text-sm">À gagner</div>
341
+ </div>
342
+ </div>
343
+ </div>
344
+ <div class="absolute -top-4 -right-4 bg-gray-900 rounded-full p-3 shadow-lg">
345
+ <i class="fas fa-coins text-yellow-400 text-xl"></i>
346
+ </div>
347
+ </div>
348
+ </div>
349
+ </div>
350
+ </section>
351
+
352
+ <!-- Stats Section -->
353
+ <section class="max-w-7xl mx-auto">
354
+ <h2 class="text-3xl font-bold mb-8 text-center gradient-text">Innocent Bet en chiffres</h2>
355
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
356
+ <div class="glass rounded-2xl p-6 text-center">
357
+ <div class="text-4xl font-bold text-indigo-300 mb-2">250K+</div>
358
+ <div class="text-gray-300">Utilisateurs actifs</div>
359
+ </div>
360
+ <div class="glass rounded-2xl p-6 text-center">
361
+ <div class="text-4xl font-bold text-blue-300 mb-2">95%</div>
362
+ <div class="text-gray-300">Satisfaction clients</div>
363
+ </div>
364
+ <div class="glass rounded-2xl p-6 text-center">
365
+ <div class="text-4xl font-bold text-purple-300 mb-2">30+</div>
366
+ <div class="text-gray-300">Sports disponibles</div>
367
+ </div>
368
+ <div class="glass rounded-2xl p-6 text-center">
369
+ <div class="text-4xl font-bold text-pink-300 mb-2">2.5M€</div>
370
+ <div class="text-gray-300">Gains distribués</div>
371
+ </div>
372
+ </div>
373
+ </section>
374
+ </main>
375
+
376
+ <!-- Footer -->
377
+ <footer class="bg-gray-900/80 py-12 px-4 md:px-8">
378
+ <div class="max-w-7xl mx-auto">
379
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-12">
380
+ <div>
381
+ <div class="flex items-center space-x-2 mb-4">
382
+ <i class="fas fa-dove text-2xl text-indigo-300"></i>
383
+ <span class="text-xl font-bold gradient-text">INNOCENT BET</span>
384
+ </div>
385
+ <p class="text-gray-400 mb-4">
386
+ La plateforme de paris sportifs qui met l'éthique et la responsabilité au premier plan.
387
+ </p>
388
+ <div class="flex space-x-4">
389
+ <a href="#" class="text-gray-400 hover:text-white transition">
390
+ <i class="fab fa-facebook-f"></i>
391
+ </a>
392
+ <a href="#" class="text-gray-400 hover:text-white transition">
393
+ <i class="fab fa-twitter"></i>
394
+ </a>
395
+ <a href="#" class="text-gray-400 hover:text-white transition">
396
+ <i class="fab fa-instagram"></i>
397
+ </a>
398
+ <a href="#" class="text-gray-400 hover:text-white transition">
399
+ <i class="fab fa-discord"></i>
400
+ </a>
401
+ </div>
402
+ </div>
403
+
404
+ <div>
405
+ <h3 class="text-lg font-bold mb-4 text-white">Navigation</h3>
406
+ <ul class="space-y-2">
407
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Accueil</a></li>
408
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Sports</a></li>
409
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Promotions</a></li>
410
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Programme VIP</a></li>
411
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Live</a></li>
412
+ </ul>
413
+ </div>
414
+
415
+ <div>
416
+ <h3 class="text-lg font-bold mb-4 text-white">Légal</h3>
417
+ <ul class="space-y-2">
418
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Conditions générales</a></li>
419
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Politique de confidentialité</a></li>
420
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Jouer responsable</a></li>
421
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Règles des paris</a></li>
422
+ </ul>
423
+ </div>
424
+
425
+ <div>
426
+ <h3 class="text-lg font-bold mb-4 text-white">Assistance</h3>
427
+ <ul class="space-y-2">
428
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Centre d'aide</a></li>
429
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">Nous contacter</a></li>
430
+ <li><a href="#" class="text-gray-400 hover:text-indigo-300 transition">FAQ</a></li>
431
+ </ul>
432
+ <div class="mt-6">
433
+ <h4 class="text-sm font-bold mb-2 text-gray-400">Télécharger l'app</h4>
434
+ <div class="flex space-x-2">
435
+ <a href="#" class="flex items-center justify-center bg-gray-800 hover:bg-gray-700 rounded-lg px-3 py-2 transition">
436
+ <i class="fab fa-apple mr-2"></i>
437
+ <span class="text-xs">App Store</span>
438
+ </a>
439
+ <a href="#" class="flex items-center justify-center bg-gray-800 hover:bg-gray-700 rounded-lg px-3 py-2 transition">
440
+ <i class="fab fa-google-play mr-2"></i>
441
+ <span class="text-xs">Play Store</span>
442
+ </a>
443
+ </div>
444
+ </div>
445
+ </div>
446
+ </div>
447
+
448
+ <div class="border-t border-gray-800 mt-12 pt-8">
449
+ <div class="flex flex-col md:flex-row justify-between items-center">
450
+ <div class="text-gray-500 text-sm mb-4 md:mb-0">
451
+ © 2023 Innocent Bet. Tous droits réservés.
452
+ </div>
453
+ <div class="flex space-x-4">
454
+ <img src="https://img.icons8.com/color/48/000000/visa.png" alt="Visa" class="w-8 h-5 object-cover">
455
+ <img src="https://img.icons8.com/color/48/000000/mastercard.png" alt="Mastercard" class="w-8 h-5 object-cover">
456
+ <img src="https://img.icons8.com/color/48/000000/paypal.png" alt="PayPal" class="w-8 h-5 object-cover">
457
+ <img src="https://img.icons8.com/color/48/000000/bitcoin.png" alt="Bitcoin" class="w-8 h-5 object-cover">
458
+ </div>
459
+ </div>
460
+ </div>
461
+ </div>
462
+ </footer>
463
+
464
+ <!-- Responsible Gambling Banner -->
465
+ <div class="fixed bottom-0 left-0 right-0 bg-indigo-900/90 backdrop-blur-sm z-40">
466
+ <div class="max-w-7xl mx-auto px-4 py-2 flex flex-col md:flex-row items-center justify-between">
467
+ <div class="flex items-center mb-2 md:mb-0">
468
+ <i class="fas fa-info-circle text-indigo-300 mr-2"></i>
469
+ <span class="text-sm">Jouez de manière responsable. 18+ seulement.</span>
470
+ </div>
471
+ <div class="flex space-x-4">
472
+ <button class="text-xs hover:underline text-indigo-300">Limites de dépôt</button>
473
+ <button class="text-xs hover:underline text-indigo-300">Auto-exclusion</button>
474
+ </div>
475
+ </div>
476
+ </div>
477
+
478
+ <script>
479
+ // Simple JavaScript for demo purposes
480
+ document.addEventListener('DOMContentLoaded', function() {
481
+ // Animate match odds buttons on hover
482
+ const oddsButtons = document.querySelectorAll('.grid.grid-cols-3 button');
483
+ oddsButtons.forEach(button => {
484
+ button.addEventListener('mouseenter', function() {
485
+ this.classList.add('transform', 'scale-105');
486
+ });
487
+ button.addEventListener('mouseleave', function() {
488
+ this.classList.remove('transform', 'scale-105');
489
+ });
490
+ });
491
+
492
+ // Mobile menu toggle (would be expanded in a real implementation)
493
+ const mobileMenuBtn = document.querySelector('button[class*="md:hidden"]');
494
+ mobileMenuBtn.addEventListener('click', function() {
495
+ alert('Menu mobile serait ouvert ici dans une implémentation complète');
496
+ });
497
+
498
+ // Show toast notification when clicking on any bet button
499
+ const betButtons = document.querySelectorAll('button:not([class*="gradient"]):not([class*="glass"]):not([class*="text-xs"])');
500
+ betButtons.forEach(button => {
501
+ button.addEventListener('click', function(e) {
502
+ if(e.target.textContent.toLowerCase().includes('s\'identifier') ||
503
+ e.target.textContent.toLowerCase().includes('participer') ||
504
+ e.target.textContent.toLowerCase().includes('commencer') ||
505
+ e.target.textContent.toLowerCase().includes('savoir')) return;
506
+
507
+ showToast('Paris ajouté à votre slip', 'success');
508
+ });
509
+ });
510
+
511
+ function showToast(message, type) {
512
+ const toast = document.createElement('div');
513
+ toast.className = `fixed top-5 right-5 glass px-X4 py-3 rounded-lg flex items-center shadow-lg animate-slide-in`;
514
+
515
+ let iconClass = 'fas fa-check-circle';
516
+ let bgColor = 'bg-green-500/20';
517
+ let textColor = 'text-green-300';
518
+
519
+ if(type === 'error') {
520
+ iconClass = 'fas fa-times-circle';
521
+ bgColor = 'bg-red-500/20';
522
+ textColor = 'text-red-300';
523
+ }
524
+
525
+ toast.innerHTML = `
526
+ <div class="w-8 h-8 rounded-full ${bgColor} flex items-center justify-center mr-3">
527
+ <i class="${iconClass} ${textColor}"></i>
528
+ </div>
529
+ <div>
530
+ <div class="font-medium">${message}</div>
531
+ </div>
532
+ <button class="ml-4 text-gray-400 hover:text-white">
533
+ <i class="fas fa-times"></i>
534
+ </button>
535
+ `;
536
+
537
+ document.body.appendChild(toast);
538
+
539
+ // Auto remove after 3 seconds
540
+ setTimeout(() => {
541
+ toast.classList.add('animate-slide-out');
542
+ setTimeout(() => toast.remove(), 300);
543
+ }, 3000);
544
+
545
+ // Remove on click
546
+ toast.querySelector('button').addEventListener('click', () => toast.remove());
547
+ }
548
+ });
549
+ </script>
550
+ <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=innocent1265/innocent-smith" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
551
+ </html>
prompts.txt ADDED
File without changes