File size: 36,359 Bytes
683cd87 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GameMaster Pro - Ultimate PC Game Trainers</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#4F46E5',
secondary: '#10B981',
dark: '#1F2937',
light: '#F3F4F6',
}
}
}
}
</script>
<style>
.game-card:hover .game-overlay {
opacity: 1;
transform: translateY(0);
}
.game-overlay {
transition: all 0.3s ease;
opacity: 0;
transform: translateY(10px);
}
.search-box:focus {
box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}
.category-btn.active {
background-color: #4F46E5;
color: white;
}
.floating-download {
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Header -->
<header class="bg-dark text-white shadow-lg">
<div class="container mx-auto px-4 py-6">
<div class="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 text-secondary mr-3"></i>
<h1 class="text-2xl font-bold">GameMaster <span class="text-primary">Pro</span></h1>
</div>
<div class="relative w-full md:w-64">
<input type="text" placeholder="Search trainers..." class="search-box w-full px-4 py-2 rounded-full bg-gray-800 text-white focus:outline-none">
<button class="absolute right-3 top-2 text-gray-400">
<i class="fas fa-search"></i>
</button>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="bg-gradient-to-r from-dark to-primary text-white py-16">
<div class="container mx-auto px-4 text-center">
<h2 class="text-4xl md:text-5xl font-bold mb-6">Unlock Your Gaming Potential</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">The ultimate collection of game trainers for all PC game categories. Get unlimited health, ammo, money and more!</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-secondary hover:bg-green-500 text-white font-bold py-3 px-6 rounded-full transition duration-300">
<i class="fas fa-download mr-2"></i> Download All Trainers
</button>
<button class="bg-white hover:bg-gray-200 text-dark font-bold py-3 px-6 rounded-full transition duration-300">
<i class="fas fa-video mr-2"></i> Watch Tutorial
</button>
</div>
<div class="mt-12 floating-download">
<i class="fas fa-arrow-down text-3xl animate-bounce"></i>
</div>
</div>
</section>
<!-- Categories Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-dark">Game Categories</h2>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-6 gap-4">
<!-- Simulation -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-plane text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Simulation</h3>
<p class="text-gray-600 text-sm">Flight, life, farming and more</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">124 Trainers</span>
</div>
</div>
<!-- Strategy -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-chess text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Strategy</h3>
<p class="text-gray-600 text-sm">RTS, turn-based, tactical</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">89 Trainers</span>
</div>
</div>
<!-- Management -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-city text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Management</h3>
<p class="text-gray-600 text-sm">City, business, hospital</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">67 Trainers</span>
</div>
</div>
<!-- Arcade -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-gamepad text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Arcade</h3>
<p class="text-gray-600 text-sm">Classic and modern arcade</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">215 Trainers</span>
</div>
</div>
<!-- Sports -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-running text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Sports</h3>
<p class="text-gray-600 text-sm">Football, basketball, racing</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">78 Trainers</span>
</div>
</div>
<!-- Quiz & Board -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-dice text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Quiz & Board</h3>
<p class="text-gray-600 text-sm">Trivia, card and board games</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">42 Trainers</span>
</div>
</div>
<!-- Sandbox -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-cubes text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Sandbox</h3>
<p class="text-gray-600 text-sm">Open world creativity</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">53 Trainers</span>
</div>
</div>
<!-- RPG -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-dragon text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">RPG</h3>
<p class="text-gray-600 text-sm">Role-playing adventures</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">112 Trainers</span>
</div>
</div>
<!-- FPS -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-gun text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">FPS</h3>
<p class="text-gray-600 text-sm">First-person shooters</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">156 Trainers</span>
</div>
</div>
<!-- Adventure -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-map-marked-alt text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Adventure</h3>
<p class="text-gray-600 text-sm">Story-driven experiences</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">87 Trainers</span>
</div>
</div>
<!-- Horror -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-ghost text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Horror</h3>
<p class="text-gray-600 text-sm">Survival and psychological</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">64 Trainers</span>
</div>
</div>
<!-- Indie -->
<div class="category-card bg-light rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300">
<div class="p-6 text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4">
<i class="fas fa-indent text-2xl"></i>
</div>
<h3 class="font-bold text-lg mb-2">Indie</h3>
<p class="text-gray-600 text-sm">Independent creations</p>
<span class="inline-block mt-3 px-3 py-1 bg-secondary text-white text-xs rounded-full">92 Trainers</span>
</div>
</div>
</div>
</div>
</section>
<!-- Popular Trainers -->
<section class="py-12 bg-gray-100">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-dark">Popular Trainers</h2>
<div class="flex space-x-2">
<button class="category-btn active px-4 py-2 rounded-full bg-primary text-white text-sm">All</button>
<button class="category-btn px-4 py-2 rounded-full bg-gray-200 text-gray-700 text-sm hover:bg-gray-300">New</button>
<button class="category-btn px-4 py-2 rounded-full bg-gray-200 text-gray-700 text-sm hover:bg-gray-300">Updated</button>
</div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
<!-- Trainer 1 -->
<div class="game-card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="relative">
<img src="https://via.placeholder.com/400x225/4F46E5/FFFFFF?text=Farming+Simulator" alt="Farming Simulator" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-yellow-500 text-white text-xs font-bold px-2 py-1 rounded flex items-center">
<i class="fas fa-star mr-1"></i> 4.9
</div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-1">Farming Simulator 22</h3>
<div class="flex items-center text-sm text-gray-500 mb-3">
<span class="mr-3"><i class="fas fa-tag mr-1"></i> Simulation</span>
<span><i class="fas fa-download mr-1"></i> 12.4K</span>
</div>
<p class="text-gray-600 text-sm mb-4">Unlimited money, fast growth, unlock all vehicles and more.</p>
<div class="game-overlay absolute inset-0 bg-black bg-opacity-80 flex flex-col justify-center items-center p-4">
<button class="bg-secondary hover:bg-green-500 text-white font-bold py-2 px-4 rounded-full mb-3 transition duration-300 w-full max-w-xs">
<i class="fas fa-download mr-2"></i> Download Trainer
</button>
<button class="bg-white hover:bg-gray-200 text-dark font-bold py-2 px-4 rounded-full transition duration-300 w-full max-w-xs">
<i class="fas fa-info-circle mr-2"></i> Details
</button>
</div>
</div>
</div>
<!-- Trainer 2 -->
<div class="game-card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="relative">
<img src="https://via.placeholder.com/400x225/10B981/FFFFFF?text=Age+of+Empires" alt="Age of Empires" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-yellow-500 text-white text-xs font-bold px-2 py-1 rounded flex items-center">
<i class="fas fa-star mr-1"></i> 4.8
</div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-1">Age of Empires IV</h3>
<div class="flex items-center text-sm text-gray-500 mb-3">
<span class="mr-3"><i class="fas fa-tag mr-1"></i> Strategy</span>
<span><i class="fas fa-download mr-1"></i> 9.7K</span>
</div>
<p class="text-gray-600 text-sm mb-4">Infinite resources, instant build, god mode and more.</p>
<div class="game-overlay absolute inset-0 bg-black bg-opacity-80 flex flex-col justify-center items-center p-4">
<button class="bg-secondary hover:bg-green-500 text-white font-bold py-2 px-4 rounded-full mb-3 transition duration-300 w-full max-w-xs">
<i class="fas fa-download mr-2"></i> Download Trainer
</button>
<button class="bg-white hover:bg-gray-200 text-dark font-bold py-2 px-4 rounded-full transition duration-300 w-full max-w-xs">
<i class="fas fa-info-circle mr-2"></i> Details
</button>
</div>
</div>
</div>
<!-- Trainer 3 -->
<div class="game-card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="relative">
<img src="https://via.placeholder.com/400x225/3B82F6/FFFFFF?text=FIFA+23" alt="FIFA 23" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-yellow-500 text-white text-xs font-bold px-2 py-1 rounded flex items-center">
<i class="fas fa-star mr-1"></i> 4.7
</div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-1">FIFA 23</h3>
<div class="flex items-center text-sm text-gray-500 mb-3">
<span class="mr-3"><i class="fas fa-tag mr-1"></i> Sports</span>
<span><i class="fas fa-download mr-1"></i> 15.2K</span>
</div>
<p class="text-gray-600 text-sm mb-4">Unlimited coins, max stats, unlock all players and more.</p>
<div class="game-overlay absolute inset-0 bg-black bg-opacity-80 flex flex-col justify-center items-center p-4">
<button class="bg-secondary hover:bg-green-500 text-white font-bold py-2 px-4 rounded-full mb-3 transition duration-300 w-full max-w-xs">
<i class="fas fa-download mr-2"></i> Download Trainer
</button>
<button class="bg-white hover:bg-gray-200 text-dark font-bold py-2 px-4 rounded-full transition duration-300 w-full max-w-xs">
<i class="fas fa-info-circle mr-2"></i> Details
</button>
</div>
</div>
</div>
<!-- Trainer 4 -->
<div class="game-card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl transition duration-300 relative">
<div class="relative">
<img src="https://via.placeholder.com/400x225/F59E0B/FFFFFF?text=Minecraft" alt="Minecraft" class="w-full h-48 object-cover">
<div class="absolute top-2 right-2 bg-yellow-500 text-white text-xs font-bold px-2 py-1 rounded flex items-center">
<i class="fas fa-star mr-1"></i> 4.9
</div>
</div>
<div class="p-4">
<h3 class="font-bold text-lg mb-1">Minecraft</h3>
<div class="flex items-center text-sm text-gray-500 mb-3">
<span class="mr-3"><i class="fas fa-tag mr-1"></i> Sandbox</span>
<span><i class="fas fa-download mr-1"></i> 24.8K</span>
</div>
<p class="text-gray-600 text-sm mb-4">Creative mode, item spawner, fly mode and more.</p>
<div class="game-overlay absolute inset-0 bg-black bg-opacity-80 flex flex-col justify-center items-center p-4">
<button class="bg-secondary hover:bg-green-500 text-white font-bold py-2 px-4 rounded-full mb-3 transition duration-300 w-full max-w-xs">
<i class="fas fa-download mr-2"></i> Download Trainer
</button>
<button class="bg-white hover:bg-gray-200 text-dark font-bold py-2 px-4 rounded-full transition duration-300 w-full max-w-xs">
<i class="fas fa-info-circle mr-2"></i> Details
</button>
</div>
</div>
</div>
</div>
<div class="text-center mt-10">
<button class="bg-primary hover:bg-indigo-700 text-white font-bold py-3 px-8 rounded-full transition duration-300">
View All Trainers <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-dark">Why Choose GameMaster Pro?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-light rounded-lg p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-shield-alt"></i>
</div>
<h3 class="font-bold text-xl mb-3">100% Safe</h3>
<p class="text-gray-600">All our trainers are scanned with multiple antivirus programs and verified by our team before release.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-light rounded-lg p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-sync-alt"></i>
</div>
<h3 class="font-bold text-xl mb-3">Regular Updates</h3>
<p class="text-gray-600">We update our trainers within 24 hours of game patches to ensure compatibility with the latest version.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-light rounded-lg p-6 shadow-md hover:shadow-lg transition duration-300">
<div class="text-primary text-4xl mb-4">
<i class="fas fa-headset"></i>
</div>
<h3 class="font-bold text-xl mb-3">Premium Support</h3>
<p class="text-gray-600">Our support team is available 24/7 to help you with any issues or questions about our trainers.</p>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12 text-dark">How It Works</h2>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<!-- Step 1 -->
<div class="step-card text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4 text-2xl font-bold">1</div>
<h3 class="font-bold text-lg mb-2">Find Your Game</h3>
<p class="text-gray-600">Search or browse our extensive collection of game trainers.</p>
</div>
<!-- Step 2 -->
<div class="step-card text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4 text-2xl font-bold">2</div>
<h3 class="font-bold text-lg mb-2">Download Trainer</h3>
<p class="text-gray-600">Get the trainer file for your specific game version.</p>
</div>
<!-- Step 3 -->
<div class="step-card text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4 text-2xl font-bold">3</div>
<h3 class="font-bold text-lg mb-2">Run With Game</h3>
<p class="text-gray-600">Launch the trainer after starting your game.</p>
</div>
<!-- Step 4 -->
<div class="step-card text-center">
<div class="bg-primary text-white rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4 text-2xl font-bold">4</div>
<h3 class="font-bold text-lg mb-2">Activate Cheats</h3>
<p class="text-gray-600">Press the hotkeys to activate the cheats you want.</p>
</div>
</div>
<div class="mt-12 bg-white rounded-xl shadow-lg overflow-hidden max-w-4xl mx-auto">
<div class="md:flex">
<div class="md:w-1/2 bg-primary text-white p-8 flex items-center">
<div>
<h3 class="text-2xl font-bold mb-4">Video Tutorial</h3>
<p class="mb-6">Watch our step-by-step guide on how to use GameMaster Pro trainers effectively.</p>
<button class="bg-white text-primary font-bold py-2 px-6 rounded-full hover:bg-gray-100 transition duration-300">
<i class="fas fa-play mr-2"></i> Watch Now
</button>
</div>
</div>
<div class="md:w-1/2">
<div class="aspect-w-16 aspect-h-9">
<img src="https://via.placeholder.com/600x400/1F2937/FFFFFF?text=Video+Thumbnail" alt="Video Tutorial" class="w-full h-full object-cover">
<div class="absolute inset-0 flex items-center justify-center">
<div class="bg-white bg-opacity-80 rounded-full w-16 h-16 flex items-center justify-center">
<i class="fas fa-play text-primary text-2xl"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-primary text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Get New Trainers First</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Subscribe to our newsletter and be the first to know when we release new trainers and updates.</p>
<div class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-dark">
<button class="bg-secondary hover:bg-green-500 px-6 py-3 rounded-r-lg font-bold transition duration-300">
Subscribe <i class="fas fa-paper-plane ml-2"></i>
</button>
</div>
<p class="mt-4 text-sm opacity-80">We respect your privacy. Unsubscribe at any time.</p>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<!-- About -->
<div>
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-gamepad text-secondary mr-2"></i> GameMaster Pro
</h3>
<p class="text-gray-400 mb-4">The ultimate collection of game trainers for all PC game categories since 2010.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-discord"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<!-- Quick Links -->
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">All Trainers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Request Trainer</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact Us</a></li>
</ul>
</div>
<!-- Categories -->
<div>
<h3 class="text-lg font-bold mb-4">Categories</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Simulation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Strategy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Sports</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">RPG</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Sandbox</a></li>
</ul>
</div>
<!-- Contact -->
<div>
<h3 class="text-lg font-bold mb-4">Contact</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-envelope text-secondary mr-2"></i>
<span class="text-gray-400">support@gamemasterpro.com</span>
</li>
<li class="flex items-center">
<i class="fas fa-globe text-secondary mr-2"></i>
<span class="text-gray-400">www.gamemasterpro.com</span>
</li>
</ul>
<div class="mt-6">
<button class="bg-primary hover:bg-indigo-700 text-white font-bold py-2 px-4 rounded-full text-sm transition duration-300">
<i class="fas fa-question-circle mr-2"></i> Support Center
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 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 GameMaster Pro. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-500 hover:text-white text-sm transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-500 hover:text-white text-sm transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-500 hover:text-white text-sm transition duration-300">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Simple script to toggle category buttons
document.addEventListener('DOMContentLoaded', function() {
const categoryBtns = document.querySelectorAll('.category-btn');
categoryBtns.forEach(btn => {
btn.addEventListener('click', function() {
// Remove active class from all buttons
categoryBtns.forEach(b => b.classList.remove('active', 'bg-primary', 'text-white'));
categoryBtns.forEach(b => b.classList.add('bg-gray-200', 'text-gray-700'));
// Add active class to clicked button
this.classList.remove('bg-gray-200', 'text-gray-700');
this.classList.add('active', 'bg-primary', 'text-white');
});
});
// Game card hover effect
const gameCards = document.querySelectorAll('.game-card');
gameCards.forEach(card => {
card.addEventListener('mouseenter', function() {
this.querySelector('.game-overlay').style.opacity = '1';
this.querySelector('.game-overlay').style.transform = 'translateY(0)';
});
card.addEventListener('mouseleave', function() {
this.querySelector('.game-overlay').style.opacity = '0';
this.querySelector('.game-overlay').style.transform = 'translateY(10px)';
});
});
});
</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=program67/gamemaster-pro-software" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |