Spaces:
Running
Running
File size: 25,266 Bytes
6e55050 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Film Freaks | A24 Movie Reviews</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>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #0f0f0f;
color: #f5f5f5;
}
.gradient-text {
background: linear-gradient(90deg, #ff4d4d, #f9cb28);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.movie-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.movie-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1), 0 10px 10px -5px rgba(255, 255, 255, 0.04);
}
.rating-circle {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
position: absolute;
top: -15px;
right: -15px;
z-index: 10;
}
.glow {
box-shadow: 0 0 15px rgba(249, 203, 40, 0.5);
}
.review-text {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background: linear-gradient(90deg, #ff4d4d, #f9cb28);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.search-bar:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(249, 203, 40, 0.5);
}
</style>
</head>
<body>
<!-- Header/Navbar -->
<header class="sticky top-0 z-50 bg-black bg-opacity-80 backdrop-blur-sm 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-2">
<div class="w-10 h-10 bg-gradient-to-r from-red-500 to-yellow-400 rounded-full flex items-center justify-center">
<i class="fas fa-film text-white text-xl"></i>
</div>
<h1 class="text-2xl font-bold gradient-text">FilmFreaks</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="nav-link text-white hover:text-yellow-400 transition">Home</a>
<a href="#" class="nav-link text-white hover:text-yellow-400 transition">Reviews</a>
<a href="#" class="nav-link text-white hover:text-yellow-400 transition">Rankings</a>
<a href="#" class="nav-link text-white hover:text-yellow-400 transition">News</a>
<a href="#" class="nav-link text-white hover:text-yellow-400 transition">About</a>
</nav>
<div class="flex items-center space-x-4">
<div class="relative">
<input type="text" placeholder="Search A24 films..." class="search-bar bg-gray-800 text-white px-4 py-2 rounded-full w-40 md:w-64 focus:w-64 transition-all duration-300">
<i class="fas fa-search absolute right-3 top-2.5 text-gray-400"></i>
</div>
<button class="md:hidden text-white">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="relative h-96 md:h-screen max-h-screen overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent z-10"></div>
<div class="absolute inset-0 bg-gradient-to-r from-black to-transparent z-10"></div>
<img src="https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80" alt="Movie theater" class="w-full h-full object-cover">
<div class="absolute bottom-0 left-0 z-20 p-8 md:p-16 w-full md:w-2/3">
<span class="bg-yellow-400 text-black px-3 py-1 rounded-full text-xs font-bold">TRENDING</span>
<h1 class="text-4xl md:text-6xl font-bold mt-4 mb-2">A24's Latest Masterpiece</h1>
<p class="text-lg md:text-xl mb-6">"This film will haunt you for weeks" - Our review of the newest A24 psychological thriller</p>
<div class="flex space-x-4">
<button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold px-6 py-2 rounded-full transition flex items-center">
<i class="fas fa-play mr-2"></i> Watch Trailer
</button>
<button class="border-2 border-white hover:border-yellow-400 text-white font-bold px-6 py-2 rounded-full transition hover:text-yellow-400">
Read Review
</button>
</div>
</div>
</section>
<!-- Featured Reviews -->
<section class="py-16 px-4 md:px-0">
<div class="container mx-auto">
<div class="flex items-center justify-between mb-12">
<h2 class="text-3xl font-bold">🔥 Hot Takes</h2>
<a href="#" class="text-yellow-400 hover:text-yellow-300 flex items-center">
See all <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Review Card 1 -->
<div class="movie-card bg-gray-900 rounded-xl overflow-hidden relative">
<div class="rating-circle bg-gradient-to-r from-red-500 to-yellow-400 text-white">
9.2
</div>
<img src="https://images.unsplash.com/photo-1598899134739-24c8fa2745a8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie poster" class="w-full h-64 object-cover">
<div class="p-6">
<div class="flex items-center mb-2">
<span class="bg-yellow-400 text-black text-xs px-2 py-1 rounded mr-2">NEW</span>
<span class="text-gray-400 text-sm">Horror • 2023</span>
</div>
<h3 class="text-xl font-bold mb-2">The Haunting of Hill House</h3>
<p class="text-gray-400 review-text mb-4">This psychological horror film redefines the genre with its slow-burn tension and mind-bending narrative that will leave you questioning reality.</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Reviewer" class="w-8 h-8 rounded-full mr-2">
<span class="text-sm">@cinephile_amy</span>
</div>
</div>
</div>
<!-- Review Card 2 -->
<div class="movie-card bg-gray-900 rounded-xl overflow-hidden relative">
<div class="rating-circle bg-gradient-to-r from-red-500 to-yellow-400 text-white">
8.7
</div>
<img src="https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie poster" class="w-full h-64 object-cover">
<div class="p-6">
<div class="flex items-center mb-2">
<span class="bg-purple-500 text-white text-xs px-2 py-1 rounded mr-2">CULT</span>
<span class="text-gray-400 text-sm">Drama • 2022</span>
</div>
<h3 class="text-xl font-bold mb-2">Midnight in Paris</h3>
<p class="text-gray-400 review-text mb-4">A melancholic yet beautiful exploration of nostalgia and lost love, with cinematography that feels like a dream you don't want to wake up from.</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Reviewer" class="w-8 h-8 rounded-full mr-2">
<span class="text-sm">@filmbro_99</span>
</div>
</div>
</div>
<!-- Review Card 3 -->
<div class="movie-card bg-gray-900 rounded-xl overflow-hidden relative">
<div class="rating-circle bg-gradient-to-r from-red-500 to-yellow-400 text-white">
9.5
</div>
<img src="https://images.unsplash.com/photo-1543536448-d209d2d13a1c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie poster" class="w-full h-64 object-cover">
<div class="p-6">
<div class="flex items-center mb-2">
<span class="bg-red-500 text-white text-xs px-2 py-1 rounded mr-2">HOT</span>
<span class="text-gray-400 text-sm">Sci-Fi • 2023</span>
</div>
<h3 class="text-xl font-bold mb-2">Cosmic Dreams</h3>
<p class="text-gray-400 review-text mb-4">A visually stunning sci-fi epic that asks profound questions about humanity's place in the universe while delivering heart-pounding action sequences.</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Reviewer" class="w-8 h-8 rounded-full mr-2">
<span class="text-sm">@space_cinema</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- A24 Spotlight -->
<section class="py-16 bg-gradient-to-r from-gray-900 to-black">
<div class="container mx-auto px-4 md:px-0">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-2">✨ A24 Spotlight</h2>
<p class="text-gray-400 max-w-2xl mx-auto">The films that defined a generation of cinema</p>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<!-- Spotlight Item 1 -->
<div class="group relative overflow-hidden rounded-lg">
<img src="https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Hereditary</h3>
<p class="text-gray-300 text-sm">2018 • Horror</p>
</div>
</div>
</div>
<!-- Spotlight Item 2 -->
<div class="group relative overflow-hidden rounded-lg">
<img src="https://images.unsplash.com/photo-1535016120720-40c646be5580?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Moonlight</h3>
<p class="text-gray-300 text-sm">2016 • Drama</p>
</div>
</div>
</div>
<!-- Spotlight Item 3 -->
<div class="group relative overflow-hidden rounded-lg">
<img src="https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">Everything Everywhere</h3>
<p class="text-gray-300 text-sm">2022 • Sci-Fi</p>
</div>
</div>
</div>
<!-- Spotlight Item 4 -->
<div class="group relative overflow-hidden rounded-lg">
<img src="https://images.unsplash.com/photo-1551522435-a13afa10f103?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Movie" class="w-full h-64 object-cover group-hover:scale-105 transition duration-300">
<div class="absolute inset-0 bg-gradient-to-t from-black via-transparent to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-4">
<div>
<h3 class="text-white font-bold">The Lighthouse</h3>
<p class="text-gray-300 text-sm">2019 • Horror</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section class="py-16 px-4 md:px-0">
<div class="container mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-2">💬 Film Freaks Community</h2>
<p class="text-gray-400 max-w-2xl mx-auto">What the community is buzzing about</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Discussion 1 -->
<div class="bg-gray-900 rounded-xl p-6">
<div class="flex items-start mb-4">
<img src="https://randomuser.me/api/portraits/women/12.jpg" alt="User" class="w-12 h-12 rounded-full mr-4">
<div>
<h3 class="font-bold">Which A24 film had the best cinematography?</h3>
<p class="text-gray-400 text-sm">Posted by @visual_queen</p>
</div>
</div>
<p class="mb-4">Just rewatched The Green Knight and I'm still blown away by the visuals. That color palette! What's your pick for best A24 cinematography?</p>
<div class="flex items-center justify-between">
<div class="flex space-x-4">
<span class="text-gray-400 text-sm flex items-center">
<i class="fas fa-heart mr-1"></i> 142
</span>
<span class="text-gray-400 text-sm flex items-center">
<i class="fas fa-comment mr-1"></i> 28
</span>
</div>
<span class="text-gray-400 text-sm">2h ago</span>
</div>
</div>
<!-- Discussion 2 -->
<div class="bg-gray-900 rounded-xl p-6">
<div class="flex items-start mb-4">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="User" class="w-12 h-12 rounded-full mr-4">
<div>
<h3 class="font-bold">Underrated A24 gems?</h3>
<p class="text-gray-400 text-sm">Posted by @hidden_treasures</p>
</div>
</div>
<p class="mb-4">We all know the big hits, but what are some lesser-known A24 films that deserve more love? My pick: The Death of Dick Long. Wild ride!</p>
<div class="flex items-center justify-between">
<div class="flex space-x-4">
<span class="text-gray-400 text-sm flex items-center">
<i class="fas fa-heart mr-1"></i> 89
</span>
<span class="text-gray-400 text-sm flex items-center">
<i class="fas fa-comment mr-1"></i> 42
</span>
</div>
<span class="text-gray-400 text-sm">5h ago</span>
</div>
</div>
</div>
<div class="text-center mt-8">
<button class="border-2 border-yellow-400 text-yellow-400 hover:bg-yellow-400 hover:text-black font-bold px-6 py-2 rounded-full transition">
Join the Discussion
</button>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-gradient-to-br from-gray-900 to-black">
<div class="container mx-auto px-4 md:px-0 max-w-4xl">
<div class="bg-gray-800 rounded-xl p-8 md:p-12 text-center glow">
<h2 class="text-3xl font-bold mb-2">Get the Film Freaks Newsletter</h2>
<p class="text-gray-400 mb-8">Weekly A24 updates, exclusive reviews, and community highlights straight to your inbox</p>
<div class="flex flex-col md:flex-row gap-4 max-w-lg mx-auto">
<input type="email" placeholder="Your email address" class="flex-grow bg-gray-700 text-white px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-yellow-400">
<button class="bg-yellow-400 hover:bg-yellow-500 text-black font-bold px-6 py-3 rounded-lg transition">
Subscribe
</button>
</div>
<p class="text-gray-500 text-xs mt-4">We respect your privacy. Unsubscribe at any time.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black py-12 px-4 md:px-0">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-10 h-10 bg-gradient-to-r from-red-500 to-yellow-400 rounded-full flex items-center justify-center">
<i class="fas fa-film text-white text-xl"></i>
</div>
<h3 class="text-xl font-bold gradient-text">FilmFreaks</h3>
</div>
<p class="text-gray-400">Your go-to source for A24 film reviews, news, and community discussions.</p>
</div>
<div>
<h4 class="text-white font-bold mb-4">Explore</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Movies</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Reviews</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Rankings</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">News</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Community</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Discussions</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Events</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Merch</a></li>
<li><a href="#" class="text-gray-400 hover:text-yellow-400 transition">Contribute</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-bold mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
<i class="fab fa-tiktok"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center text-white hover:bg-yellow-400 hover:text-black transition">
<i class="fab fa-discord"></i>
</a>
</div>
<p class="text-gray-400 text-sm">[email protected]</p>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 FilmFreaks. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-500 hover:text-white text-sm">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Simple script for mobile menu toggle (would be expanded in a real implementation)
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('.md\\:hidden');
// In a real implementation, this would toggle a mobile menu
mobileMenuButton.addEventListener('click', function() {
alert('Mobile menu would open here in a full implementation');
});
// Search bar focus effect
const searchBar = document.querySelector('.search-bar');
searchBar.addEventListener('focus', function() {
this.classList.add('w-64');
});
searchBar.addEventListener('blur', function() {
if(this.value === '') {
this.classList.remove('w-64');
}
});
});
</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=ontoligent/a24-site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |