| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>CrashHack Predictor - Win at Crash Games</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| <style> |
| .hero-gradient { |
| background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); |
| } |
| .pulse-animate { |
| animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; |
| } |
| @keyframes pulse { |
| 0%, 100% { opacity: 1; } |
| 50% { opacity: 0.7; } |
| } |
| .glow-text { |
| text-shadow: 0 0 10px rgba(100, 200, 255, 0.5); |
| } |
| </style> |
| </head> |
| <body class="font-sans text-white"> |
| <div id="vanta-bg" class="fixed top-0 left-0 w-full h-full z-0"></div> |
| |
| <div class="relative z-10"> |
| |
| <section class="hero-gradient min-h-screen flex items-center justify-center px-4 py-20"> |
| <div class="max-w-4xl mx-auto text-center"> |
| <h1 class="text-5xl md:text-7xl font-bold mb-6 glow-text"> |
| <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-500">CrashHack Predictor</span> |
| </h1> |
| <p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto"> |
| The <span class="font-bold text-blue-300">most accurate</span> prediction bot for Crash games. |
| <br>Join thousands of winners today! |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <a href="https://t.me/CrashHackPredictorBot" class="bg-gradient-to-r from-green-500 to-teal-400 hover:from-green-600 hover:to-teal-500 text-white font-bold py-4 px-8 rounded-full text-lg shadow-lg transform hover:scale-105 transition-all duration-300 flex items-center justify-center"> |
| <i data-feather="send" class="mr-2"></i> Join Telegram Bot |
| </a> |
| <a href="#how-it-works" class="bg-white bg-opacity-20 hover:bg-opacity-30 border border-white border-opacity-20 text-white font-bold py-4 px-8 rounded-full text-lg shadow-lg transform hover:scale-105 transition-all duration-300 flex items-center justify-center"> |
| <i data-feather="info" class="mr-2"></i> How It Works |
| </a> |
| </div> |
| <div class="mt-16 flex justify-center"> |
| <div class="relative w-full max-w-2xl bg-black bg-opacity-40 rounded-xl p-6 backdrop-blur-sm"> |
| <div class="flex justify-between mb-4 text-sm text-gray-300"> |
| <span>Prediction Accuracy</span> |
| <span>92.7%</span> |
| </div> |
| <div class="w-full bg-gray-700 rounded-full h-4"> |
| <div class="bg-gradient-to-r from-green-400 to-blue-500 h-4 rounded-full" style="width: 92.7%"></div> |
| </div> |
| <div class="absolute -top-5 -right-5 bg-blue-500 text-white rounded-full px-4 py-2 text-sm font-bold shadow-xl pulse-animate"> |
| LIVE |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| <section class="py-16 px-4 bg-gradient-to-b from-gray-900 to-black"> |
| <div class="max-w-6xl mx-auto"> |
| <h2 class="text-4xl font-bold text-center mb-12 glow-text"> |
| <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-500">Our Telegram Bot</span> |
| </h2> |
| <div class="flex flex-col lg:flex-row items-center gap-12"> |
| <div class="lg:w-1/2"> |
| <img src="https://huggingface.co/spaces/timoon811/crashhack-predictor-master-bot/resolve/main/images/1.jpeg" |
| alt="CrashHack Predictor Bot Interface" |
| class="rounded-xl shadow-2xl border-2 border-blue-500 transform hover:scale-105 transition-all duration-300"> |
| </div> |
| <div class="lg:w-1/2 space-y-6"> |
| <h3 class="text-3xl font-bold">Premium Prediction Features</h3> |
| <ul class="space-y-4 text-gray-300"> |
| <li class="flex items-start"> |
| <i data-feather="check-circle" class="w-6 h-6 text-green-500 mr-3 mt-1"></i> |
| <span>Real-time crash point predictions with 92.7% accuracy</span> |
| </li> |
| <li class="flex items-start"> |
| <i data-feather="check-circle" class="w-6 h-6 text-green-500 mr-3 mt-1"></i> |
| <span>Instant notifications for optimal betting moments</span> |
| </li> |
| <li class="flex items-start"> |
| <i data-feather="check-circle" class="w-6 h-6 text-green-500 mr-3 mt-1"></i> |
| <span>Historical data analysis and pattern recognition</span> |
| </li> |
| <li class="flex items-start"> |
| <i data-feather="check-circle" class="w-6 h-6 text-green-500 mr-3 mt-1"></i> |
| <span>Customizable alerts based on your risk profile</span> |
| </li> |
| </ul> |
| <a href="https://t.me/CrashHackPredictorBot" class="inline-block bg-gradient-to-r from-blue-500 to-purple-600 hover:from-blue-600 hover:to-purple-700 text-white font-bold py-4 px-8 rounded-full text-lg shadow-lg transform hover:scale-105 transition-all duration-300 flex items-center justify-center"> |
| <i data-feather="send" class="mr-2"></i> Try It Now |
| </a> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="how-it-works" class="py-12 px-4 bg-black bg-opacity-70"> |
| <div class="max-w-6xl mx-auto"> |
| <h2 class="text-4xl font-bold text-center mb-8 glow-text"> |
| <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-500">How CrashHack Predictor Works</span> |
| </h2> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="bg-gradient-to-b from-gray-800 to-gray-900 p-8 rounded-xl shadow-xl border border-gray-700"> |
| <div class="flex justify-center mb-6"> |
| <div class="bg-blue-500 bg-opacity-20 p-4 rounded-full"> |
| <i data-feather="user" class="w-8 h-8 text-blue-400"></i> |
| </div> |
| </div> |
| <h3 class="text-2xl font-bold text-center mb-4">1. Join the Bot</h3> |
| <p class="text-gray-300 text-center"> |
| Start by joining our Telegram bot. It's free to access and requires no registration. |
| </p> |
| </div> |
| <div class="bg-gradient-to-b from-gray-800 to-gray-900 p-8 rounded-xl shadow-xl border border-gray-700"> |
| <div class="flex justify-center mb-6"> |
| <div class="bg-purple-500 bg-opacity-20 p-4 rounded-full"> |
| <i data-feather="cpu" class="w-8 h-8 text-purple-400"></i> |
| </div> |
| </div> |
| <h3 class="text-2xl font-bold text-center mb-4">2. Get Predictions</h3> |
| <p class="text-gray-300 text-center"> |
| Our AI analyzes patterns and provides real-time crash point predictions with 92%+ accuracy. |
| </p> |
| </div> |
| <div class="bg-gradient-to-b from-gray-800 to-gray-900 p-8 rounded-xl shadow-xl border border-gray-700"> |
| <div class="flex justify-center mb-6"> |
| <div class="bg-green-500 bg-opacity-20 p-4 rounded-full"> |
| <i data-feather="dollar-sign" class="w-8 h-8 text-green-400"></i> |
| </div> |
| </div> |
| <h3 class="text-2xl font-bold text-center mb-4">3. Win More</h3> |
| <p class="text-gray-300 text-center"> |
| Follow the bot's recommendations to make smarter bets and increase your winnings. |
| </p> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| <section class="py-12 px-4 bg-gradient-to-r from-purple-900 to-blue-900"> |
| <div class="max-w-4xl mx-auto text-center"> |
| <h2 class="text-4xl md:text-5xl font-bold mb-6"> |
| Ready to <span class="text-transparent bg-clip-text bg-gradient-to-r from-green-400 to-blue-500">Start Winning</span>? |
| </h2> |
| <p class="text-xl mb-6 max-w-2xl mx-auto"> |
| Join <span class="font-bold">10,000+</span> players who use CrashHack Predictor daily to maximize their profits. |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <a href="https://t.me/CrashHackPredictorBot" class="bg-white text-purple-900 hover:bg-gray-100 font-bold py-5 px-10 rounded-full text-xl shadow-2xl transform hover:scale-105 transition-all duration-300 flex items-center justify-center"> |
| <i data-feather="send" class="mr-3"></i> Get Instant Access |
| </a> |
| </div> |
| <div class="mt-12 flex justify-center"> |
| <div class="flex flex-wrap justify-center gap-4"> |
| <div class="bg-black bg-opacity-20 px-6 py-3 rounded-full flex items-center"> |
| <i data-feather="clock" class="mr-2 text-green-400"></i> |
| <span>24/7 Predictions</span> |
| </div> |
| <div class="bg-black bg-opacity-20 px-6 py-3 rounded-full flex items-center"> |
| <i data-feather="shield" class="mr-2 text-blue-400"></i> |
| <span>Secure & Private</span> |
| </div> |
| <div class="bg-black bg-opacity-20 px-6 py-3 rounded-full flex items-center"> |
| <i data-feather="bar-chart-2" class="mr-2 text-purple-400"></i> |
| <span>Advanced AI</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| <footer class="py-6 px-4 bg-black bg-opacity-80"> |
| <div class="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center"> |
| <div class="mb-4 md:mb-0"> |
| <h3 class="text-2xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-500"> |
| CrashHack Predictor |
| </h3> |
| <p class="text-gray-400 text-sm">© 2023 All Rights Reserved</p> |
| </div> |
| <div class="flex gap-4"> |
| <a href="https://t.me/CrashHackPredictorBot" class="text-gray-300 hover:text-white transition-colors"> |
| <i data-feather="send" class="w-6 h-6"></i> |
| </a> |
| <a href="#" class="text-gray-300 hover:text-white transition-colors"> |
| <i data-feather="help-circle" class="w-6 h-6"></i> |
| </a> |
| <a href="#" class="text-gray-300 hover:text-white transition-colors"> |
| <i data-feather="mail" class="w-6 h-6"></i> |
| </a> |
| </div> |
| </div> |
| </footer> |
| </div> |
|
|
| <script> |
| feather.replace(); |
| VANTA.NET({ |
| el: "#vanta-bg", |
| mouseControls: true, |
| touchControls: true, |
| gyroControls: false, |
| minHeight: 200.00, |
| minWidth: 200.00, |
| scale: 1.00, |
| scaleMobile: 1.00, |
| color: 0x3f5efb, |
| backgroundColor: 0x0, |
| points: 12.00, |
| maxDistance: 20.00, |
| spacing: 15.00 |
| }); |
| </script> |
| </body> |
| </html> |
|
|