Spaces:
Running
Running
File size: 37,198 Bytes
6eadae2 |
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 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neon Nexus - Cyberpunk Game Library</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=Orbitron:wght@400;700&family=Roboto+Mono:wght@300;400;700&display=swap');
:root {
--neon-pink: #ff2a6d;
--neon-blue: #05d9e8;
--neon-purple: #d300c5;
--neon-green: #00ff9d;
--dark-bg: #0d0221;
--darker-bg: #05010e;
}
body {
font-family: 'Roboto Mono', monospace;
background-color: var(--dark-bg);
color: white;
overflow-x: hidden;
}
h1, h2, h3, .neon-title {
font-family: 'Orbitron', sans-serif;
}
.neon-text-pink {
text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
color: var(--neon-pink);
}
.neon-text-blue {
text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
color: var(--neon-blue);
}
.neon-text-purple {
text-shadow: 0 0 5px var(--neon-purple), 0 0 10px var(--neon-purple);
color: var(--neon-purple);
}
.neon-text-green {
text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green);
color: var(--neon-green);
}
.neon-border-pink {
border: 2px solid var(--neon-pink);
box-shadow: 0 0 10px var(--neon-pink), inset 0 0 5px var(--neon-pink);
}
.neon-border-blue {
border: 2px solid var(--neon-blue);
box-shadow: 0 0 10px var(--neon-blue), inset 0 0 5px var(--neon-blue);
}
.neon-border-purple {
border: 2px solid var(--neon-purple);
box-shadow: 0 0 10px var(--neon-purple), inset 0 0 5px var(--neon-purple);
}
.neon-border-green {
border: 2px solid var(--neon-green);
box-shadow: 0 0 10px var(--neon-green), inset 0 0 5px var(--neon-green);
}
.game-card {
transition: all 0.3s ease;
background-color: rgba(13, 2, 33, 0.7);
backdrop-filter: blur(5px);
transform-style: preserve-3d;
transform: perspective(1000px);
}
.game-card:hover {
transform: perspective(1000px) translateY(-10px) rotateX(5deg);
z-index: 10;
}
.game-card::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
z-index: -1;
opacity: 0;
transition: opacity 0.3s ease;
}
.game-card:hover::before {
opacity: 1;
}
.game-card.pink:hover::before {
background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
}
.game-card.blue:hover::before {
background: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
}
.game-card.purple:hover::before {
background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
}
.game-card.green:hover::before {
background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
}
.glitch-effect {
position: relative;
}
.glitch-effect::before, .glitch-effect::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.8;
}
.glitch-effect::before {
color: var(--neon-blue);
animation: glitch 3s infinite linear;
clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch-effect::after {
color: var(--neon-pink);
animation: glitch 2s infinite linear reverse;
clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes glitch {
0%, 100% { transform: translate(0); }
20% { transform: translate(-3px, 3px); }
40% { transform: translate(-3px, -3px); }
60% { transform: translate(3px, 3px); }
80% { transform: translate(3px, -3px); }
}
.scanline {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.03) 50%,
rgba(255, 255, 255, 0) 100%
);
background-size: 100% 4px;
animation: scanline 8s linear infinite;
pointer-events: none;
z-index: 9999;
}
@keyframes scanline {
0% { background-position: 0 0; }
100% { background-position: 0 100%; }
}
.terminal-text {
border-right: 0.15em solid var(--neon-green);
animation: blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: var(--neon-green); }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.6; }
50% { opacity: 1; }
100% { opacity: 0.6; }
}
</style>
</head>
<body class="min-h-screen">
<!-- Scanline effect -->
<div class="scanline"></div>
<!-- Header -->
<header class="py-6 px-4 md:px-12 border-b border-gray-800">
<div class="container mx-auto flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i class="fas fa-gamepad text-3xl neon-text-pink mr-3"></i>
<h1 class="text-3xl md:text-4xl font-bold neon-text-blue glitch-effect" data-text="NEON NEXUS">NEON NEXUS</h1>
</div>
<div class="relative w-full md:w-64">
<input type="text" placeholder="Search games..."
class="w-full bg-black bg-opacity-50 text-white px-4 py-2 rounded-md border border-gray-700 focus:outline-none focus:border-purple-500 focus:ring-1 focus:ring-purple-500">
<i class="fas fa-search absolute right-3 top-2.5 text-gray-400"></i>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<!-- Featured Game -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl md:text-3xl font-bold neon-text-pink">FEATURED TITLE</h2>
<div class="flex space-x-2">
<button class="px-3 py-1 bg-gray-800 rounded-md hover:bg-gray-700 transition">View All</button>
</div>
</div>
<div class="relative overflow-hidden rounded-lg neon-border-blue h-96">
<div class="absolute inset-0 bg-gradient-to-r from-black to-transparent z-10"></div>
<img src="https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Featured Game" class="w-full h-full object-cover">
<div class="absolute bottom-0 left-0 z-20 p-6 md:p-8 w-full md:w-2/3">
<div class="flex items-center mb-2">
<span class="px-2 py-1 text-xs bg-purple-900 text-purple-300 rounded mr-2">NEW RELEASE</span>
<span class="px-2 py-1 text-xs bg-blue-900 text-blue-300 rounded">RPG</span>
</div>
<h3 class="text-3xl md:text-4xl font-bold mb-2 neon-text-green">Neon Dawn</h3>
<p class="text-gray-300 mb-4">A cyberpunk RPG set in the dystopian megacity of Neo-Tokyo. Hack, fight and charm your way through corporate intrigue and street gang warfare.</p>
<div class="flex space-x-3">
<button class="px-4 py-2 bg-green-600 hover:bg-green-700 rounded-md neon-text-green font-bold transition">PLAY NOW</button>
<button class="px-4 py-2 bg-gray-800 hover:bg-gray-700 rounded-md transition">WATCH TRAILER</button>
</div>
</div>
</div>
</section>
<!-- Genres Navigation -->
<section class="mb-8">
<div class="flex overflow-x-auto pb-2 space-x-2 scrollbar-hide">
<button class="px-4 py-2 rounded-full neon-border-pink neon-text-pink whitespace-nowrap hover:bg-pink-900 hover:bg-opacity-30 transition">All Games</button>
<button class="px-4 py-2 rounded-full border border-gray-700 text-gray-300 whitespace-nowrap hover:bg-gray-800 hover:text-white transition">RPG</button>
<button class="px-4 py-2 rounded-full border border-gray-700 text-gray-300 whitespace-nowrap hover:bg-gray-800 hover:text-white transition">FPS</button>
<button class="px-4 py-2 rounded-full border border-gray-700 text-gray-300 whitespace-nowrap hover:bg-gray-800 hover:text-white transition">Adventure</button>
<button class="px-4 py-2 rounded-full border border-gray-700 text-gray-300 whitespace-nowrap hover:bg-gray-800 hover:text-white transition">Strategy</button>
<button class="px-4 py-2 rounded-full border border-gray-700 text-gray-300 whitespace-nowrap hover:bg-gray-800 hover:text-white transition">Simulation</button>
<button class="px-4 py-2 rounded-full border border-gray-700 text-gray-300 whitespace-nowrap hover:bg-gray-800 hover:text-white transition">Horror</button>
<button class="px-4 py-2 rounded-full border border-gray-700 text-gray-300 whitespace-nowrap hover:bg-gray-800 hover:text-white transition">Sports</button>
</div>
</section>
<!-- Recently Added -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold neon-text-purple">RECENTLY ADDED</h2>
<button class="px-3 py-1 bg-gray-800 rounded-md hover:bg-gray-700 transition">View All</button>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Game Card 1 -->
<div class="game-card pink rounded-lg overflow-hidden neon-border-pink relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1560253023-3ec5d502959f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Cyber Runner" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-pink">
<i class="fas fa-heart mr-1"></i> 4.8
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-pink">Cyber Runner</h3>
<span class="px-2 py-1 text-xs bg-pink-900 text-pink-300 rounded">FPS</span>
</div>
<p class="text-gray-400 text-sm mb-3">A high-speed parkour shooter set in a neon-drenched future city.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Free</span>
<button class="text-xs px-3 py-1 bg-pink-900 hover:bg-pink-800 rounded transition">PLAY</button>
</div>
</div>
</div>
<!-- Game Card 2 -->
<div class="game-card blue rounded-lg overflow-hidden neon-border-blue relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1542281286-9e0a16bb7366?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Neon Protocol" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-blue">
<i class="fas fa-heart mr-1"></i> 4.6
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-blue">Neon Protocol</h3>
<span class="px-2 py-1 text-xs bg-blue-900 text-blue-300 rounded">RPG</span>
</div>
<p class="text-gray-400 text-sm mb-3">A tactical cyberpunk RPG with deep hacking mechanics and turn-based combat.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">$29.99</span>
<button class="text-xs px-3 py-1 bg-blue-900 hover:bg-blue-800 rounded transition">BUY</button>
</div>
</div>
</div>
<!-- Game Card 3 -->
<div class="game-card purple rounded-lg overflow-hidden neon-border-purple relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1511512578047-dba367674e13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80"
alt="Circuit Break" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-purple">
<i class="fas fa-heart mr-1"></i> 4.9
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-purple">Circuit Break</h3>
<span class="px-2 py-1 text-xs bg-purple-900 text-purple-300 rounded">Racing</span>
</div>
<p class="text-gray-400 text-sm mb-3">Futuristic anti-gravity racing through neon cityscapes at breakneck speeds.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">$19.99</span>
<button class="text-xs px-3 py-1 bg-purple-900 hover:bg-purple-800 rounded transition">BUY</button>
</div>
</div>
</div>
<!-- Game Card 4 -->
<div class="game-card green rounded-lg overflow-hidden neon-border-green relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551103782-8ab07afd45c1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Synthwave Survivor" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-green">
<i class="fas fa-heart mr-1"></i> 4.7
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-green">Synthwave Survivor</h3>
<span class="px-2 py-1 text-xs bg-green-900 text-green-300 rounded">Roguelike</span>
</div>
<p class="text-gray-400 text-sm mb-3">A neon-drenched roguelike where you battle through waves of enemies with synthwave beats.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">$14.99</span>
<button class="text-xs px-3 py-1 bg-green-900 hover:bg-green-800 rounded transition">BUY</button>
</div>
</div>
</div>
</div>
</section>
<!-- Popular Games -->
<section class="mb-12">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold neon-text-blue">POPULAR GAMES</h2>
<button class="px-3 py-1 bg-gray-800 rounded-md hover:bg-gray-700 transition">View All</button>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Game Card 5 -->
<div class="game-card pink rounded-lg overflow-hidden neon-border-pink relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Neon Dawn" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-pink">
<i class="fas fa-heart mr-1"></i> 4.9
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-pink">Neon Dawn</h3>
<span class="px-2 py-1 text-xs bg-pink-900 text-pink-300 rounded">RPG</span>
</div>
<p class="text-gray-400 text-sm mb-3">Explore the sprawling megacity of Neo-Tokyo in this open-world cyberpunk adventure.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">$39.99</span>
<button class="text-xs px-3 py-1 bg-pink-900 hover:bg-pink-800 rounded transition">BUY</button>
</div>
</div>
</div>
<!-- Game Card 6 -->
<div class="game-card blue rounded-lg overflow-hidden neon-border-blue relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1547036967-23d11aacaee0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80"
alt="Hacknet Legends" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-blue">
<i class="fas fa-heart mr-1"></i> 4.5
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-blue">Hacknet Legends</h3>
<span class="px-2 py-1 text-xs bg-blue-900 text-blue-300 rounded">Simulation</span>
</div>
<p class="text-gray-400 text-sm mb-3">A realistic hacking simulator with a deep storyline and cyberpunk aesthetics.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">$24.99</span>
<button class="text-xs px-3 py-1 bg-blue-900 hover:bg-blue-800 rounded transition">BUY</button>
</div>
</div>
</div>
<!-- Game Card 7 -->
<div class="game-card purple rounded-lg overflow-hidden neon-border-purple relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1544200175-ca6e80a59346?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Ghostwire" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-purple">
<i class="fas fa-heart mr-1"></i> 4.3
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-purple">Ghostwire</h3>
<span class="px-2 py-1 text-xs bg-purple-900 text-purple-300 rounded">Horror</span>
</div>
<p class="text-gray-400 text-sm mb-3">A supernatural horror game set in a cyberpunk world where ghosts invade the digital realm.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">$29.99</span>
<button class="text-xs px-3 py-1 bg-purple-900 hover:bg-purple-800 rounded transition">BUY</button>
</div>
</div>
</div>
<!-- Game Card 8 -->
<div class="game-card green rounded-lg overflow-hidden neon-border-green relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1516035069371-29a1b244cc32?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1528&q=80"
alt="Cyber Arena" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-green">
<i class="fas fa-heart mr-1"></i> 4.8
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-green">Cyber Arena</h3>
<span class="px-2 py-1 text-xs bg-green-900 text-green-300 rounded">Fighting</span>
</div>
<p class="text-gray-400 text-sm mb-3">A competitive fighting game with cybernetically enhanced warriors in neon-lit arenas.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">$19.99</span>
<button class="text-xs px-3 py-1 bg-green-900 hover:bg-green-800 rounded transition">BUY</button>
</div>
</div>
</div>
</div>
</section>
<!-- Coming Soon -->
<section>
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold neon-text-green">COMING SOON</h2>
<button class="px-3 py-1 bg-gray-800 rounded-md hover:bg-gray-700 transition">View All</button>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Game Card 9 -->
<div class="game-card pink rounded-lg overflow-hidden neon-border-pink relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1633613286848-e6f43bbafb8d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Neon Noir" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-pink">
<i class="fas fa-clock mr-1"></i> Q1 2024
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-pink">Neon Noir</h3>
<span class="px-2 py-1 text-xs bg-pink-900 text-pink-300 rounded">Adventure</span>
</div>
<p class="text-gray-400 text-sm mb-3">A cyberpunk detective story with branching narratives and moral choices.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Coming Soon</span>
<button class="text-xs px-3 py-1 bg-gray-800 rounded cursor-not-allowed" disabled>WISHLIST</button>
</div>
</div>
</div>
<!-- Game Card 10 -->
<div class="game-card blue rounded-lg overflow-hidden neon-border-blue relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1638549909131-aad8a0598ff9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Megacity Zero" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-blue">
<i class="fas fa-clock mr-1"></i> Q2 2024
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-blue">Megacity Zero</h3>
<span class="px-2 py-1 text-xs bg-blue-900 text-blue-300 rounded">Strategy</span>
</div>
<p class="text-gray-400 text-sm mb-3">Build and manage a dystopian megacity while dealing with corporate espionage.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Coming Soon</span>
<button class="text-xs px-3 py-1 bg-gray-800 rounded cursor-not-allowed" disabled>WISHLIST</button>
</div>
</div>
</div>
<!-- Game Card 11 -->
<div class="game-card purple rounded-lg overflow-hidden neon-border-purple relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1633613286991-611fe299c4be?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Synth Riders" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-purple">
<i class="fas fa-clock mr-1"></i> Q3 2024
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-purple">Synth Riders</h3>
<span class="px-2 py-1 text-xs bg-purple-900 text-purple-300 rounded">Rhythm</span>
</div>
<p class="text-gray-400 text-sm mb-3">A VR rhythm game set in a neon cyberpunk world with synthwave soundtrack.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Coming Soon</span>
<button class="text-xs px-3 py-1 bg-gray-800 rounded cursor-not-allowed" disabled>WISHLIST</button>
</div>
</div>
</div>
<!-- Game Card 12 -->
<div class="game-card green rounded-lg overflow-hidden neon-border-green relative">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1639762681057-1e7aa943168e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80"
alt="Cyber Samurai" class="w-full h-full object-cover transition-transform duration-500 hover:scale-110">
<div class="absolute top-2 right-2 bg-black bg-opacity-70 px-2 py-1 rounded text-xs neon-text-green">
<i class="fas fa-clock mr-1"></i> Q4 2024
</div>
</div>
<div class="p-4">
<div class="flex justify-between items-start mb-2">
<h3 class="text-lg font-bold neon-text-green">Cyber Samurai</h3>
<span class="px-2 py-1 text-xs bg-green-900 text-green-300 rounded">Action</span>
</div>
<p class="text-gray-400 text-sm mb-3">A fast-paced action game blending cyberpunk with feudal Japan aesthetics.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-gray-500">Coming Soon</span>
<button class="text-xs px-3 py-1 bg-gray-800 rounded cursor-not-allowed" disabled>WISHLIST</button>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-black bg-opacity-50 py-8 px-4 border-t border-gray-800 mt-12">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-bold neon-text-pink mb-4">NEON NEXUS</h3>
<p class="text-gray-400 text-sm">Your gateway to the best cyberpunk gaming experiences in the neon-lit future.</p>
</div>
<div>
<h4 class="text-md font-bold neon-text-blue mb-4">QUICK LINKS</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Games</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Genres</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Coming Soon</a></li>
</ul>
</div>
<div>
<h4 class="text-md font-bold neon-text-purple mb-4">SUPPORT</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Contact Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Terms of Service</a></li>
</ul>
</div>
<div>
<h4 class="text-md font-bold neon-text-green mb-4">CONNECT</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-pink-500 transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-discord"></i></a>
<a href="#" class="text-gray-400 hover:text-purple-500 transition"><i class="fab fa-twitch"></i></a>
<a href="#" class="text-gray-400 hover:text-red-500 transition"><i class="fab fa-youtube"></i></a>
</div>
<div class="mt-4">
<p class="text-gray-500 text-xs terminal-text">SYSTEM STATUS: ONLINE</p>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-6 text-center">
<p class="text-gray-500 text-sm pulse">© 2023 NEON NEXUS. ALL RIGHTS RESERVED.</p>
</div>
</div>
</footer>
<script>
// Simple script to add hover effects to game cards
document.addEventListener('DOMContentLoaded', function() {
const gameCards = document.querySelectorAll('.game-card');
gameCards.forEach(card => {
card.addEventListener('mouseenter', function() {
const colorClass = Array.from(this.classList).find(cls =>
cls === 'pink' || cls === 'blue' || cls === 'purple' || cls === 'green'
);
if (colorClass) {
this.style.boxShadow = `0 0 20px var(--neon-${colorClass}), inset 0 0 10px var(--neon-${colorClass})`;
}
});
card.addEventListener('mouseleave', function() {
this.style.boxShadow = '';
});
});
// Terminal text effect
const terminalText = document.querySelector('.terminal-text');
if (terminalText) {
const text = terminalText.textContent;
terminalText.textContent = '';
let i = 0;
const typing = setInterval(() => {
if (i < text.length) {
terminalText.textContent += text.charAt(i);
i++;
} else {
clearInterval(typing);
}
}, 100);
}
});
</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=LDrago-R/mygamelibrary" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |