Spaces:
Running
Running
| <html lang="ru"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Crash Predictor AI - Предсказываем краш</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=Inter:wght@400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #0a0a0a; | |
| color: #e5e7eb; | |
| scroll-behavior: smooth; | |
| } | |
| .neon-red { | |
| text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000; | |
| } | |
| .neon-green { | |
| text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00; | |
| } | |
| .neon-blue { | |
| text-shadow: 0 0 5px #00a2ff, 0 0 10px #00a2ff; | |
| } | |
| .glow-box { | |
| box-shadow: 0 0 15px rgba(0, 162, 255, 0.5); | |
| } | |
| .signal-badge { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { opacity: 1; } | |
| 50% { opacity: 0.7; } | |
| 100% { opacity: 1; } | |
| } | |
| .live-badge { | |
| animation: live-pulse 1.5s infinite; | |
| } | |
| @keyframes live-pulse { | |
| 0% { background-color: #ef4444; } | |
| 50% { background-color: #dc2626; } | |
| 100% { background-color: #ef4444; } | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); | |
| } | |
| .tab-active { | |
| border-bottom: 2px solid #3b82f6; | |
| color: #3b82f6; | |
| } | |
| .game-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); | |
| } | |
| .input-highlight { | |
| box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Header --> | |
| <header class="gradient-bg border-b border-gray-800 sticky top-0 z-50"> | |
| <div class="container mx-auto px-4 py-4 flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-10 h-10 bg-blue-500 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-brain text-white text-xl"></i> | |
| </div> | |
| <h1 class="text-2xl font-bold neon-blue">Crash<span class="text-white">Predictor</span>AI</h1> | |
| </div> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="#how-it-works" class="text-gray-300 hover:text-white transition">Как работает</a> | |
| <a href="#demo" class="text-gray-300 hover:text-white transition">Демо</a> | |
| <a href="#pricing" class="text-gray-300 hover:text-white transition">Тарифы</a> | |
| <a href="#testimonials" class="text-gray-300 hover:text-white transition">Отзывы</a> | |
| </nav> | |
| <div class="flex items-center space-x-4"> | |
| <button class="hidden md:block px-4 py-2 rounded-md bg-gradient-to-r from-blue-500 to-blue-600 text-white hover:from-blue-600 hover:to-blue-700 transition"> | |
| Войти | |
| </button> | |
| <button class="md:hidden text-gray-300"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="relative overflow-hidden"> | |
| <div class="absolute inset-0 bg-gradient-to-b from-blue-900/20 to-black/80 z-0"></div> | |
| <div class="container mx-auto px-4 py-20 md:py-32 relative z-10"> | |
| <div class="max-w-3xl mx-auto text-center"> | |
| <div class="inline-flex items-center px-4 py-1 rounded-full bg-gray-800 mb-4"> | |
| <span class="live-badge w-2 h-2 rounded-full mr-2"></span> | |
| <span class="text-sm font-medium text-gray-200">LIVE СИГНАЛЫ</span> | |
| </div> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6"> | |
| <span class="neon-blue">ИИ</span>, который чувствует <span class="neon-red">Crash</span> до старта | |
| </h1> | |
| <p class="text-xl md:text-2xl text-gray-300 mb-8"> | |
| Вводи историю — получай прогноз и забирай выигрыш раньше краша. | |
| <br> | |
| <span class="text-blue-400">Точность до 78%</span> на основе анализа 100,000+ раундов. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="px-8 py-4 rounded-lg bg-gradient-to-r from-green-500 to-green-600 text-white font-bold text-lg hover:from-green-600 hover:to-green-700 transition shadow-lg glow-box"> | |
| Получить бесплатные сигналы | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </button> | |
| <button class="px-8 py-4 rounded-lg bg-gray-800 text-white font-bold text-lg hover:bg-gray-700 transition border border-gray-700"> | |
| <i class="fas fa-play-circle mr-2"></i> | |
| Как это работает | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Games Supported --> | |
| <section class="py-12 bg-gray-900/50"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-2xl md:text-3xl font-bold text-center mb-12">Работает с популярными Crash-играми</h2> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <div class="game-card bg-gray-800 rounded-xl p-6 text-center transition duration-300"> | |
| <div class="w-16 h-16 mx-auto mb-4 bg-blue-500/20 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-plane text-blue-400 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Aviator</h3> | |
| <p class="text-gray-400 text-sm">Spribe</p> | |
| </div> | |
| <div class="game-card bg-gray-800 rounded-xl p-6 text-center transition duration-300"> | |
| <div class="w-16 h-16 mx-auto mb-4 bg-red-500/20 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-rocket text-red-400 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">JetX</h3> | |
| <p class="text-gray-400 text-sm">Smartsoft</p> | |
| </div> | |
| <div class="game-card bg-gray-800 rounded-xl p-6 text-center transition duration-300"> | |
| <div class="w-16 h-16 mx-auto mb-4 bg-green-500/20 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-chart-line text-green-400 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Crash</h3> | |
| <p class="text-gray-400 text-sm">BGaming</p> | |
| </div> | |
| <div class="game-card bg-gray-800 rounded-xl p-6 text-center transition duration-300"> | |
| <div class="w-16 h-16 mx-auto mb-4 bg-purple-500/20 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-bolt text-purple-400 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Mines</h3> | |
| <p class="text-gray-400 text-sm">Spribe</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works --> | |
| <section id="how-it-works" class="py-20 bg-gray-900"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Как работает <span class="neon-blue">Crash Predictor AI</span></h2> | |
| <p class="text-xl text-gray-400">3 простых шага к прибыльным ставкам</p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <div class="w-16 h-16 mb-6 rounded-full bg-blue-500/10 flex items-center justify-center text-blue-400 text-2xl"> | |
| <span class="text-3xl font-bold">1</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Введи историю коэффициентов</h3> | |
| <p class="text-gray-400">Скопируй последние 5-10 коэффициентов из игры и вставь в наш анализатор.</p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <div class="w-16 h-16 mb-6 rounded-full bg-green-500/10 flex items-center justify-center text-green-400 text-2xl"> | |
| <span class="text-3xl font-bold">2</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Получи прогноз и силу сигнала</h3> | |
| <p class="text-gray-400">Наш ИИ анализирует паттерны и выдаёт прогноз с уровнем уверенности.</p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <div class="w-16 h-16 mb-6 rounded-full bg-purple-500/10 flex items-center justify-center text-purple-400 text-2xl"> | |
| <span class="text-3xl font-bold">3</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Реши — играть или пропустить</h3> | |
| <p class="text-gray-400">Принимай обоснованные решения: "Ставь", "Пропусти", "Х2 будет" или "Опасная зона".</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Demo Section --> | |
| <section id="demo" class="py-20 bg-gradient-to-b from-gray-900 to-gray-900/80"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-5xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 neon-blue">Демо-интерфейс</h2> | |
| <p class="text-xl text-gray-400">Посмотрите, как работает наш предсказатель</p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden border border-gray-700"> | |
| <div class="bg-gray-900 px-6 py-3 border-b border-gray-700 flex items-center"> | |
| <div class="flex space-x-2 mr-4"> | |
| <div class="w-3 h-3 rounded-full bg-red-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| <div class="text-sm text-gray-400">predictor-ai.com/demo</div> | |
| </div> | |
| <div class="p-6 md:p-8"> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">Введите последние коэффициенты</h3> | |
| <div class="mb-6"> | |
| <label class="block text-gray-400 mb-2">Пример формата: 1.45, 2.10, 0.95, 3.75, 1.20</label> | |
| <div class="relative"> | |
| <textarea id="coefficients-input" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 text-white focus:outline-none focus:input-highlight" rows="4" placeholder="1.45, 2.10, 0.95, 3.75, 1.20"></textarea> | |
| <div class="absolute bottom-3 right-3 text-gray-500 text-sm">5/5</div> | |
| </div> | |
| </div> | |
| <button id="predict-btn" class="w-full py-3 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition"> | |
| <i class="fas fa-brain mr-2"></i> Проанализировать | |
| </button> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">Результат анализа</h3> | |
| <div id="result-container" class="bg-gray-700 rounded-lg p-6 h-full flex flex-col justify-center items-center"> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 mx-auto mb-4 bg-gray-600 rounded-full flex items-center justify-center text-gray-400"> | |
| <i class="fas fa-question text-2xl"></i> | |
| </div> | |
| <p class="text-gray-400">Введите коэффициенты и нажмите "Проанализировать"</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Why It Works --> | |
| <section class="py-20 bg-gray-900"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Почему это <span class="neon-green">работает</span></h2> | |
| <p class="text-xl text-gray-400">Наша технология основана на глубоком анализе данных</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-8 mb-12"> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <div class="w-12 h-12 mb-4 bg-blue-500/10 rounded-full flex items-center justify-center text-blue-400"> | |
| <i class="fas fa-database text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">100,000+ проанализированных спинов</h3> | |
| <p class="text-gray-400">Наша база данных содержит историю тысяч раундов из разных Crash-игр, что позволяет выявлять скрытые закономерности.</p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <div class="w-12 h-12 mb-4 bg-green-500/10 rounded-full flex items-center justify-center text-green-400"> | |
| <i class="fas fa-project-diagram text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Адаптивные алгоритмы</h3> | |
| <p class="text-gray-400">ИИ постоянно обучается на новых данных, подстраиваясь под изменения в алгоритмах игр и повышая точность прогнозов.</p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 border border-blue-500/30"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/3 mb-6 md:mb-0 flex justify-center"> | |
| <div class="w-32 h-32 rounded-full bg-blue-500/10 flex items-center justify-center text-blue-400"> | |
| <i class="fas fa-shield-alt text-5xl"></i> | |
| </div> | |
| </div> | |
| <div class="md:w-2/3 md:pl-8"> | |
| <h3 class="text-2xl font-bold mb-4 neon-blue">Важно понимать</h3> | |
| <p class="text-gray-300 mb-4">Это <span class="font-semibold">не взлом</span> игры и не гарантия выигрыша. Мы анализируем статистические закономерности, которые могут помочь вам принимать более обоснованные решения.</p> | |
| <p class="text-gray-400">Используйте наш сервис как дополнительный инструмент в сочетании с грамотной стратегией управления банком.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing --> | |
| <section id="pricing" class="py-20 bg-gradient-to-b from-gray-900 to-black"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Выберите свой <span class="neon-blue">тариф</span></h2> | |
| <p class="text-xl text-gray-400">Бесплатный доступ с ограничениями или полный функционал Premium</p> | |
| </div> | |
| <div class="max-w-5xl mx-auto"> | |
| <div class="flex justify-center mb-8 border-b border-gray-700"> | |
| <button id="monthly-tab" class="px-6 py-3 font-medium tab-active">Ежемесячная подписка</button> | |
| <button id="yearly-tab" class="px-6 py-3 font-medium text-gray-400">Годовая подписка (-20%)</button> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div class="bg-gray-800 rounded-xl p-8 border border-gray-700"> | |
| <h3 class="text-2xl font-bold mb-2">Free</h3> | |
| <p class="text-gray-400 mb-6">Базовые возможности для тестирования</p> | |
| <div class="text-4xl font-bold mb-6">$0<span class="text-lg text-gray-400">/навсегда</span></div> | |
| <button class="w-full py-3 bg-gray-700 hover:bg-gray-600 text-white font-medium rounded-lg transition mb-8"> | |
| Начать сейчас | |
| </button> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Прогноз по истории</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-gray-700 rounded-full flex items-center justify-center text-gray-500 text-xs border border-gray-600"> | |
| <i class="fas fa-times"></i> | |
| </div> | |
| <span class="text-gray-500">Автоподключение к игре</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Лимит: 5 прогнозов/сутки</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-gray-700 rounded-full flex items-center justify-center text-gray-500 text-xs border border-gray-600"> | |
| <i class="fas fa-times"></i> | |
| </div> | |
| <span class="text-gray-500">История аналитики</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-yellow-500/20 rounded-full flex items-center justify-center text-yellow-400 text-xs"> | |
| <i class="fas fa-exclamation"></i> | |
| </div> | |
| <span>Базовые индикаторы риска</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-gray-700 rounded-full flex items-center justify-center text-gray-500 text-xs border border-gray-600"> | |
| <i class="fas fa-times"></i> | |
| </div> | |
| <span class="text-gray-500">Поддержка 24/7</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 border-2 border-blue-500 relative overflow-hidden"> | |
| <div class="absolute top-0 right-0 bg-blue-600 text-white text-xs font-bold px-3 py-1 rounded-bl-lg">ПОПУЛЯРНЫЙ</div> | |
| <h3 class="text-2xl font-bold mb-2">Premium</h3> | |
| <p class="text-gray-400 mb-6">Полный доступ ко всем функциям</p> | |
| <div class="text-4xl font-bold mb-6">$29<span class="text-lg text-gray-400">/месяц</span></div> | |
| <button class="w-full py-3 bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700 text-white font-medium rounded-lg transition mb-8"> | |
| Купить Premium | |
| </button> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Прогноз по истории</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Автоподключение к игре</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Без ограничений</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>История аналитики</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Углубленные индикаторы риска</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Поддержка 24/7</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Настройка алертов</span> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-5 h-5 mt-1 mr-3 bg-green-500/20 rounded-full flex items-center justify-center text-green-400 text-xs"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| <span>Telegram бот с сигналами</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section id="testimonials" class="py-20 bg-gray-900"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4">Отзывы <span class="neon-green">игроков</span></h2> | |
| <p class="text-xl text-gray-400">Что говорят наши пользователи</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-8"> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-blue-500/10 flex items-center justify-center text-blue-400 mr-4"> | |
| <i class="fas fa-user text-xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Алексей К.</h4> | |
| <div class="flex text-yellow-400 text-sm"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-300 italic">"Перестал терять банк — теперь играю только по сигналам. За последний месяц увеличил депозит в 3 раза, используя стратегию с предсказаниями."</p> | |
| <div class="mt-4 text-sm text-gray-500">Использует Premium • 2 месяца</div> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full bg-green-500/10 flex items-center justify-center text-green-400 mr-4"> | |
| <i class="fas fa-user text-xl"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Дмитрий С.</h4> | |
| <div class="flex text-yellow-400 text-sm"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-300 italic">"3 раза подряд ловил Х5 благодаря предсказаниям. Особенно нравится функция алертов — теперь не пропускаю выгодные моменты."</p> | |
| <div class="mt-4 text-sm text-gray-500">Использует Premium • 3 недели</div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Lead Magnet --> | |
| <section class="py-20 bg-gradient-to-r from-blue-900/40 to-gray-900"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto bg-gray-800 rounded-xl p-8 md:p-12 border border-blue-500/30"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/3 mb-8 md:mb-0 flex justify-center"> | |
| <div class="w-40 h-40 bg-blue-500/10 rounded-xl flex items-center justify-center text-blue-400 border border-blue-500/30"> | |
| <i class="fas fa-book-open text-5xl"></i> | |
| </div> | |
| </div> | |
| <div class="md:w-2/3 md:pl-8"> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-4">Скачайте бесплатный PDF</h2> | |
| <h3 class="text-xl md:text-2xl font-bold mb-4 neon-green">"5 стратегий ставок в Crash, которые спасают твой банк"</h3> | |
| <p class="text-gray-300 mb-6">Узнайте проверенные тактики управления банком, как распознавать опасные раунды и когда увеличивать ставки.</p> | |
| <form class="space-y-4"> | |
| <div> | |
| <input type="email" placeholder="Ваш email" class="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg text-white focus:outline-none focus:input-highlight"> | |
| </div> | |
| <button type="submit" class="w-full py-3 bg-gradient-to-r from-green-500 to-green-600 hover:from-green-600 hover:to-green-700 text-white font-medium rounded-lg transition"> | |
| Получить PDF <i class="fas fa-download ml-2"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Telegram CTA --> | |
| <section class="py-16 bg-gray-900 border-t border-gray-800"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto bg-gray-800 rounded-xl p-8 text-center"> | |
| <div class="w-16 h-16 mx-auto mb-6 bg-blue-500/10 rounded-full flex items-center justify-center text-blue-400"> | |
| <i class="fab fa-telegram text-2xl"></i> | |
| </div> | |
| <h2 class="text-2xl md:text-3xl font-bold mb-4">Получайте сигналы в Telegram</h2> | |
| <p class="text-gray-300 mb-6 max-w-2xl mx-auto">Подключите нашего бота и получайте прогнозы прямо в мессенджер. Доступно для Premium-пользователей.</p> | |
| <button class="px-8 py-3 bg-gradient-to-r from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-700 text-white font-medium rounded-lg transition inline-flex items-center"> | |
| <i class="fab fa-telegram mr-2 text-xl"></i> Подключить Telegram бота | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ --> | |
| <section class="py-20 bg-black"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-12 text-center">Частые вопросы</h2> | |
| <div class="space-y-4"> | |
| <div class="bg-gray-900 rounded-lg overflow-hidden border border-gray-800"> | |
| <button class="faq-toggle w-full px-6 py-4 text-left flex justify-between items-center"> | |
| <span class="font-medium">Это легально?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">Да, наш сервис полностью легален. Мы не взламываем игры и не вмешиваемся в их работу. Анализируем только статистические данные, что не противоречит правилам большинства платформ.</p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg overflow-hidden border border-gray-800"> | |
| <button class="faq-toggle w-full px-6 py-4 text-left flex justify-between items-center"> | |
| <span class="font-medium">Какая точность прогнозов?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">Средняя точность наших прогнозов составляет 72-78% для сигналов с высокой уверенностью. Однако важно понимать, что это статистическая вероятность, а не гарантия результата.</p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg overflow-hidden border border-gray-800"> | |
| <button class="faq-toggle w-full px-6 py-4 text-left flex justify-between items-center"> | |
| <span class="font-medium">Как работает автоматическое подключение к игре?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">Для Premium-пользователей: вы просто вставляете ссылку на игру в нашем интерфейсе, и система начинает анализировать коэффициенты в реальном времени, отправляя вам сигналы.</p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg overflow-hidden border border-gray-800"> | |
| <button class="faq-toggle w-full px-6 py-4 text-left flex justify-between items-center"> | |
| <span class="font-medium">Можно ли тестировать Premium бесплатно?</span> | |
| <i class="fas fa-chevron-down transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content px-6 pb-4 hidden"> | |
| <p class="text-gray-400">Да, мы предлагаем 3-дневный пробный период для Premium-тарифа. Вам нужно только зарегистрироваться и добавить способ оплаты (с вас не списываются средства в течение пробного периода).</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 border-t border-gray-800"> | |
| <div class="container mx-auto px-4 py-12"> | |
| <div class="grid md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <div class="w-8 h-8 bg-blue-500 rounded-full flex items-center justify-center"> | |
| <i class="fas fa-brain text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold">CrashPredictorAI</h3> | |
| </div> | |
| <p class="text-gray-400 mb-4">ИИ-аналитика для Crash-игр. Предсказываем краш — секунды решают всё.</p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-telegram text-xl"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter text-xl"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-discord text-xl"></i></a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Сервис</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Как это работает</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Тарифы</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Демо</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Поддержка</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Помощь</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Контакты</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Условия использования</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Политика конфиденциальности</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Подписаться на новости</h4> | |
| <p class="text-gray-400 mb-4">Получайте свежие обновления и специальные предложения.</p> | |
| <form class="flex"> | |
| <input type="email" placeholder="Ваш email" class="px-4 py-2 bg-gray-700 text-white rounded-l-lg focus:outline-none w-full"> | |
| <button type="submit" class="px-4 py-2 bg-blue-600 text-white rounded-r-lg hover:bg-blue-700 transition"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-500 mb-4 md:mb-0">© 2023 Crash Predictor AI. Все права защищены.</p> | |
| <div class="flex space-x-6"> | |
| <img src="https://via.placeholder.com/40x25?text=VISA" alt="Visa" class="h-6"> | |
| <img src="https://via.placeholder.com/40x25?text=MC" alt="Mastercard" class="h-6"> | |
| <img src="https://via.placeholder.com/40x25?text=PP" alt="PayPal" class="h-6"> | |
| <img src="https://via.placeholder.com/40x25?text=Crypto" alt="Crypto" class="h-6"> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Demo Prediction Script --> | |
| <script> | |
| document.getElementById('predict-btn').addEventListener('click', function() { | |
| const input = document.getElementById('coefficients-input').value.trim(); | |
| const resultContainer = document.getElementById('result-container'); | |
| if (!input) { | |
| resultContainer.innerHTML = ` | |
| <div class="text-center"> | |
| <div class="w-16 h-16 mx-auto mb-4 bg-red-500/20 rounded-full flex items-center justify-center text-red-400"> | |
| <i class="fas fa-exclamation-triangle text-2xl"></i> | |
| </div> | |
| <p class="text-gray-400">Пожалуйста, введите коэффициенты для анализа</p> | |
| </div> | |
| `; | |
| return; | |
| } | |
| // Fake analysis with random results | |
| const predictions = [ | |
| { text: "Ставь сейчас", confidence: Math.floor(Math.random() * 30) + 70, color: "green", icon: "fa-arrow-up" }, | |
| { text: "Пропусти раунд", confidence: Math.floor(Math.random() * 30) + 70, color: "red", icon: "fa-arrow-down" }, | |
| { text: "Х2 будет", confidence: Math.floor(Math.random() * 30) + 70, color: "blue", icon: "fa-bolt" }, | |
| { text: "Опасная зона", confidence: Math.floor(Math.random() * 30) + 70, color: "yellow", icon: "fa-exclamation-triangle" } | |
| ]; | |
| const prediction = predictions[Math.floor(Math.random() * predictions.length)]; | |
| resultContainer.innerHTML = ` | |
| <div class="text-center w-full"> | |
| <div class="w-16 h-16 mx-auto mb-4 bg-${prediction.color}-500/20 rounded-full flex items-center justify-center text-${prediction.color}-400"> | |
| <i class="fas ${prediction.icon} text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-2 text-${prediction.color}-400">${prediction.text}</h3> | |
| <div class="mb-4"> | |
| <div class="w-full bg-gray-700 rounded-full h-2.5 mb-2"> | |
| <div class="bg-${prediction.color}-500 h-2.5 rounded-full" style="width: ${prediction.confidence}%"></div> | |
| </div> | |
| <p class="text-sm text-gray-400">Уверенность: ${prediction.confidence}%</p> | |
| </div> | |
| <p class="text-sm text-gray-400">На основе анализа ${Math.floor(Math.random() * 50) + 50} похожих паттернов</p> | |
| </div> | |
| `; | |
| }); | |
| // FAQ Toggle | |
| document.querySelectorAll('.faq-toggle').forEach(button => { | |
| button.addEventListener('click', () => { | |
| const content = button.nextElementSibling; | |
| const icon = button.querySelector('i'); | |
| content.classList.toggle('hidden'); | |
| icon.classList.toggle('rotate-180'); | |
| }); | |
| }); | |
| // Pricing Tabs | |
| document.getElementById('monthly-tab').addEventListener('click', function() { | |
| this.classList.add('tab-active'); | |
| this.classList.remove('text-gray-400'); | |
| document.getElementById('yearly-tab').classList.remove('tab-active'); | |
| document.getElementById('yearly-tab').classList.add('text-gray-400'); | |
| }); | |
| document.getElementById('yearly-tab').addEventListener('click', function() { | |
| this.classList.add('tab-active'); | |
| this.classList.remove('text-gray-400'); | |
| document.getElementById('monthly-tab').classList.remove('tab-active'); | |
| document.getElementById('monthly-tab').classList.add('text-gray-400'); | |
| }); | |
| </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=timoon811/land132dassd" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |