Spaces:
Running
Running
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Streaming Instant Pro</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| .film-card:hover { transform: scale(1.03); transition: all 0.3s ease; } | |
| .loading-bar { animation: load 10s linear forwards; } | |
| @keyframes load { 0% { width: 0%; } 100% { width: 100%; } } | |
| .blur-effect { filter: blur(5px); transition: filter 0.5s ease; } | |
| .blur-effect:hover { filter: blur(0); } | |
| </style> | |
| </head> | |
| <body class="bg-gray-900 text-white min-h-screen"> | |
| <div class="container mx-auto px-4 py-10"> | |
| <!-- Compteur de création --> | |
| <div class="text-center mb-12"> | |
| <h1 class="text-5xl font-bold mb-4 bg-gradient-to-r from-red-500 to-purple-600 bg-clip-text text-transparent">Streaming Instant Pro</h1> | |
| <p class="text-xl mb-6">Création automatique de votre plateforme de streaming en 10 secondes</p> | |
| <div class="w-full bg-gray-700 h-3 rounded-full overflow-hidden mb-2"> | |
| <div class="loading-bar h-full bg-gradient-to-r from-purple-600 to-red-500"></div> | |
| </div> | |
| <div class="flex justify-between text-sm text-gray-400"> | |
| <span>Initialisation...</span> | |
| <span id="counter">10s</span> | |
| </div> | |
| <div class="mt-6 grid grid-cols-1 md:grid-cols-3 gap-4 text-left"> | |
| <div class="bg-gray-800 p-4 rounded-lg"> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-8 h-8 bg-green-500 rounded-full flex items-center justify-center mr-3"> | |
| <i class="fas fa-database text-white"></i> | |
| </div> | |
| <h3 class="font-bold">Base de données</h3> | |
| </div> | |
| <p class="text-gray-400 text-sm">Chargement de 478,578 films complets...</p> | |
| </div> | |
| <div class="bg-gray-800 p-4 rounded-lg"> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-8 h-8 bg-blue-500 rounded-full flex items-center justify-center mr-3"> | |
| <i class="fas fa-server text-white"></i> | |
| </div> | |
| <h3 class="font-bold">Serveurs</h3> | |
| </div> | |
| <p class="text-gray-400 text-sm">Configuration de 12 serveurs mondiaux...</p> | |
| </div> | |
| <div class="bg-gray-800 p-4 rounded-lg"> | |
| <div class="flex items-center mb-2"> | |
| <div class="w-8 h-8 bg-purple-500 rounded-full flex items-center justify-center mr-3"> | |
| <i class="fas fa-tv text-white"></i> | |
| </div> | |
| <h3 class="font-bold">Player</h3> | |
| </div> | |
| <p class="text-gray-400 text-sm">Optimisation du lecteur 4K...</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Résultat final --> | |
| <div id="result" class="hidden"> | |
| <div class="bg-gradient-to-br from-gray-800 to-gray-900 rounded-xl p-6 shadow-2xl border border-gray-700"> | |
| <div class="flex flex-col md:flex-row gap-8"> | |
| <div class="md:w-2/5"> | |
| <div class="relative group"> | |
| <img src="https://via.placeholder.com/600x900/1F2937/FFFFFF?text=VOTRE+SITE" alt="Prévisualisation" class="rounded-lg w-full shadow-lg"> | |
| <div class="absolute inset-0 bg-black bg-opacity-70 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300 rounded-lg"> | |
| <button class="bg-red-600 hover:bg-red-700 px-6 py-3 rounded-lg font-bold flex items-center"> | |
| <i class="fas fa-play mr-2"></i> Voir en direct | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-3/5"> | |
| <h2 class="text-4xl font-bold mb-4 bg-gradient-to-r from-red-500 to-purple-600 bg-clip-text text-transparent">Votre site est opérationnel !</h2> | |
| <div class="mb-8"> | |
| <h3 class="text-xl font-semibold mb-3">Statistiques de votre plateforme :</h3> | |
| <div class="grid grid-cols-2 md:grid-cols-3 gap-4"> | |
| <div class="bg-gray-700 p-3 rounded-lg text-center"> | |
| <div class="text-3xl font-bold text-red-500">478,578</div> | |
| <div class="text-sm text-gray-400">Films disponibles</div> | |
| </div> | |
| <div class="bg-gray-700 p-3 rounded-lg text-center"> | |
| <div class="text-3xl font-bold text-purple-500">12</div> | |
| <div class="text-sm text-gray-400">Serveurs mondiaux</div> | |
| </div> | |
| <div class="bg-gray-700 p-3 rounded-lg text-center"> | |
| <div class="text-3xl font-bold text-blue-500">4K</div> | |
| <div class="text-sm text-gray-400">Qualité maximale</div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mb-8"> | |
| <h3 class="text-xl font-semibold mb-3">Fonctionnalités premium :</h3> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> | |
| <div> | |
| <span class="font-medium">Base de données complète</span> | |
| <p class="text-sm text-gray-400">478,578 films avec métadonnées complètes</p> | |
| </div> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> | |
| <div> | |
| <span class="font-medium">Streaming ultra-rapide</span> | |
| <p class="text-sm text-gray-400">Technologie P2P optimisée pour 4K</p> | |
| </div> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> | |
| <div> | |
| <span class="font-medium">Interface personnalisable</span> | |
| <p class="text-sm text-gray-400">Thèmes, logos et couleurs modifiables</p> | |
| </div> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="flex flex-wrap gap-4"> | |
| <button class="bg-red-600 hover:bg-red-700 px-8 py-4 rounded-xl font-bold flex items-center text-lg"> | |
| <i class="fas fa-rocket mr-3"></i> Accéder à l'admin | |
| </button> | |
| <button class="bg-purple-600 hover:bg-purple-700 px-8 py-4 rounded-xl font-bold flex items-center text-lg"> | |
| <i class="fas fa-cog mr-3"></i> Personnaliser | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Aperçu de films --> | |
| <div class="mt-12"> | |
| <h3 class="text-2xl font-bold mb-6">Aperçu de votre catalogue :</h3> | |
| <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4"> | |
| <!-- Films aléatoires --> | |
| <div class="film-card bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition-all duration-300"> | |
| <div class="relative pt-[150%]"> | |
| <img src="https://via.placeholder.com/300x450/333/FFF?text=Film+1" class="absolute top-0 left-0 w-full h-full object-cover blur-effect" alt="Film 1"> | |
| <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity"> | |
| <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full"> | |
| <i class="fas fa-play"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="p-3"> | |
| <h4 class="font-bold truncate">Avengers: Endgame</h4> | |
| <div class="flex justify-between text-sm text-gray-400 mt-1"> | |
| <span>2019</span> | |
| <span class="text-yellow-400"><i class="fas fa-star mr-1"></i>8.4</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="film-card bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition-all duration-300"> | |
| <div class="relative pt-[150%]"> | |
| <img src="https://via.placeholder.com/300x450/333/FFF?text=Film+2" class="absolute top-0 left-0 w-full h-full object-cover blur-effect" alt="Film 2"> | |
| <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity"> | |
| <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full"> | |
| <i class="fas fa-play"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="p-3"> | |
| <h4 class="font-bold truncate">The Dark Knight</h4> | |
| <div class="flex justify-between text-sm text-gray-400 mt-1"> | |
| <span>2008</span> | |
| <span class="text-yellow-400"><i class="fas fa-star mr-1"></i>9.0</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="film-card bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition-all duration-300"> | |
| <div class="relative pt-[150%]"> | |
| <img src="https://via.placeholder.com/300x450/333/FFF?text=Film+3" class="absolute top-0 left-0 w-full h-full object-cover blur-effect" alt="Film 3"> | |
| <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity"> | |
| <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full"> | |
| <i class="fas fa-play"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="p-3"> | |
| <h4 class="font-bold truncate">Inception</h4> | |
| <div class="flex justify-between text-sm text-gray-400 mt-1"> | |
| <span>2010</span> | |
| <span class="text-yellow-400"><i class="fas fa-star mr-1"></i>8.8</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="film-card bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition-all duration-300"> | |
| <div class="relative pt-[150%]"> | |
| <img src="https://via.placeholder.com/300x450/333/FFF?text=Film+4" class="absolute top-0 left-0 w-full h-full object-cover blur-effect" alt="Film 4"> | |
| <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity"> | |
| <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full"> | |
| <i class="fas fa-play"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="p-3"> | |
| <h4 class="font-bold truncate">Pulp Fiction</h4> | |
| <div class="flex justify-between text-sm text-gray-400 mt-1"> | |
| <span>1994</span> | |
| <span class="text-yellow-400"><i class="fas fa-star mr-1"></i>8.9</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="film-card bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition-all duration-300"> | |
| <div class="relative pt-[150%]"> | |
| <img src="https://via.placeholder.com/300x450/333/FFF?text=Film+5" class="absolute top-0 left-0 w-full h-full object-cover blur-effect" alt="Film 5"> | |
| <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity"> | |
| <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full"> | |
| <i class="fas fa-play"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="p-3"> | |
| <h4 class="font-bold truncate">The Shawshank...</h4> | |
| <div class="flex justify-between text-sm text-gray-400 mt-1"> | |
| <span>1994</span> | |
| <span class="text-yellow-400"><i class="fas fa-star mr-1"></i>9.3</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="film-card bg-gray-800 rounded-lg overflow-hidden hover:shadow-lg transition-all duration-300"> | |
| <div class="relative pt-[150%]"> | |
| <img src="https://via.placeholder.com/300x450/333/FFF?text=Film+6" class="absolute top-0 left-0 w-full h-full object-cover blur-effect" alt="Film 6"> | |
| <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity"> | |
| <button class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-full"> | |
| <i class="fas fa-play"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="p-3"> | |
| <h4 class="font-bold truncate">Fight Club</h4> | |
| <div class="flex justify-between text-sm text-gray-400 mt-1"> | |
| <span>1999</span> | |
| <span class="text-yellow-400"><i class="fas fa-star mr-1"></i>8.8</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-8 text-center"> | |
| <button class="bg-gray-700 hover:bg-gray-600 px-6 py-3 rounded-lg font-bold"> | |
| <i class="fas fa-ellipsis-h mr-2"></i> Voir les 478,572 autres films | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| // Compte à rebours | |
| let seconds = 10; | |
| const counter = document.getElementById('counter'); | |
| const countdown = setInterval(() => { | |
| seconds--; | |
| counter.textContent = `${seconds}s`; | |
| if(seconds <= 0) { | |
| clearInterval(countdown); | |
| document.querySelector('.loading-bar').style.animation = 'none'; | |
| document.querySelector('.loading-bar').style.width = '100%'; | |
| document.getElementById('result').classList.remove('hidden'); | |
| // Animation de succès | |
| const successElements = document.querySelectorAll('.bg-green-500, .bg-blue-500, .bg-purple-500'); | |
| successElements.forEach(el => { | |
| el.classList.add('animate-pulse'); | |
| setTimeout(() => el.classList.remove('animate-pulse'), 2000); | |
| }); | |
| } | |
| }, 1000); | |
| // Simulation de chargement des films | |
| setTimeout(() => { | |
| const filmCount = document.querySelector('[data-film-count]'); | |
| let count = 0; | |
| const totalFilms = 478578; | |
| const filmInterval = setInterval(() => { | |
| count += Math.floor(Math.random() * 10000) + 5000; | |
| if(count >= totalFilms) { | |
| count = totalFilms; | |
| clearInterval(filmInterval); | |
| } | |
| filmCount.textContent = count.toLocaleString(); | |
| }, 300); | |
| }, 1500); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=docto41/cin-stream" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |