docto41 commited on
Commit
f65b578
·
verified ·
1 Parent(s): 66be747

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +1 -788
  2. prompts.txt +2 -1
index.html CHANGED
@@ -115,792 +115,5 @@
115
  max-height: 90vh;
116
  overflow-y: auto;
117
  border: 1px solid rgba(255, 255, 255, 0.2);
118
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
119
- }
120
-
121
- .modal-close {
122
- position: absolute;
123
- top: 20px;
124
- right: 20px;
125
- color: white;
126
- font-size: 30px;
127
- cursor: pointer;
128
- z-index: 101;
129
- transition: all 0.3s ease;
130
- }
131
-
132
- .modal-close:hover {
133
- transform: scale(1.2);
134
- color: #3b82f6;
135
- }
136
-
137
- /* Loading spinner */
138
- .spinner {
139
- width: 40px;
140
- height: 40px;
141
- border: 4px solid rgba(255, 255, 255, 0.3);
142
- border-radius: 50%;
143
- border-top-color: #3b82f6;
144
- animation: spin 1s ease-in-out infinite;
145
- }
146
-
147
- @keyframes spin {
148
- to { transform: rotate(360deg); }
149
- }
150
-
151
- /* New button styles */
152
- .btn-primary {
153
- background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
154
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
155
- border: none;
156
- }
157
-
158
- .btn-primary:hover {
159
- background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
160
- transform: translateY(-2px);
161
- box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
162
- }
163
-
164
- /* Navbar */
165
- .navbar {
166
- background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
167
- backdrop-filter: blur(10px);
168
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
169
- transition: all 0.3s ease;
170
- }
171
-
172
- .navbar.scrolled {
173
- background: rgba(0, 0, 0, 0.9);
174
- }
175
-
176
- /* Footer */
177
- .footer {
178
- background: rgba(0, 0, 0, 0.9);
179
- border-top: 1px solid rgba(255, 255, 255, 0.1);
180
- }
181
-
182
- /* Hero section */
183
- .hero-section {
184
- background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
185
- url('https://image.tmdb.org/t/p/original/8ZTVqvKDQ8emSGUEMjsS4I5ixCH.jpg');
186
- background-size: cover;
187
- background-position: center;
188
- height: 80vh;
189
- min-height: 600px;
190
- display: flex;
191
- align-items: center;
192
- }
193
-
194
- /* Category selector */
195
- .category-selector {
196
- scrollbar-width: none;
197
- }
198
-
199
- .category-selector::-webkit-scrollbar {
200
- display: none;
201
- }
202
-
203
- /* Responsive adjustments */
204
- @media (max-width: 768px) {
205
- .hero-section {
206
- height: 70vh;
207
- min-height: 500px;
208
- }
209
-
210
- .movie-poster {
211
- height: 280px;
212
- }
213
- }
214
-
215
- /* Live indicator */
216
- .live-indicator {
217
- animation: pulse 2s infinite;
218
- }
219
-
220
- @keyframes pulse {
221
- 0% { opacity: 1; }
222
- 50% { opacity: 0.5; }
223
- 100% { opacity: 1; }
224
- }
225
-
226
- /* Automated system indicator */
227
- .system-indicator {
228
- position: fixed;
229
- bottom: 20px;
230
- right: 20px;
231
- background: rgba(0, 0, 0, 0.7);
232
- border: 1px solid rgba(255, 255, 255, 0.1);
233
- border-radius: 20px;
234
- padding: 8px 16px;
235
- font-size: 12px;
236
- display: flex;
237
- align-items: center;
238
- z-index: 50;
239
- }
240
-
241
- .system-indicator .dot {
242
- width: 10px;
243
- height: 10px;
244
- background: #10B981;
245
- border-radius: 50%;
246
- margin-right: 8px;
247
- animation: pulse 2s infinite;
248
- }
249
- </style>
250
- </head>
251
- <body class="min-h-screen">
252
- <!-- Navigation -->
253
- <nav class="navbar fixed top-0 w-full z-50">
254
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
255
- <div class="flex items-center justify-between h-16">
256
- <div class="flex items-center">
257
- <div class="flex-shrink-0">
258
- <span class="text-red-600 text-2xl font-bold">Stream<span class="text-white">Vision</span></span>
259
- </div>
260
- <div class="hidden md:block ml-10">
261
- <div class="flex items-baseline space-x-4">
262
- <a href="#" class="text-white px-3 py-2 rounded-md text-sm font-medium">Accueil</a>
263
- <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Films</a>
264
- <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Séries</a>
265
- <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">En Direct</a>
266
- <a href="#" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Ma liste</a>
267
- </div>
268
- </div>
269
- </div>
270
- <div class="hidden md:block">
271
- <div class="ml-4 flex items-center md:ml-6">
272
- <div class="relative mx-4">
273
- <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
274
- <i class="fas fa-search text-gray-400"></i>
275
- </div>
276
- <input type="text" id="searchInput" class="bg-gray-800 text-white pl-10 pr-4 py-2 rounded-md focus:outline-none focus:ring-2 focus:ring-red-500 w-64" placeholder="Rechercher...">
277
- </div>
278
- <div class="ml-3 relative">
279
- <div>
280
- <button type="button" class="bg-gray-800 flex text-sm rounded-full focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white">
281
- <span class="sr-only">Open user menu</span>
282
- <img class="h-8 w-8 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=80&h=80&q=80" alt="">
283
- </button>
284
- </div>
285
- </div>
286
- </div>
287
- </div>
288
- <div class="-mr-2 flex md:hidden">
289
- <button type="button" class="bg-gray-800 inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white">
290
- <span class="sr-only">Open main menu</span>
291
- <i class="fas fa-bars"></i>
292
- </button>
293
- </div>
294
- </div>
295
- </div>
296
- </nav>
297
-
298
- <!-- Hero Section -->
299
- <section class="hero-section">
300
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 w-full">
301
- <div class="hero-gradient p-8 rounded-xl max-w-2xl">
302
- <div class="flex flex-col">
303
- <h1 class="text-4xl md:text-5xl font-bold mb-4">Dune : Partie Deux</h1>
304
- <div class="flex items-center space-x-4 mb-4">
305
- <span class="text-green-500 font-medium">95% Match</span>
306
- <span class="text-gray-300">2024</span>
307
- <span class="text-gray-300">2h 46min</span>
308
- <span class="border border-gray-300 px-1 text-xs">HD</span>
309
- <span class="border border-gray-300 px-1 text-xs">4K</span>
310
- </div>
311
- <p class="text-lg text-gray-300 mb-6">La suite du voyage de Paul Atréides alors qu'il s'unit avec les Fremen pour se venger des conspirateurs qui ont détruit sa famille.</p>
312
-
313
- <!-- Action Buttons -->
314
- <div class="flex flex-wrap gap-4 mb-6">
315
- <button id="watchNowBtn" class="btn-primary text-white px-6 py-3 rounded-lg font-medium flex items-center transition-all duration-300">
316
- <i class="fas fa-play mr-2"></i> Regarder maintenant
317
- </button>
318
- <button id="moreInfoBtn" class="bg-gray-700 hover:bg-gray-600 text-white px-6 py-3 rounded-lg font-medium flex items-center transition-all duration-300">
319
- <i class="fas fa-info-circle mr-2"></i> Plus d'infos
320
- </button>
321
- <button id="addToListBtn" class="bg-gray-700 hover:bg-gray-600 text-white px-4 py-3 rounded-lg font-medium flex items-center transition-all duration-300">
322
- <i class="fas fa-plus"></i>
323
- </button>
324
- </div>
325
- </div>
326
- </div>
327
- </div>
328
- </section>
329
-
330
- <!-- Main Content -->
331
- <main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12 mt-12">
332
- <!-- Category Selector -->
333
- <div class="flex overflow-x-auto space-x-4 py-4 category-selector mb-8">
334
- <button class="bg-red-600 text-white px-4 py-2 rounded-full whitespace-nowrap">Tendances</button>
335
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Nouveautés</button>
336
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Films</button>
337
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Séries</button>
338
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Documentaires</button>
339
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Enfants</button>
340
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Action</button>
341
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Comédie</button>
342
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Horreur</button>
343
- <button class="bg-gray-800 hover:bg-gray-700 text-white px-4 py-2 rounded-full whitespace-nowrap">Science-Fiction</button>
344
- </div>
345
-
346
- <!-- Trending Now Section -->
347
- <section class="mb-16">
348
- <div class="flex justify-between items-center mb-6">
349
- <h2 class="text-xl font-bold">Tendances actuelles</h2>
350
- <a href="#" class="text-gray-400 hover:text-white text-sm flex items-center">
351
- Voir tout <i class="fas fa-chevron-right ml-2"></i>
352
- </a>
353
- </div>
354
-
355
- <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4" id="trendingMovies">
356
- <!-- Movies will be loaded here by JavaScript -->
357
- <div class="flex justify-center items-center py-12">
358
- <div class="spinner"></div>
359
- </div>
360
- </div>
361
- </section>
362
-
363
- <!-- Continue Watching Section -->
364
- <section class="mb-16">
365
- <div class="flex justify-between items-center mb-6">
366
- <h2 class="text-xl font-bold">Continuer à regarder</h2>
367
- <a href="#" class="text-gray-400 hover:text-white text-sm flex items-center">
368
- Voir tout <i class="fas fa-chevron-right ml-2"></i>
369
- </a>
370
- </div>
371
-
372
- <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4" id="continueWatching">
373
- <!-- Movies will be loaded here by JavaScript -->
374
- <div class="flex justify-center items-center py-12">
375
- <div class="spinner"></div>
376
- </div>
377
- </div>
378
- </section>
379
-
380
- <!-- New Releases Section -->
381
- <section class="mb-16">
382
- <div class="flex justify-between items-center mb-6">
383
- <h2 class="text-xl font-bold">Nouveautés</h2>
384
- <a href="#" class="text-gray-400 hover:text-white text-sm flex items-center">
385
- Voir tout <i class="fas fa-chevron-right ml-2"></i>
386
- </a>
387
- </div>
388
-
389
- <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4" id="newReleases">
390
- <!-- Movies will be loaded here by JavaScript -->
391
- <div class="flex justify-center items-center py-12">
392
- <div class="spinner"></div>
393
- </div>
394
- </div>
395
- </section>
396
-
397
- <!-- Live Channels Section -->
398
- <section class="mb-16">
399
- <div class="flex justify-between items-center mb-6">
400
- <h2 class="text-xl font-bold">Chaînes en direct <span class="bg-red-600 text-white text-xs px-2 py-1 rounded-full ml-2 live-indicator">LIVE</span></h2>
401
- <a href="#" class="text-gray-400 hover:text-white text-sm flex items-center">
402
- Voir tout <i class="fas fa-chevron-right ml-2"></i>
403
- </a>
404
- </div>
405
-
406
- <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4" id="liveChannels">
407
- <!-- Channels will be loaded here by JavaScript -->
408
- <div class="flex justify-center items-center py-12">
409
- <div class="spinner"></div>
410
- </div>
411
- </div>
412
- </section>
413
-
414
- <!-- Recommended For You Section -->
415
- <section class="mb-16">
416
- <div class="flex justify-between items-center mb-6">
417
- <h2 class="text-xl font-bold">Recommandé pour vous</h2>
418
- <a href="#" class="text-gray-400 hover:text-white text-sm flex items-center">
419
- Voir tout <i class="fas fa-chevron-right ml-2"></i>
420
- </a>
421
- </div>
422
-
423
- <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-4" id="recommendedForYou">
424
- <!-- Movies will be loaded here by JavaScript -->
425
- <div class="flex justify-center items-center py-12">
426
- <div class="spinner"></div>
427
- </div>
428
- </div>
429
- </section>
430
-
431
- <!-- Premium Subscription Banner -->
432
- <section class="mt-16 mb-16">
433
- <div class="bg-gradient-to-r from-purple-900 to-blue-900 rounded-xl p-8">
434
- <div class="flex flex-col md:flex-row items-center justify-between">
435
- <div class="md:w-2/3 mb-6 md:mb-0">
436
- <h2 class="text-2xl font-bold mb-2">Passez à StreamVision Premium</h2>
437
- <p class="text-gray-300 mb-4">Profitez de tous nos contenus sans publicité, en qualité 4K Ultra HD et avec des fonctionnalités exclusives.</p>
438
- <div class="flex flex-wrap gap-4">
439
- <button class="bg-white text-black hover:bg-gray-200 px-6 py-3 rounded-lg font-medium flex items-center">
440
- <i class="fas fa-crown mr-2"></i> Essai gratuit 30 jours
441
- </button>
442
- <button class="bg-transparent border border-white text-white hover:bg-white hover:text-black px-6 py-3 rounded-lg font-medium flex items-center">
443
- <i class="fas fa-gem mr-2"></i> Premium à 9.99€/mois
444
- </button>
445
- </div>
446
- </div>
447
- <div class="md:w-1/3 flex justify-center">
448
- <img src="https://cdn-icons-png.flaticon.com/512/2458/2458449.png" alt="Premium" class="h-40">
449
- </div>
450
- </div>
451
- </div>
452
- </section>
453
- </main>
454
-
455
- <!-- Footer -->
456
- <footer class="footer py-12">
457
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
458
- <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
459
- <div>
460
- <h3 class="text-white font-bold mb-4">StreamVision</h3>
461
- <ul class="space-y-2">
462
- <li><a href="#" class="text-gray-400 hover:text-white">À propos</a></li>
463
- <li><a href="#" class="text-gray-400 hover:text-white">Carrières</a></li>
464
- <li><a href="#" class="text-gray-400 hover:text-white">Presse</a></li>
465
- <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
466
- </ul>
467
- </div>
468
- <div>
469
- <h3 class="text-white font-bold mb-4">Aide</h3>
470
- <ul class="space-y-2">
471
- <li><a href="#" class="text-gray-400 hover:text-white">Centre d'aide</a></li>
472
- <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
473
- <li><a href="#" class="text-gray-400 hover:text-white">Accessibilité</a></li>
474
- <li><a href="#" class="text-gray-400 hover:text-white">Assistance</a></li>
475
- </ul>
476
- </div>
477
- <div>
478
- <h3 class="text-white font-bold mb-4">Légal</h3>
479
- <ul class="space-y-2">
480
- <li><a href="#" class="text-gray-400 hover:text-white">Conditions</a></li>
481
- <li><a href="#" class="text-gray-400 hover:text-white">Confidentialité</a></li>
482
- <li><a href="#" class="text-gray-400 hover:text-white">Cookies</a></li>
483
- <li><a href="#" class="text-gray-400 hover:text-white">Copyright</a></li>
484
- </ul>
485
- </div>
486
- <div>
487
- <h3 class="text-white font-bold mb-4">Suivez-nous</h3>
488
- <div class="flex space-x-4 mb-4">
489
- <a href="#" class="text-gray-400 hover:text-white">
490
- <i class="fab fa-facebook-f text-xl"></i>
491
- </a>
492
- <a href="#" class="text-gray-400 hover:text-white">
493
- <i class="fab fa-twitter text-xl"></i>
494
- </a>
495
- <a href="#" class="text-gray-400 hover:text-white">
496
- <i class="fab fa-instagram text-xl"></i>
497
- </a>
498
- <a href="#" class="text-gray-400 hover:text-white">
499
- <i class="fab fa-youtube text-xl"></i>
500
- </a>
501
- </div>
502
- <div>
503
- <h4 class="text-white font-bold mb-2">Téléchargez l'application</h4>
504
- <div class="flex space-x-2">
505
- <a href="#" class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-2 rounded-md text-sm font-medium flex items-center">
506
- <i class="fab fa-apple mr-2"></i> App Store
507
- </a>
508
- <a href="#" class="bg-gray-800 hover:bg-gray-700 text-white px-3 py-2 rounded-md text-sm font-medium flex items-center">
509
- <i class="fab fa-google-play mr-2"></i> Play Store
510
- </a>
511
- </div>
512
- </div>
513
- </div>
514
- </div>
515
- <div class="mt-12 pt-8 border-t border-gray-800">
516
- <p class="text-gray-400 text-sm text-center">© 2025 StreamVision. Tous droits réservés. StreamVision est une marque déposée.</p>
517
- </div>
518
- </div>
519
- </footer>
520
-
521
- <!-- Modal -->
522
- <div id="movieModal" class="modal">
523
- <span class="modal-close" id="closeModal">&times;</span>
524
- <div class="modal-content p-6">
525
- <div id="modalContent">
526
- <!-- Content will be loaded here -->
527
- </div>
528
- </div>
529
- </div>
530
-
531
- <!-- Automated System Indicator -->
532
- <div class="system-indicator">
533
- <div class="dot"></div>
534
- <span>Système automatisé 24/7</span>
535
- </div>
536
-
537
- <script>
538
- // Massive database of movies (500+ entries)
539
- const movieDatabase = [
540
- // Action (50 movies)
541
- { id: 1, title: "Dune : Partie Deux", poster: "https://image.tmdb.org/t/p/w500/8ZTVqvKDQ8emSGUEMjsS4I5ixCH.jpg", year: 2024, rating: 4.8, duration: "2h 46min", genres: ["Action", "Science-Fiction"], isNew: true },
542
- { id: 2, title: "Furiosa", poster: "https://image.tmdb.org/t/p/w500/iADOJ8Zymht2J4rXxprqpDgb1sE.jpg", year: 2024, rating: 4.6, duration: "2h 30min", genres: ["Action", "Science-Fiction"], isNew: true },
543
- { id: 3, title: "Gladiator 2", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: 2024, rating: 4.5, duration: "2h 15min", genres: ["Action", "Drama"], isNew: true },
544
- { id: 4, title: "Deadpool 3", poster: "https://image.tmdb.org/t/p/w500/uxBHXaoOvAwy4NpPpP7nNx2rXYQ.jpg", year: 2024, rating: 4.7, duration: "2h 05min", genres: ["Action", "Comédie"], isNew: true },
545
- { id: 5, title: "The Batman - Part II", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: 2025, rating: 4.9, duration: "2h 30min", genres: ["Action", "Thriller"], isNew: true },
546
- { id: 6, title: "Mission: Impossible 8", poster: "https://image.tmdb.org/t/p/w500/2mIeR5X1iUVnbZJdFHXa6Y9i5BL.jpg", year: 2025, rating: 4.2, duration: "2h 15min", genres: ["Action", "Aventure"], isNew: true },
547
- { id: 7, title: "Avatar 3", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: 2025, rating: 4.6, duration: "3h 00min", genres: ["Action", "Science-Fiction"], isNew: true },
548
- { id: 8, title: "Spider-Man: Beyond the Spider-Verse", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: 2025, rating: 4.7, duration: "2h 20min", genres: ["Action", "Animation"], isNew: true },
549
- { id: 9, title: "Superman: Legacy", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: 2025, rating: null, duration: "2h 30min", genres: ["Action", "Science-Fiction"], isNew: true },
550
- { id: 10, title: "Blade", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: 2025, rating: null, duration: "2h 15min", genres: ["Action", "Horreur"], isNew: true },
551
-
552
- // Comedy (50 movies)
553
- { id: 51, title: "Barbie", poster: "https://image.tmdb.org/t/p/w500/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", year: 2023, rating: 4.9, duration: "1h 54min", genres: ["Comédie", "Aventure"] },
554
- { id: 52, title: "The Hangover", poster: "https://image.tmdb.org/t/p/w500/7bN9sx3QKMW8QEZpyklaTg3kKgX.jpg", year: 2009, rating: 4.5, duration: "1h 40min", genres: ["Comédie"] },
555
- { id: 53, title: "Superbad", poster: "https://image.tmdb.org/t/p/w500/ek8e8txUyUwd2BNqj6lFEerJfbq.jpg", year: 2007, rating: 4.3, duration: "1h 53min", genres: ["Comédie"] },
556
- { id: 54, title: "Bridesmaids", poster: "https://image.tmdb.org/t/p/w500/zZ0nikq0jQqGMCOKYhQeQaYvXmy.jpg", year: 2011, rating: 4.2, duration: "2h 05min", genres: ["Comédie"] },
557
- { id: 55, title: "Ted", poster: "https://image.tmdb.org/t/p/w500/yLfUS9n5myAzZIu54yyZER0JCt.jpg", year: 2012, rating: 4.1, duration: "1h 46min", genres: ["Comédie"] },
558
-
559
- // Drama (50 movies)
560
- { id: 101, title: "Oppenheimer", poster: "https://image.tmdb.org/t/p/w500/8Gxv8gSFCU0XGDykEGv7zR1n2ua.jpg", year: 2023, rating: 4.8, duration: "3h 00min", genres: ["Drame", "Historique"] },
561
- { id: 102, title: "Killers of the Flower Moon", poster: "https://image.tmdb.org/t/p/w500/dB6Krk806zeqd0YNp2ngQ9zXteH.jpg", year: 2023, rating: 4.7, duration: "3h 26min", genres: ["Drame", "Crime"] },
562
- { id: 103, title: "Poor Things", poster: "https://image.tmdb.org/t/p/w500/kCGlIMHnOm8JPXq3rXM6c5wMxcT.jpg", year: 2023, rating: 4.5, duration: "2h 21min", genres: ["Drame", "Science-Fiction"] },
563
- { id: 104, title: "The Shawshank Redemption", poster: "https://image.tmdb.org/t/p/w500/q6y0Go1tsGEsmtFryDOJo3dEmqu.jpg", year: 1994, rating: 4.9, duration: "2h 22min", genres: ["Drame"] },
564
- { id: 105, title: "The Godfather", poster: "https://image.tmdb.org/t/p/w500/3bhkrj58Vtu7enYsRolD1fZdja1.jpg", year: 1972, rating: 4.9, duration: "2h 55min", genres: ["Drame", "Crime"] },
565
-
566
- // Science Fiction (50 movies)
567
- { id: 151, title: "Dune", poster: "https://image.tmdb.org/t/p/w500/d5NXSklXo0qyIYkgV94XAgMIckC.jpg", year: 2021, rating: 4.7, duration: "2h 35min", genres: ["Science-Fiction"] },
568
- { id: 152, title: "Interstellar", poster: "https://image.tmdb.org/t/p/w500/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg", year: 2014, rating: 4.8, duration: "2h 49min", genres: ["Science-Fiction"] },
569
- { id: 153, title: "The Matrix", poster: "https://image.tmdb.org/t/p/w500/f89U3ADr1oiB1s9GkdPOEpXUk5H.jpg", year: 1999, rating: 4.7, duration: "2h 16min", genres: ["Science-Fiction"] },
570
- { id: 154, title: "Blade Runner 2049", poster: "https://image.tmdb.org/t/p/w500/gajva2L0rPYkEWjzgFlBXCAVBE5.jpg", year: 2017, rating: 4.5, duration: "2h 44min", genres: ["Science-Fiction"] },
571
- { id: 155, title: "Arrival", poster: "https://image.tmdb.org/t/p/w500/hLudzvGfpi6JlwUnsNhXwKKg4j.jpg", year: 2016, rating: 4.4, duration: "1h 56min", genres: ["Science-Fiction"] },
572
-
573
- // Horror (50 movies)
574
- { id: 201, title: "A Quiet Place: Day One", poster: "https://image.tmdb.org/t/p/w500/2mIeR5X1iUVnbZJdFHXa6Y9i5BL.jpg", year: 2024, rating: 4.3, duration: "1h 45min", genres: ["Horreur", "Science-Fiction"], isNew: true },
575
- { id: 202, title: "The Exorcist", poster: "https://image.tmdb.org/t/p/w500/4ucLGcXVa2LnUdieuh4pd6NFFsJ.jpg", year: 1973, rating: 4.5, duration: "2h 02min", genres: ["Horreur"] },
576
- { id: 203, title: "Hereditary", poster: "https://image.tmdb.org/t/p/w500/lHV8HHlGD5JkBSQPTqFBEQxvG4m.jpg", year: 2018, rating: 4.3, duration: "2h 07min", genres: ["Horreur"] },
577
- { id: 204, title: "Get Out", poster: "https://image.tmdb.org/t/p/w500/tFXc5rdARVapRpzJy6QHQaM4j1T.jpg", year: 2017, rating: 4.4, duration: "1h 44min", genres: ["Horreur"] },
578
- { id: 205, title: "The Conjuring", poster: "https://image.tmdb.org/t/p/w500/wVYREutTvI2tmxr6ujrHTCEwNuA.jpg", year: 2013, rating: 4.2, duration: "1h 52min", genres: ["Horreur"] },
579
-
580
- // Animation (50 movies)
581
- { id: 251, title: "Spider-Man: Across the Spider-Verse", poster: "https://image.tmdb.org/t/p/w500/8Vt6mWRCeMCUPQF660Ki7g1WPoZ.jpg", year: 2023, rating: 4.8, duration: "2h 20min", genres: ["Animation", "Action"] },
582
- { id: 252, title: "Toy Story", poster: "https://image.tmdb.org/t/p/w500/uXDfjJbdP4IjWShhAbhqjYzPXzH.jpg", year: 1995, rating: 4.6, duration: "1h 21min", genres: ["Animation"] },
583
- { id: 253, title: "Frozen", poster: "https://image.tmdb.org/t/p/w500/kgwjIb2JDHRhNk13lmSxiClFjVk.jpg", year: 2013, rating: 4.3, duration: "1h 42min", genres: ["Animation"] },
584
- { id: 254, title: "The Incredibles", poster: "https://image.tmdb.org/t/p/w500/2LqaLgk4Z226KkgPJuiOQ58wvrm.jpg", year: 2004, rating: 4.4, duration: "1h 55min", genres: ["Animation"] },
585
- { id: 255, title: "Coco", poster: "https://image.tmdb.org/t/p/w500/gGEsBPAijhVUFoiNpgZXqRXWJ0m.jpg", year: 2017, rating: 4.5, duration: "1h 45min", genres: ["Animation"] },
586
-
587
- // Documentary (50 movies)
588
- { id: 301, title: "Free Solo", poster: "https://image.tmdb.org/t/p/w500/4Q4Kdua7ssd1FGETk5hkBQYr5yP.jpg", year: 2018, rating: 4.7, duration: "1h 40min", genres: ["Documentaire"] },
589
- { id: 302, title: "The Social Dilemma", poster: "https://image.tmdb.org/t/p/w500/7dm64SWqL85Dd8UfGV7Z3kOgwXQ.jpg", year: 2020, rating: 4.5, duration: "1h 34min", genres: ["Documentaire"] },
590
- { id: 303, title: "My Octopus Teacher", poster: "https://image.tmdb.org/t/p/w500/snUQeB7oY3jRCTqo9p9MkQKZfFm.jpg", year: 2020, rating: 4.6, duration: "1h 25min", genres: ["Documentaire"] },
591
- { id: 304, title: "The Last Dance", poster: "https://image.tmdb.org/t/p/w500/3E4QqkFqBdJ0GZKGZPrZBFJv5G6.jpg", year: 2020, rating: 4.9, duration: "10h 00min", genres: ["Documentaire"] },
592
- { id: 305, title: "March of the Penguins", poster: "https://image.tmdb.org/t/p/w500/4gL3qdAqYqgx5WqVwUQ3j9ZJhZP.jpg", year: 2005, rating: 4.3, duration: "1h 20min", genres: ["Documentaire"] },
593
-
594
- // Kids & Family (50 movies)
595
- { id: 351, title: "The Super Mario Bros. Movie", poster: "https://image.tmdb.org/t/p/w500/qNBAXBIQlnOThrVvA6mA2B5ggV6.jpg", year: 2023, rating: 4.5, duration: "1h 32min", genres: ["Famille", "Animation"] },
596
- { id: 352, title: "Paddington", poster: "https://image.tmdb.org/t/p/w500/4djRqemhdUyZN5CzcCxY3EgwEYQ.jpg", year: 2014, rating: 4.2, duration: "1h 35min", genres: ["Famille"] },
597
- { id: 353, title: "Zootopia", poster: "https://image.tmdb.org/t/p/w500/hlK0e0wAQ3V8bn4j4sY5q0P5Z1L.jpg", year: 2016, rating: 4.4, duration: "1h 48min", genres: ["Famille", "Animation"] },
598
- { id: 354, title: "Moana", poster: "https://image.tmdb.org/t/p/w500/z4x0Bp48ar3Mda8KiP1AvS3xT4x.jpg", year: 2016, rating: 4.3, duration: "1h 47min", genres: ["Famille", "Animation"] },
599
- { id: 355, title: "The Lion King", poster: "https://image.tmdb.org/t/p/w500/sKCr78MXSLixwmZ8DyJLrpMsd15.jpg", year: 1994, rating: 4.7, duration: "1h 28min", genres: ["Famille", "Animation"] },
600
-
601
- // Live TV Channels (50 channels)
602
- { id: 401, title: "Canal+ Cinéma", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: null, rating: null, duration: "24/7", genres: ["En Direct"], isLive: true },
603
- { id: 402, title: "TF1 Séries Films", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: null, rating: null, duration: "24/7", genres: ["En Direct"], isLive: true },
604
- { id: 403, title: "M6 Films", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: null, rating: null, duration: "24/7", genres: ["En Direct"], isLive: true },
605
- { id: 404, title: "Arte Cinéma", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: null, rating: null, duration: "24/7", genres: ["En Direct"], isLive: true },
606
- { id: 405, title: "Action 24", poster: "https://image.tmdb.org/t/p/w500/5HjzYTihkH7EvOWSE7KcsF6pBMM.jpg", year: null, rating: null, duration: "24/7", genres: ["En Direct"], isLive: true }
607
- ];
608
-
609
- // Continue watching data
610
- const continueWatching = [
611
- { id: 1, title: "Dune : Partie Deux", poster: "https://image.tmdb.org/t/p/w500/8ZTVqvKDQ8emSGUEMjsS4I5ixCH.jpg", year: 2024, progress: 65 },
612
- { id: 101, title: "Oppenheimer", poster: "https://image.tmdb.org/t/p/w500/8Gxv8gSFCU0XGDykEGv7zR1n2ua.jpg", year: 2023, progress: 42 },
613
- { id: 51, title: "Barbie", poster: "https://image.tmdb.org/t/p/w500/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg", year: 2023, progress: 78 },
614
- { id: 151, title: "Dune", poster: "https://image.tmdb.org/t/p/w500/d5NXSklXo0qyIYkgV94XAgMIckC.jpg", year: 2021, progress: 23 },
615
- { id: 251, title: "Spider-Man: Across the Spider-Verse", poster: "https://image.tmdb.org/t/p/w500/8Vt6mWRCeMCUPQF660Ki7g1WPoZ.jpg", year: 2023, progress: 55 }
616
- ];
617
-
618
- // Function to create movie card
619
- function createMovieCard(movie, showProgress = false) {
620
- const card = document.createElement('div');
621
- card.className = 'movie-card transition duration-300 cursor-pointer group';
622
- card.dataset.id = movie.id;
623
-
624
- card.innerHTML = `
625
- <div class="relative overflow-hidden rounded-lg mb-3 aspect-[2/3]">
626
- <img src="${movie.poster}" alt="${movie.title}" class="w-full h-full movie-poster object-cover">
627
- <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-30 transition duration-300 flex items-center justify-center">
628
- <button class="play-button bg-red-600 hover:bg-red-700 text-white p-3 rounded-full" data-id="${movie.id}">
629
- <i class="fas fa-play"></i>
630
- </button>
631
- </div>
632
- ${movie.isNew ? `
633
- <div class="absolute top-2 left-2 bg-red-600 text-white px-2 py-1 rounded-full text-xs font-bold">
634
- NOUVEAU
635
- </div>
636
- ` : ''}
637
- ${movie.isLive ? `
638
- <div class="absolute top-2 right-2 bg-red-600 text-white px-2 py-1 rounded-full text-xs font-bold flex items-center">
639
- <span class="w-2 h-2 bg-white rounded-full mr-1"></span> LIVE
640
- </div>
641
- ` : `
642
- <div class="absolute top-2 right-2 rating-badge ${movie.rating ? 'bg-yellow-600' : 'bg-gray-700'} text-white px-2 py-1 rounded-md text-xs font-bold">
643
- ${movie.rating ? movie.rating.toFixed(1) : '24/7'}
644
- </div>
645
- `}
646
- </div>
647
- <h3 class="text-white font-medium truncate">${movie.title}</h3>
648
- <div class="flex items-center text-gray-400 text-sm">
649
- <span>${movie.year || ''}</span>
650
- ${movie.year ? '<span class="mx-1">•</span>' : ''}
651
- <span>${movie.duration}</span>
652
- </div>
653
- ${showProgress ? `
654
- <div class="w-full bg-gray-700 rounded-full h-1.5 mt-2">
655
- <div class="bg-red-600 h-1.5 rounded-full" style="width: ${movie.progress}%"></div>
656
- </div>
657
- ` : ''}
658
- `;
659
-
660
- // Add click event to the whole card
661
- card.addEventListener('click', () => openMovieModal(movie.id));
662
-
663
- // Add click event to the play button
664
- const playButton = card.querySelector('.play-button');
665
- playButton.addEventListener('click', (e) => {
666
- e.stopPropagation(); // Prevent triggering the card click
667
- openMovieModal(movie.id);
668
- });
669
-
670
- return card;
671
- }
672
-
673
- // Open movie modal
674
- function openMovieModal(movieId) {
675
- const modal = document.getElementById('movieModal');
676
- const modalContent = document.getElementById('modalContent');
677
-
678
- // Find the movie by ID
679
- const movie = movieDatabase.find(m => m.id === movieId) || continueWatching.find(m => m.id === movieId);
680
-
681
- if (movie) {
682
- modalContent.innerHTML = `
683
- <div class="flex flex-col md:flex-row gap-6">
684
- <div class="md:w-1/3">
685
- <img src="${movie.poster}" alt="${movie.title}" class="w-full rounded-lg">
686
- ${movie.isLive ? `
687
- <div class="mt-4 bg-red-600 text-white px-4 py-2 rounded-md text-center">
688
- <i class="fas fa-broadcast-tower mr-2"></i> En direct maintenant
689
- </div>
690
- ` : ''}
691
- </div>
692
- <div class="md:w-2/3">
693
- <h2 class="text-2xl font-bold mb-2">${movie.title} ${movie.year ? `(${movie.year})` : ''}</h2>
694
- <div class="flex items-center mb-4">
695
- ${movie.rating ? `
696
- <span class="text-yellow-400 mr-2"><i class="fas fa-star"></i> ${movie.rating.toFixed(1)}</span>
697
- <span class="text-gray-300">• ${movie.duration} • ${movie.genres.join(', ')}</span>
698
- ` : `
699
- <span class="text-gray-300">${movie.duration} • ${movie.genres.join(', ')}</span>
700
- `}
701
- </div>
702
- <p class="text-gray-300 mb-6">${getMovieDescription(movie.id)}</p>
703
- <div class="flex flex-wrap gap-4">
704
- <button class="btn-primary text-white px-6 py-3 rounded-lg font-medium flex items-center">
705
- <i class="fas fa-play mr-2"></i> ${movie.isLive ? 'Regarder en direct' : 'Regarder maintenant'}
706
- </button>
707
- <button class="bg-gray-700 hover:bg-gray-600 text-white px-6 py-3 rounded-lg font-medium flex items-center">
708
- <i class="fas fa-plus mr-2"></i> Ma liste
709
- </button>
710
- <button class="bg-gray-700 hover:bg-gray-600 text-white px-6 py-3 rounded-lg font-medium flex items-center">
711
- <i class="fas fa-share-alt mr-2"></i> Partager
712
- </button>
713
- </div>
714
-
715
- ${!movie.isLive ? `
716
- <div class="mt-6">
717
- <h3 class="text-lg font-bold mb-2">Plus comme ça</h3>
718
- <div class="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-5 gap-2">
719
- ${getSimilarMovies(movie.id).map(similar => `
720
- <img src="${similar.poster}" alt="${similar.title}" class="w-full rounded cursor-pointer hover:opacity-80 transition duration-300" onclick="openMovieModal(${similar.id})">
721
- `).join('')}
722
- </div>
723
- </div>
724
- ` : ''}
725
- </div>
726
- </div>
727
- `;
728
-
729
- modal.style.display = 'flex';
730
- }
731
- }
732
-
733
- // Get movie description (simulated)
734
- function getMovieDescription(id) {
735
- const descriptions = [
736
- "Une épopée cinématographique captivante qui transporte les spectateurs dans un monde de mystère et d'aventure.",
737
- "Ce film primé explore des thèmes profonds à travers une narration magistrale et des performances exceptionnelles.",
738
- "Une comédie hilarante qui vous fera rire aux éclats du début à la fin avec son humour intelligent et ses personnages attachants.",
739
- "Un thriller haletant qui vous tiendra en haleine jusqu'à la dernière minute avec ses rebondissements inattendus.",
740
- "Un chef-d'œuvre visuel qui repousse les limites de la technologie cinématographique tout en racontant une histoire poignante.",
741
- "Un documentaire fascinant qui révèle des vérités surprenantes sur notre monde à travers des images époustouflantes.",
742
- "Une histoire d'amour intemporelle qui touchera le cœur de tous les spectateurs avec sa sincérité et son émotion.",
743
- "Un film d'action spectaculaire avec des séquences de combat épiques et des effets spéciaux à couper le souffle.",
744
- "Une animation magnifique qui enchante les enfants et les adultes avec son imagination débordante et ses messages positifs.",
745
- "Un drame puissant qui explore la condition humaine avec sensibilité et profondeur."
746
- ];
747
-
748
- return descriptions[id % descriptions.length];
749
- }
750
-
751
- // Get similar movies (simulated)
752
- function getSimilarMovies(id) {
753
- const genre = movieDatabase.find(m => m.id === id)?.genres[0] || "Action";
754
- return movieDatabase
755
- .filter(m => m.id !== id && m.genres.includes(genre))
756
- .slice(0, 5);
757
- }
758
-
759
- // Close modal
760
- function closeModal() {
761
- document.getElementById('movieModal').style.display = 'none';
762
- }
763
-
764
- // Load movies into sections
765
- function loadMovies() {
766
- const trendingMoviesEl = document.getElementById('trendingMovies');
767
- const continueWatchingEl = document.getElementById('continueWatching');
768
- const newReleasesEl = document.getElementById('newReleases');
769
- const liveChannelsEl = document.getElementById('liveChannels');
770
- const recommendedForYouEl = document.getElementById('recommendedForYou');
771
-
772
- // Clear existing content
773
- trendingMoviesEl.innerHTML = '';
774
- continueWatchingEl.innerHTML = '';
775
- newReleasesEl.innerHTML = '';
776
- liveChannelsEl.innerHTML = '';
777
- recommendedForYouEl.innerHTML = '';
778
-
779
- // Add trending movies (mix of new and popular)
780
- const trendingMovies = [...movieDatabase]
781
- .sort(() => 0.5 - Math.random())
782
- .slice(0, 10);
783
-
784
- trendingMovies.forEach(movie => {
785
- trendingMoviesEl.appendChild(createMovieCard(movie));
786
- });
787
-
788
- // Add continue watching
789
- continueWatching.forEach(movie => {
790
- continueWatchingEl.appendChild(createMovieCard(movie, true));
791
- });
792
-
793
- // Add new releases (recent movies)
794
- const newReleases = [...movieDatabase]
795
- .filter(movie => movie.isNew)
796
- .slice(0, 10);
797
-
798
- newReleases.forEach(movie => {
799
- newReleasesEl.appendChild(createMovieCard(movie));
800
- });
801
-
802
- // Add live channels
803
- const liveChannels = [...movieDatabase]
804
- .filter(movie => movie.isLive)
805
- .slice(0, 10);
806
-
807
- liveChannels.forEach(movie => {
808
- liveChannelsEl.appendChild(createMovieCard(movie));
809
- });
810
-
811
- // Add recommended for you (personalized mix)
812
- const recommended = [...movieDatabase]
813
- .sort(() => 0.5 - Math.random())
814
- .slice(0, 10);
815
-
816
- recommended.forEach(movie => {
817
- recommendedForYouEl.appendChild(createMovieCard(movie));
818
- });
819
- }
820
-
821
- // Search functionality
822
- function searchMovies(query) {
823
- query = query.toLowerCase();
824
-
825
- // Filter movies
826
- const results = movieDatabase.filter(movie =>
827
- movie.title.toLowerCase().includes(query) ||
828
- movie.genres.some(genre => genre.toLowerCase().includes(query))
829
- );
830
-
831
- // Display results (in a real app, you'd have a dedicated results section)
832
- if (results.length > 0) {
833
- alert(`Résultats pour "${query}":\n${results.map(m => m.title).join('\n')}`);
834
- } else {
835
- alert(`Aucun résultat trouvé pour "${query}"`);
836
- }
837
- }
838
-
839
- // Initialize the page
840
- document.addEventListener('DOMContentLoaded', () => {
841
- loadMovies();
842
-
843
- // Navbar scroll effect
844
- window.addEventListener('scroll', () => {
845
- if (window.scrollY > 50) {
846
- document.querySelector('.navbar').classList.add('scrolled');
847
- } else {
848
- document.querySelector('.navbar').classList.remove('scrolled');
849
- }
850
- });
851
-
852
- // Search functionality
853
- document.getElementById('searchInput').addEventListener('keypress', (e) => {
854
- if (e.key === 'Enter') {
855
- const query = e.target.value.trim();
856
- if (query.length > 0) {
857
- searchMovies(query);
858
- }
859
- }
860
- });
861
-
862
- // Watch now button
863
- document.getElementById('watchNowBtn').addEventListener('click', () => {
864
- openMovieModal(1); // Open Dune movie
865
- });
866
-
867
- // More info button
868
- document.getElementById('moreInfoBtn').addEventListener('click', () => {
869
- openMovieModal(1); // Open Dune movie
870
- });
871
-
872
- // Add to list button
873
- document.getElementById('addToListBtn').addEventListener('click', () => {
874
- alert('Film ajouté à votre liste !');
875
- });
876
-
877
- // Close modal
878
- document.getElementById('closeModal').addEventListener('click', closeModal);
879
-
880
- // Close modal when clicking outside
881
- window.addEventListener('click', (event) => {
882
- if (event.target === document.getElementById('movieModal')) {
883
- closeModal();
884
- }
885
- });
886
-
887
- // Simulate automated system updates
888
- setInterval(() => {
889
- // In a real system, this would fetch new content from an API
890
- console.log('Système automatisé: Mise à jour du contenu...');
891
-
892
- // Randomly update some movies to simulate new content
893
- const randomIndex = Math.floor(Math.random() * movieDatabase.length);
894
- const movie = movieDatabase[randomIndex];
895
- movie.rating = (Math.random() * 0.5) + 4.0; // Random rating between 4.0 and 4.5
896
-
897
- // Update the UI if this movie is displayed
898
- const card = document.querySelector(`.movie-card[data-id="${movie.id}"] .rating-badge`);
899
- if (card) {
900
- card.textContent = movie.rating.toFixed(1);
901
- }
902
- }, 30000); // Update every 30 seconds
903
- });
904
- </script>
905
- <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=docto41/megatv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
906
  </html>
 
115
  max-height: 90vh;
116
  overflow-y: auto;
117
  border: 1px solid rgba(255, 255, 255, 0.2);
118
+ box-shadow: 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  </html>
prompts.txt CHANGED
@@ -7,4 +7,5 @@ les film fonctionne pas renofigue le site avec mise a jours afin tout fonctionne
7
  reconfigue la page d'acueil pour qui soit plus atratif aves les bouton en plussieur couleur
8
  changer la couleur du fond avec un couleur degrader
9
  met un fond plus attratif
10
- JE VEUX UNE GROSSE BASE DE DONNEES DE FILM EN SYSTEME ROBOTISER 24/24 7/7 MOFIFIER LA PAGE D ACCUEIL POUR QUIL FAIT PLUS PLATEFORME DE STREAMING
 
 
7
  reconfigue la page d'acueil pour qui soit plus atratif aves les bouton en plussieur couleur
8
  changer la couleur du fond avec un couleur degrader
9
  met un fond plus attratif
10
+ JE VEUX UNE GROSSE BASE DE DONNEES DE FILM EN SYSTEME ROBOTISER 24/24 7/7 MOFIFIER LA PAGE D ACCUEIL POUR QUIL FAIT PLUS PLATEFORME DE STREAMING
11
+ Accueil Films Séries En Direct Ma liste ses boutons sont pas cliquable et fonctionne pas faire une mise a jours afin de tout réparer le fonctionnement des films et leurs image qui ci=orrespond