File size: 34,116 Bytes
91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 8ea0c9d 91dfd73 7cbbf1b 91dfd73 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oregon Trailer Park - Post-Apocalyptic Deckbuilder</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=Press+Start+2P&family=VT323&display=swap');
.pixel-font {
font-family: 'VT323', monospace;
font-size: 1.05rem; /* 5% increase from default */
}
.title-font {
font-family: 'Press Start 2P', cursive;
}
.toxic-gradient {
background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 25%, #CDDC39 50%, #FFEB3B 75%, #FFC107 100%);
}
.glow {
text-shadow: 0 0 5px #4CAF50, 0 0 10px #8BC34A;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.radiation-pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
}
}
.typewriter {
overflow: hidden;
border-right: .15em solid #4CAF50;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #4CAF50; }
}
</style>
</head>
<body class="bg-gray-900 text-green-400 pixel-font">
<!-- Header/Navigation -->
<header class="bg-black bg-opacity-80 sticky top-0 z-50 border-b-2 border-green-500">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-radiation-alt text-green-500 text-2xl"></i>
<h1 class="title-font text-xl md:text-2xl glow" style="font-size: 1.1025rem;">OREGON TRAILER PARK</h1>
</div>
<nav class="hidden md:block">
<ul class="flex space-x-6">
<li><a href="#features" class="hover:text-green-300 transition">Features</a></li>
<li><a href="#classes" class="hover:text-green-300 transition">Classes</a></li>
<li><a href="#gameplay" class="hover:text-green-300 transition">Gameplay</a></li>
<li><a href="#about" class="hover:text-green-300 transition">About</a></li>
</ul>
</nav>
<button id="mobile-menu-button" class="md:hidden text-green-400">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-black bg-opacity-90 px-4 py-2 border-t border-green-500">
<ul class="flex flex-col space-y-3">
<li><a href="#features" class="block hover:text-green-300 transition">Features</a></li>
<li><a href="#classes" class="block hover:text-green-300 transition">Classes</a></li>
<li><a href="#gameplay" class="block hover:text-green-300 transition">Gameplay</a></li>
<li><a href="#about" class="block hover:text-green-300 transition">About</a></li>
</ul>
</div>
</header>
<!-- Hero Section -->
<section class="relative h-screen flex items-center justify-center bg-gray-800 overflow-hidden">
<div class="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1508514177221-188e1e5f9425?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80')] bg-cover bg-center opacity-30"></div>
<div class="container mx-auto px-4 z-10 text-center">
<h1 class="title-font text-4xl md:text-6xl mb-6 glow typewriter" style="font-size: 2.205rem;">SURVIVE THE WASTELAND</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto" style="font-size: 1.1025rem;">A post-apocalyptic deck-building roguelike where survival hinges on scavenging, combat, and managing your crew's sanity.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-green-600 hover:bg-green-700 text-black font-bold py-3 px-6 rounded-lg transition transform hover:scale-105 flex items-center justify-center gap-2">
<i class="fas fa-play"></i> PLAY DEMO
</button>
<button class="border-2 border-green-500 hover:bg-green-900 hover:bg-opacity-30 text-green-400 font-bold py-3 px-6 rounded-lg transition transform hover:scale-105 flex items-center justify-center gap-2">
<i class="fas fa-book"></i> LEARN MORE
</button>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 h-16 toxic-gradient opacity-20"></div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 bg-gray-800 bg-opacity-70">
<div class="container mx-auto px-4">
<h2 class="title-font text-3xl md:text-4xl text-center mb-12 glow" style="font-size: 1.65375rem;">CORE MECHANICS</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Feature 1 -->
<div class="bg-gray-900 bg-opacity-80 p-6 rounded-lg border-2 border-green-500 card-hover radiation-pulse">
<div class="text-center mb-4">
<i class="fas fa-cards text-4xl text-green-500 mb-3"></i>
<h3 class="title-font text-xl mb-2" style="font-size: 1.1025rem;">DECK-BUILDING</h3>
</div>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Class-specific starting cards</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Acquire new cards through scavenging and combat</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Modify your deck at safe zones</span>
</li>
</ul>
</div>
<!-- Feature 2 -->
<div class="bg-gray-900 bg-opacity-80 p-6 rounded-lg border-2 border-green-500 card-hover">
<div class="text-center mb-4">
<i class="fas fa-fist-raised text-4xl text-green-500 mb-3"></i>
<h3 class="title-font text-xl mb-2" style="font-size: 1.1025rem;">TURN-BASED COMBAT</h3>
</div>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Fight raiders, mutants, and Corporate enforcers</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Action point system for strategic play</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Environmental hazards affect battles</span>
</li>
</ul>
</div>
<!-- Feature 3 -->
<div class="bg-gray-900 bg-opacity-80 p-6 rounded-lg border-2 border-green-500 card-hover">
<div class="text-center mb-4">
<i class="fas fa-boxes text-4xl text-green-500 mb-3"></i>
<h3 class="title-font text-xl mb-2" style="font-size: 1.1025rem;">RESOURCE MANAGEMENT</h3>
</div>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Track Food, Fuel, Scrap, and Chems</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Chems as currency and crafting ingredients</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Starvation adds permanent debuffs</span>
</li>
</ul>
</div>
<!-- Feature 4 -->
<div class="bg-gray-900 bg-opacity-80 p-6 rounded-lg border-2 border-green-500 card-hover">
<div class="text-center mb-4">
<i class="fas fa-skull text-4xl text-green-500 mb-3"></i>
<h3 class="title-font text-xl mb-2" style="font-size: 1.1025rem;">PERMADEATH</h3>
</div>
<ul class="space-y-2 text-sm">
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Lose party members permanently</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Their cards are removed from your deck</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-green-500 mt-1 mr-2"></i>
<span style="font-size: 0.84rem;">Recruit replacements at random events</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Classes Section -->
<section id="classes" class="py-16 bg-gray-900">
<div class="container mx-auto px-4">
<h2 class="title-font text-3xl md:text-4xl text-center mb-12 glow">CHOOSE YOUR CLASS</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Tweaker Class -->
<div class="bg-gray-800 bg-opacity-80 rounded-lg overflow-hidden border-2 border-purple-500 card-hover">
<div class="bg-purple-900 bg-opacity-60 p-4">
<h3 class="title-font text-xl text-center">TWEAKER</h3>
</div>
<div class="p-6">
<div class="flex justify-center mb-4">
<div class="w-24 h-24 rounded-full bg-purple-800 flex items-center justify-center border-2 border-purple-500">
<i class="fas fa-pills text-4xl text-purple-300"></i>
</div>
</div>
<p class="text-sm mb-4">Chem-fueled survivalist who can turn toxic waste into valuable resources.</p>
<h4 class="font-bold text-purple-400 mb-2">STARTING CARDS:</h4>
<ul class="mb-4 space-y-2">
<li class="flex items-start">
<i class="fas fa-radiation-alt text-purple-400 mt-1 mr-2"></i>
<span>"Stimulant Rush" - Draw 2 extra cards per turn (take radiation damage)</span>
</li>
<li class="flex items-start">
<i class="fas fa-bomb text-purple-400 mt-1 mr-2"></i>
<span>"Improvised Pipe Bomb" - High damage AOE</span>
</li>
</ul>
<h4 class="font-bold text-purple-400 mb-2">BONUS:</h4>
<p class="text-sm">Craft chems from toxic waste, gaining resources from radiation zones.</p>
</div>
</div>
<!-- Scout Class -->
<div class="bg-gray-800 bg-opacity-80 rounded-lg overflow-hidden border-2 border-green-500 card-hover">
<div class="bg-green-900 bg-opacity-60 p-4">
<h3 class="title-font text-xl text-center">SCOUT</h3>
</div>
<div class="p-6">
<div class="flex justify-center mb-4">
<div class="w-24 h-24 rounded-full bg-green-800 flex items-center justify-center border-2 border-green-500">
<i class="fas fa-binoculars text-4xl text-green-300"></i>
</div>
</div>
<p class="text-sm mb-4">Resourceful tracker who can spot danger and opportunities from afar.</p>
<h4 class="font-bold text-green-400 mb-2">STARTING CARDS:</h4>
<ul class="mb-4 space-y-2">
<li class="flex items-start">
<i class="fas fa-crosshairs text-green-400 mt-1 mr-2"></i>
<span>"Snipe" - Ignore enemy armor</span>
</li>
<li class="flex items-start">
<i class="fas fa-clover text-green-400 mt-1 mr-2"></i>
<span>"Scavenger's Luck" - Better loot odds</span>
</li>
</ul>
<h4 class="font-bold text-green-400 mb-2">BONUS:</h4>
<p class="text-sm">Reveal map hazards early, avoiding dangerous encounters.</p>
</div>
</div>
<!-- Brawler Class -->
<div class="bg-gray-800 bg-opacity-80 rounded-lg overflow-hidden border-2 border-red-500 card-hover">
<div class="bg-red-900 bg-opacity-60 p-4">
<h3 class="title-font text-xl text-center">BRAWLER</h3>
</div>
<div class="p-6">
<div class="flex justify-center mb-4">
<div class="w-24 h-24 rounded-full bg-red-800 flex items-center justify-center border-2 border-red-500">
<i class="fas fa-fist-raised text-4xl text-red-300"></i>
</div>
</div>
<p class="text-sm mb-4">Brutal fighter who can smash through enemies and intimidate foes.</p>
<h4 class="font-bold text-red-400 mb-2">STARTING CARDS:</h4>
<ul class="mb-4 space-y-2">
<li class="flex items-start">
<i class="fas fa-shield-alt text-red-400 mt-1 mr-2"></i>
<span>"Junk Armor" - Damage resistance</span>
</li>
<li class="flex items-start">
<i class="fas fa-hammer text-red-400 mt-1 mr-2"></i>
<span>"Crowbar Toss" - AOE damage</span>
</li>
</ul>
<h4 class="font-bold text-red-400 mb-2">BONUS:</h4>
<p class="text-sm">Intimidate enemies to skip combat encounters entirely.</p>
</div>
</div>
</div>
<div class="mt-12 text-center">
<button class="border-2 border-green-500 hover:bg-green-900 hover:bg-opacity-30 text-green-400 font-bold py-3 px-6 rounded-lg transition transform hover:scale-105">
VIEW ALL CLASSES (6+)
</button>
</div>
</div>
</section>
<!-- Gameplay Section -->
<section id="gameplay" class="py-16 bg-gray-800 bg-opacity-70">
<div class="container mx-auto px-4">
<h2 class="title-font text-3xl md:text-4xl text-center mb-12 glow">JOURNEY STRUCTURE</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div>
<h3 class="title-font text-2xl mb-6 text-green-400">NODE-BASED MAP</h3>
<p class="mb-6">Navigate through a wasteland of choices, each with risks and rewards. Your path determines your survival.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-green-900 rounded-full w-10 h-10 flex items-center justify-center flex-shrink-0 mr-4 mt-1">
<i class="fas fa-trash text-green-400"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-1">Scavenge Sites</h4>
<p class="text-sm">Draw from a "junk pile" card deck to find resources, gear, or trouble.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-yellow-900 rounded-full w-10 h-10 flex items-center justify-center flex-shrink-0 mr-4 mt-1">
<i class="fas fa-exchange-alt text-yellow-400"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-1">Trader Camps</h4>
<p class="text-sm">Trade Chems for gear or hire mercenaries to bolster your crew.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-red-900 rounded-full w-10 h-10 flex items-center justify-center flex-shrink-0 mr-4 mt-1">
<i class="fas fa-building text-red-400"></i>
</div>
<div>
<h4 class="font-bold text-lg mb-1">Corporate Checkpoints</h4>
<p class="text-sm">Pay with resources or fight your way through Corporate enforcers.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="bg-gray-900 rounded-lg border-2 border-green-500 p-6 card-hover">
<h3 class="title-font text-xl mb-4 text-center">RANDOM EVENTS</h3>
<div class="space-y-4">
<div class="bg-gray-800 p-4 rounded-lg border-l-4 border-green-500">
<h4 class="font-bold flex items-center">
<i class="fas fa-cloud-rain text-blue-400 mr-2"></i>
Toxic Rainstorm
</h4>
<p class="text-sm mt-1">Lose Fuel or take radiation damage. Choose wisely.</p>
</div>
<div class="bg-gray-800 p-4 rounded-lg border-l-4 border-red-500">
<h4 class="font-bold flex items-center">
<i class="fas fa-paw text-red-400 mr-2"></i>
Mutant Attack
</h4>
<p class="text-sm mt-1">Draw 3 combat cards to resolve quickly. Speed is survival.</p>
</div>
<div class="bg-gray-800 p-4 rounded-lg border-l-4 border-purple-500">
<h4 class="font-bold flex items-center">
<i class="fas fa-flask text-purple-400 mr-2"></i>
Mysterious Moonshiner
</h4>
<p class="text-sm mt-1">Buy powerful buffs like "Adrenaline Shot: +1 action per turn for 3 battles".</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Endgame Section -->
<section class="py-16 bg-black bg-opacity-80 relative overflow-hidden">
<div class="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1560508184684-3dcfaac3f0f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80')] bg-cover bg-center opacity-20"></div>
<div class="container mx-auto px-4 relative z-10">
<h2 class="title-font text-3xl md:text-4xl text-center mb-12 glow">THEMATIC ENDGAME</h2>
<div class="max-w-4xl mx-auto bg-gray-900 bg-opacity-80 p-8 rounded-lg border-2 border-green-500">
<div class="flex flex-col md:flex-row items-center gap-8">
<div class="flex-shrink-0">
<div class="w-32 h-32 md:w-48 md:h-48 rounded-full bg-red-900 flex items-center justify-center border-4 border-red-600 mx-auto">
<i class="fas fa-robot text-5xl md:text-7xl text-red-400"></i>
</div>
</div>
<div>
<h3 class="title-font text-2xl mb-4 text-red-400">THE CEO'S BIO-MECHA</h3>
<p class="mb-4">Reach the rumored "Clean Zone", only to discover it's a Corporate trap. Face off against the ultimate weapon of the wasteland oligarchy.</p>
<h4 class="font-bold text-green-400 mb-2">MULTIPLE ENDINGS:</h4>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-handshake text-yellow-400 mt-1 mr-2"></i>
<span>Join the Corporation - Become part of the machine</span>
</li>
<li class="flex items-start">
<i class="fas fa-gavel text-red-400 mt-1 mr-2"></i>
<span>Overthrow them - Lead the wasteland rebellion</span>
</li>
<li class="flex items-start">
<i class="fas fa-running text-purple-400 mt-1 mr-2"></i>
<span>Escape to the wilds - Reject all civilization</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-900">
<div class="container mx-auto px-4">
<h2 class="title-font text-3xl md:text-4xl text-center mb-12 glow">ART & TONE</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
<div class="bg-gray-800 p-6 rounded-lg border-2 border-green-500">
<h3 class="title-font text-xl mb-4 text-center">VISUALS</h3>
<div class="flex justify-center mb-4">
<i class="fas fa-palette text-5xl text-green-500"></i>
</div>
<p class="text-center">Grungy, cel-shaded trailers, neon toxic waste, and mutated wildlife bring the wasteland to life.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg border-2 border-green-500">
<h3 class="title-font text-xl mb-4 text-center">WRITING</h3>
<div class="flex justify-center mb-4">
<i class="fas fa-pen-fancy text-5xl text-green-500"></i>
</div>
<p class="text-center">Dark humor permeates the apocalypse. "Your '98 pickup truck breaks down. Again. Maybe duct tape isn't the answer."</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg border-2 border-green-500">
<h3 class="title-font text-xl mb-4 text-center">MUSIC</h3>
<div class="flex justify-center mb-4">
<i class="fas fa-music text-5xl text-green-500"></i>
</div>
<p class="text-center">Twangy banjo mixed with glitchy synths creates a uniquely post-apocalyptic soundscape.</p>
</div>
</div>
<div class="bg-gray-800 p-8 rounded-lg border-2 border-green-500 max-w-4xl mx-auto">
<h3 class="title-font text-2xl mb-6 text-center">TECH STACK</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-700 p-4 rounded-lg">
<h4 class="font-bold text-center mb-2">FRONTEND</h4>
<p class="text-center text-sm">Phaser.js or React+Redux for turn-based logic</p>
</div>
<div class="bg-gray-700 p-4 rounded-lg">
<h4 class="font-bold text-center mb-2">PROCEDURAL GEN</h4>
<p class="text-center text-sm">Maps/events via seed-based RNG</p>
</div>
<div class="bg-gray-700 p-4 rounded-lg">
<h4 class="font-bold text-center mb-2">SAVE SYSTEM</h4>
<p class="text-center text-sm">Local storage for progress</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-black bg-opacity-80 relative overflow-hidden">
<div class="absolute inset-0 toxic-gradient opacity-10"></div>
<div class="container mx-auto px-4 relative z-10">
<div class="max-w-3xl mx-auto text-center">
<h2 class="title-font text-3xl md:text-4xl mb-6 glow">READY TO SURVIVE?</h2>
<p class="text-xl mb-8">Outsmart the Corporations. Keep your crew sane—or die trying.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-green-600 hover:bg-green-700 text-black font-bold py-3 px-8 rounded-lg transition transform hover:scale-105 flex items-center justify-center gap-2">
<i class="fas fa-play"></i> PLAY DEMO NOW
</button>
<button class="border-2 border-green-500 hover:bg-green-900 hover:bg-opacity-30 text-green-400 font-bold py-3 px-8 rounded-lg transition transform hover:scale-105 flex items-center justify-center gap-2">
<i class="fas fa-book"></i> READ THE DEV BLOG
</button>
</div>
</div>
</div>
</section>
<!-- Image Modal Section -->
<section class="py-16 bg-gray-800">
<div class="container mx-auto px-4">
<h2 class="title-font text-3xl md:text-4xl text-center mb-12 glow">GAMEPLAY PREVIEW</h2>
<div class="flex justify-center">
<div class="relative group">
<img src="https://i.iheart.com/v3/re/new_assets/62e940364ce9eac698d022f0?ops=contain(1480,0)"
alt="Gameplay Preview"
class="rounded-lg border-2 border-green-500 max-w-full h-auto cursor-pointer transition-opacity group-hover:opacity-80"
id="preview-image">
<div class="absolute inset-0 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity">
<i class="fas fa-search-plus text-4xl text-white"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Image Modal -->
<div id="image-modal" class="fixed inset-0 bg-black bg-opacity-90 z-50 hidden flex items-center justify-center p-4">
<div class="relative max-w-6xl max-h-full">
<button id="close-modal" class="absolute -top-10 right-0 text-white text-3xl hover:text-green-400">
<i class="fas fa-times"></i>
</button>
<img id="modal-image" src="" alt="Gameplay Preview" class="max-h-screen max-w-full">
</div>
</div>
<!-- Footer -->
<footer class="bg-black bg-opacity-90 py-8 border-t border-green-900">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i class="fas fa-radiation-alt text-green-500 text-xl"></i>
<span class="title-font">OREGON TRAILER PARK</span>
</div>
<div class="flex space-x-6 mb-4 md:mb-0">
<a href="#" class="text-gray-400 hover:text-green-400 transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-green-400 transition">
<i class="fab fa-discord text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-green-400 transition">
<i class="fab fa-steam text-xl"></i>
</a>
</div>
<div class="text-sm text-gray-500">
© 2023 Wasteland Games. All rights reserved.
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Add animation class to cards when they come into view
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('card-hover');
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.card-hover').forEach(card => {
observer.observe(card);
});
</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=ssergorp/arce" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |