Spaces:
Running
Running
File size: 32,717 Bytes
93a40e6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 |
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CinéVerse - Streaming Ultra HD</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>
.movie-card:hover .movie-poster {
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.movie-poster {
transition: all 0.3s ease;
}
.rating-circle {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-weight: bold;
position: absolute;
top: -15px;
right: 10px;
z-index: 10;
}
.rating-high {
background-color: #16a34a;
}
.rating-medium {
background-color: #d97706;
}
.rating-low {
background-color: #dc2626;
}
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
}
.platform-icon {
width: 30px;
height: 30px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 6px;
margin-right: 5px;
}
.netflix {
background-color: #e50914;
}
.prime {
background-color: #00a8e1;
}
.disney {
background-color: #113cc7;
}
.search-bar {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.1);
}
.nav-link:hover {
color: #a5b4fc;
}
.genre-tag {
transition: all 0.2s ease;
}
.genre-tag:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dropdown:hover .dropdown-menu {
display: block;
}
</style>
</head>
<body class="bg-gray-900 text-gray-100">
<!-- Header/Navigation -->
<header class="sticky top-0 z-50 bg-gray-900 bg-opacity-90 border-b border-gray-800">
<div class="container mx-auto px-4 py-3 flex items-center justify-between">
<div class="flex items-center space-x-8">
<a href="#" class="flex items-center">
<span class="text-2xl font-bold text-indigo-400">Ciné<span class="text-white">Verse</span></span>
</a>
<nav class="hidden md:flex space-x-6">
<a href="#" class="nav-link text-white hover:text-indigo-300 font-medium">Accueil</a>
<a href="#" class="nav-link text-gray-400 hover:text-white font-medium">Films</a>
<a href="#" class="nav-link text-gray-400 hover:text-white font-medium">Séries</a>
<div class="dropdown relative">
<button class="nav-link text-gray-400 hover:text-white font-medium flex items-center">
Catégories <i class="fas fa-chevron-down ml-1 text-xs"></i>
</button>
<div class="dropdown-menu absolute hidden mt-2 w-48 bg-gray-800 rounded-md shadow-lg z-50">
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-gray-700">Action</a>
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-gray-700">Comédie</a>
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-gray-700">Drame</a>
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-gray-700">Horreur</a>
<a href="#" class="block px-4 py-2 text-gray-300 hover:bg-gray-700">Romance</a>
</div>
</div>
<a href="#" class="nav-link text-gray-400 hover:text-white font-medium">Nouveautés</a>
</nav>
</div>
<div class="flex items-center space-x-4">
<div class="relative hidden md:block">
<input type="text" placeholder="Rechercher un film..." class="search-bar bg-gray-800 text-white px-4 py-2 rounded-full w-64 focus:outline-none focus:ring-2 focus:ring-indigo-500">
<button class="absolute right-3 top-2 text-gray-400">
<i class="fas fa-search"></i>
</button>
</div>
<button class="md:hidden text-gray-400">
<i class="fas fa-search text-xl"></i>
</button>
<a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md font-medium transition duration-300">Connexion</a>
<button class="md:hidden text-gray-400">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient py-16">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Streaming Ultra HD</h1>
<p class="text-xl md:text-2xl mb-8">+962,000 films et séries en VF et VOSTFR en automatique</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#" class="bg-white text-indigo-700 hover:bg-gray-100 font-bold py-3 px-6 rounded-full transition duration-300 flex items-center justify-center">
<i class="fas fa-play mr-2"></i> Commencer à regarder
</a>
<a href="#" class="bg-transparent border-2 border-white text-white hover:bg-white hover:text-indigo-700 font-bold py-3 px-6 rounded-full transition duration-300 flex items-center justify-center">
<i class="fas fa-info-circle mr-2"></i> En savoir plus
</a>
</div>
</div>
</div>
</section>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<!-- Featured Section -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold">À ne pas manquer</h2>
<a href="#" class="text-indigo-400 hover:text-indigo-300 flex items-center">
Voir plus <i class="fas fa-chevron-right ml-1"></i>
</a>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6">
<!-- Featured Movie 1 -->
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Deadpool+3" alt="Deadpool & Wolverine" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-high">
7.6
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Deadpool & Wolverine</h3>
<p class="text-gray-300 text-sm">2024 • Action, Comédie</p>
<div class="flex mt-2">
<span class="platform-icon netflix text-white"><i class="fab fa-netflix"></i></span>
<span class="platform-icon disney text-white"><i class="fab fa-disney"></i></span>
</div>
</div>
</div>
</div>
</div>
<!-- Featured Movie 2 -->
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Gladiator+II" alt="Gladiator II" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-medium">
6.7
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Gladiator II</h3>
<p class="text-gray-300 text-sm">2024 • Action, Drame</p>
<div class="flex mt-2">
<span class="platform-icon prime text-white"><i class="fab fa-amazon"></i></span>
</div>
</div>
</div>
</div>
</div>
<!-- Featured Movie 3 -->
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Mission+Impossible" alt="Mission : Impossible - The Final Reckoning" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-high">
8.8
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Mission : Impossible</h3>
<p class="text-gray-300 text-sm">2025 • Action, Thriller</p>
<div class="flex mt-2">
<span class="platform-icon prime text-white"><i class="fab fa-amazon"></i></span>
</div>
</div>
</div>
</div>
</div>
<!-- Featured Movie 4 -->
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Captain+America" alt="Captain America : Brave New World" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-medium">
6.1
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Captain America</h3>
<p class="text-gray-300 text-sm">2025 • Action, Super-héros</p>
<div class="flex mt-2">
<span class="platform-icon disney text-white"><i class="fab fa-disney"></i></span>
</div>
</div>
</div>
</div>
</div>
<!-- Featured Movie 5 -->
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Sonic+3" alt="Sonic 3, le film" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-high">
7.7
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Sonic 3, le film</h3>
<p class="text-gray-300 text-sm">2024 • Animation, Aventure</p>
<div class="flex mt-2">
<span class="platform-icon prime text-white"><i class="fab fa-amazon"></i></span>
<span class="platform-icon netflix text-white"><i class="fab fa-netflix"></i></span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Categories Section -->
<section class="mb-12">
<h2 class="text-2xl font-bold mb-6">Parcourir par genre</h2>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
<a href="#" class="genre-tag bg-indigo-900 hover:bg-indigo-800 text-white px-4 py-3 rounded-lg font-medium text-center">Action</a>
<a href="#" class="genre-tag bg-yellow-900 hover:bg-yellow-800 text-white px-4 py-3 rounded-lg font-medium text-center">Comédie</a>
<a href="#" class="genre-tag bg-purple-900 hover:bg-purple-800 text-white px-4 py-3 rounded-lg font-medium text-center">Drame</a>
<a href="#" class="genre-tag bg-red-900 hover:bg-red-800 text-white px-4 py-3 rounded-lg font-medium text-center">Horreur</a>
<a href="#" class="genre-tag bg-pink-900 hover:bg-pink-800 text-white px-4 py-3 rounded-lg font-medium text-center">Romance</a>
<a href="#" class="genre-tag bg-gray-800 hover:bg-gray-700 text-white px-4 py-3 rounded-lg font-medium text-center">Science-fiction</a>
</div>
</section>
<!-- New Releases Section -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold">Nouveautés 2024</h2>
<a href="#" class="text-indigo-400 hover:text-indigo-300 flex items-center">
Voir plus <i class="fas fa-chevron-right ml-1"></i>
</a>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6">
<!-- Repeat this block for each movie -->
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Venom+3" alt="Venom : The Last Dance" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-medium">
6.7
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Venom : The Last Dance</h3>
<p class="text-gray-300 text-sm">2024 • Action, Sci-Fi</p>
<div class="flex mt-2">
<span class="platform-icon netflix text-white"><i class="fab fa-netflix"></i></span>
</div>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Kraven" alt="Kraven the Hunter" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-medium">
6.6
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Kraven the Hunter</h3>
<p class="text-gray-300 text-sm">2024 • Action, Aventure</p>
<div class="flex mt-2">
<span class="platform-icon prime text-white"><i class="fab fa-amazon"></i></span>
</div>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Devara" alt="Devara: Partie 1" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-high">
7.0
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Devara: Partie 1</h3>
<p class="text-gray-300 text-sm">2024 • Action, Drame</p>
<div class="flex mt-2">
<span class="platform-icon netflix text-white"><i class="fab fa-netflix"></i></span>
</div>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=The+Siege" alt="The Siege" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-low">
5.4
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">The Siege</h3>
<p class="text-gray-300 text-sm">2023 • Action, Thriller</p>
<div class="flex mt-2">
<span class="platform-icon prime text-white"><i class="fab fa-amazon"></i></span>
</div>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Brave+Citizen" alt="Brave Citizen" class="movie-poster w-full h-auto rounded-lg">
<div class="rating-circle rating-high">
7.1
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Brave Citizen</h3>
<p class="text-gray-300 text-sm">2023 • Action, Drame</p>
<div class="flex mt-2">
<span class="platform-icon netflix text-white"><i class="fab fa-netflix"></i></span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Coming Soon Section -->
<section>
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold">Prochainement</h2>
<a href="#" class="text-indigo-400 hover:text-indigo-300 flex items-center">
Voir plus <i class="fas fa-chevron-right ml-1"></i>
</a>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 gap-6">
<!-- Repeat this block for each movie -->
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Tin+Soldier" alt="Tin Soldier" class="movie-poster w-full h-auto rounded-lg">
<div class="absolute top-2 left-2 bg-yellow-600 text-white text-xs font-bold px-2 py-1 rounded">
Bientôt
</div>
<div class="rating-circle rating-medium">
7.1
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Tin Soldier</h3>
<p class="text-gray-300 text-sm">2025 • Action, Guerre</p>
<p class="text-yellow-400 text-sm mt-1">Sortie: 15 mars 2025</p>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Balle+perdue+3" alt="Balle perdue 3" class="movie-poster w-full h-auto rounded-lg">
<div class="absolute top-2 left-2 bg-yellow-600 text-white text-xs font-bold px-2 py-1 rounded">
Bientôt
</div>
<div class="rating-circle rating-medium">
6.7
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Balle perdue 3</h3>
<p class="text-gray-300 text-sm">2025 • Action, Thriller</p>
<p class="text-yellow-400 text-sm mt-1">Sortie: 12 avril 2025</p>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Thunderbolts" alt="Thunderbolts*" class="movie-poster w-full h-auto rounded-lg">
<div class="absolute top-2 left-2 bg-yellow-600 text-white text-xs font-bold px-2 py-1 rounded">
Bientôt
</div>
<div class="rating-circle rating-high">
7.5
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Thunderbolts*</h3>
<p class="text-gray-300 text-sm">2025 • Action, Super-héros</p>
<p class="text-yellow-400 text-sm mt-1">Sortie: 2 mai 2025</p>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Karate+Kid" alt="Karate Kid: Legends" class="movie-poster w-full h-auto rounded-lg">
<div class="absolute top-2 left-2 bg-yellow-600 text-white text-xs font-bold px-2 py-1 rounded">
Bientôt
</div>
<div class="rating-circle rating-high">
7.3
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Karate Kid: Legends</h3>
<p class="text-gray-300 text-sm">2025 • Action, Drame</p>
<p class="text-yellow-400 text-sm mt-1">Sortie: 20 juin 2025</p>
</div>
</div>
</div>
</div>
<div class="movie-card relative group">
<div class="relative overflow-hidden rounded-lg">
<img src="https://via.placeholder.com/300x450/1f2937/ffffff?text=Diamond+Heist" alt="Voleur de diamant : Le casse commence" class="movie-poster w-full h-auto rounded-lg">
<div class="absolute top-2 left-2 bg-yellow-600 text-white text-xs font-bold px-2 py-1 rounded">
Bientôt
</div>
<div class="rating-circle rating-medium">
6.8
</div>
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Voleur de diamant</h3>
<p class="text-gray-300 text-sm">2025 • Action, Crime</p>
<p class="text-yellow-400 text-sm mt-1">Sortie: 10 juillet 2025</p>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Newsletter Section -->
<section class="bg-gray-800 py-12">
<div class="container mx-auto px-4 text-center">
<h2 class="text-2xl md:text-3xl font-bold mb-4">Restez informé des dernières sorties</h2>
<p class="text-gray-400 mb-6 max-w-2xl mx-auto">Abonnez-vous à notre newsletter pour recevoir les dernières actualités cinéma directement dans votre boîte mail.</p>
<div class="flex flex-col sm:flex-row justify-center max-w-md mx-auto">
<input type="email" placeholder="Votre adresse email" class="bg-gray-700 text-white px-4 py-3 rounded-l-lg sm:rounded-r-none rounded-r-lg sm:w-full focus:outline-none focus:ring-2 focus:ring-indigo-500">
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-r-lg sm:rounded-l-none rounded-l-lg mt-2 sm:mt-0 sm:w-auto transition duration-300">
S'abonner
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12 border-t border-gray-800">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold text-white mb-4 flex items-center">
<span class="text-indigo-400">Ciné</span><span class="text-white">Verse</span>
</h3>
<p class="text-gray-400 mb-4">Votre destination pour découvrir les meilleurs films et où les regarder légalement.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h4 class="text-white font-bold mb-4">Liens utiles</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">À propos</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Politique de confidentialité</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Conditions d'utilisation</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Plateformes</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white flex items-center"><span class="platform-icon netflix mr-2"><i class="fab fa-netflix"></i></span> Netflix</a></li>
<li><a href="#" class="text-gray-400 hover:text-white flex items-center"><span class="platform-icon prime mr-2"><i class="fab fa-amazon"></i></span> Amazon Prime</a></li>
<li><a href="#" class="text-gray-400 hover:text-white flex items-center"><span class="platform-icon disney mr-2"><i class="fab fa-disney"></i></span> Disney+</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Informations</h4>
<p class="text-gray-400 mb-2">Ce site utilise l'API TMDB mais n'est pas affilié à TMDB.</p>
<p class="text-gray-400">Les films présentés sont protégés par des droits d'auteur.</p>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500">
<p>© 2023 CinéVerse. Tous droits réservés.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle functionality would go here
document.addEventListener('DOMContentLoaded', function() {
// You could add JavaScript for mobile menu toggle here
console.log('CinéVerse loaded');
});
</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-verse-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |