File size: 17,317 Bytes
42ad226
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Сравнение фаз слота</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
    <style>
        .glass-card {
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .payout-glow {
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
        }
        .drain-glow {
            box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
        }
        .toggle-bg {
            background: linear-gradient(90deg, rgba(236, 72, 153, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
        }
        .toggle-btn {
            transition: all 0.3s ease;
            transform: translateX(0);
        }
        .toggle-btn.payout {
            transform: translateX(100%);
        }
        .chart-container {
            transition: opacity 0.5s ease;
        }
        .glitch-effect {
            position: relative;
        }
        .glitch-effect::before, .glitch-effect::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.7);
        }
        .glitch-effect::before {
            left: 2px;
            text-shadow: -2px 0 #ff00c1;
            clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        }
        .glitch-effect::after {
            left: -2px;
            text-shadow: 2px 0 #00fff9;
            clip-path: polygon(0 60%, 100% 60%, 100% 61%, 0 61%);
        }
    </style>
</head>
<body class="bg-gray-900 text-white">
    <section class="py-20 relative overflow-hidden">
        <!-- Анимированные фоновые элементы -->
        <div class="absolute inset-0 overflow-hidden pointer-events-none">
            <div class="absolute top-1/4 -left-20 w-96 h-96 rounded-full bg-purple-900/20 blur-3xl animate-pulse"></div>
            <div class="absolute bottom-1/3 -right-20 w-96 h-96 rounded-full bg-pink-900/20 blur-3xl animate-pulse delay-300"></div>
        </div>
        
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
            <!-- Заголовок -->
            <div class="text-center mb-16">
                <h2 class="text-4xl md:text-5xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-pink-400 to-purple-500 animate__animated animate__fadeIn">
                    Фазы работы слотов
                </h2>
                <p class="text-xl text-gray-300 max-w-3xl mx-auto animate__animated animate__fadeIn animate__delay-1s">
                    Наш ИИ анализирует паттерны поведения слотов и точно определяет, когда наступает фаза отдачи
                </p>
            </div>
            
            <!-- Переключатель фаз -->
            <div class="flex flex-col items-center mb-14 animate__animated animate__fadeIn animate__delay-1s">
                <div class="relative w-64 h-12 rounded-full toggle-bg p-1 mb-4">
                    <div class="relative h-full w-full">
                        <div class="absolute inset-0 flex">
                            <span class="flex-1 flex items-center justify-center text-sm font-medium">Фаза слива</span>
                            <span class="flex-1 flex items-center justify-center text-sm font-medium">Фаза отдачи</span>
                        </div>
                        <button id="toggleBtn" class="toggle-btn absolute left-0 top-0 w-1/2 h-full bg-gradient-to-r from-pink-500 to-purple-600 rounded-full shadow-lg flex items-center justify-center text-white font-bold text-sm transition-transform duration-300 ease-in-out" onclick="togglePhase()">
                            <span id="toggleText">Слив</span>
                        </button>
                    </div>
                </div>
                <p class="text-gray-400 text-sm">Нажмите для переключения между фазами</p>
            </div>
            
            <!-- Графики -->
            <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 mb-16">
                <!-- Фаза слива -->
                <div id="drainPhase" class="glass-card rounded-2xl p-6 drain-glow transition-all duration-500">
                    <h3 class="text-xl font-semibold mb-4 flex items-center">
                        <span class="w-3 h-3 rounded-full bg-pink-500 mr-2"></span>
                        Фаза слива
                    </h3>
                    <div class="chart-container h-64">
                        <canvas id="drainChart"></canvas>
                    </div>
                    <div class="mt-6 p-4 bg-gray-800/50 rounded-lg border border-gray-700">
                        <div class="flex items-start">
                            <div class="flex-shrink-0 text-2xl mr-3">🤖</div>
                            <div>
                                <h4 class="font-medium text-pink-300 mb-1">AI Анализ</h4>
                                <p class="text-gray-300 text-sm">Слот демонстрирует нестабильные коэффициенты с тенденцией к снижению. Рекомендуется избегать ставок в этот период.</p>
                            </div>
                        </div>
                    </div>
                </div>
                
                <!-- Фаза отдачи -->
                <div id="payoutPhase" class="glass-card rounded-2xl p-6 payout-glow opacity-70 scale-95 transition-all duration-500">
                    <h3 class="text-xl font-semibold mb-4 flex items-center">
                        <span class="w-3 h-3 rounded-full bg-purple-500 mr-2"></span>
                        Фаза отдачи
                    </h3>
                    <div class="chart-container h-64">
                        <canvas id="payoutChart"></canvas>
                    </div>
                    <div class="mt-6 p-4 bg-gray-800/50 rounded-lg border border-gray-700">
                        <div class="flex items-start">
                            <div class="flex-shrink-0 text-2xl mr-3">🤖</div>
                            <div>
                                <h4 class="font-medium text-purple-300 mb-1">AI Анализ</h4>
                                <p class="text-gray-300 text-sm">Слот входит в фазу повышенной отдачи. Вероятность выигрыша увеличивается на 37% по сравнению со стандартным режимом.</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            
            <!-- Дополнительная информация -->
            <div class="max-w-4xl mx-auto glass-card rounded-2xl p-8 border border-gray-700 animate__animated animate__fadeIn animate__delay-2s">
                <h3 class="text-2xl font-bold mb-6 text-center bg-clip-text text-transparent bg-gradient-to-r from-pink-400 to-purple-400">
                    Как это работает?
                </h3>
                <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
                    <div class="text-center">
                        <div class="w-14 h-14 bg-purple-900/50 rounded-full flex items-center justify-center mx-auto mb-4 border border-purple-500/30">
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-purple-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z" />
                            </svg>
                        </div>
                        <h4 class="font-semibold mb-2">Анализ данных</h4>
                        <p class="text-gray-400 text-sm">ИИ обрабатывает тысячи игровых сессий в реальном времени</p>
                    </div>
                    <div class="text-center">
                        <div class="w-14 h-14 bg-pink-900/50 rounded-full flex items-center justify-center mx-auto mb-4 border border-pink-500/30">
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-pink-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" />
                            </svg>
                        </div>
                        <h4 class="font-semibold mb-2">Выявление паттернов</h4>
                        <p class="text-gray-400 text-sm">Определяет повторяющиеся закономерности в фазах работы слотов</p>
                    </div>
                    <div class="text-center">
                        <div class="w-14 h-14 bg-purple-900/50 rounded-full flex items-center justify-center mx-auto mb-4 border border-purple-500/30">
                            <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-purple-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
                            </svg>
                        </div>
                        <h4 class="font-semibold mb-2">Прогнозирование</h4>
                        <p class="text-gray-400 text-sm">Предсказывает наступление фазы отдачи с точностью 89%</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <script>
        // Инициализация графиков
        const drainCtx = document.getElementById('drainChart').getContext('2d');
        const payoutCtx = document.getElementById('payoutChart').getContext('2d');
        
        const drainChart = new Chart(drainCtx, {
            type: 'line',
            data: {
                labels: ['10:00', '10:15', '10:30', '10:45', '11:00', '11:15', '11:30'],
                datasets: [{
                    label: 'Коэффициент выигрыша',
                    data: [45, 42, 38, 35, 33, 30, 28],
                    borderColor: 'rgba(236, 72, 153, 1)',
                    backgroundColor: 'rgba(236, 72, 153, 0.1)',
                    borderWidth: 2,
                    tension: 0.4,
                    fill: true,
                    pointBackgroundColor: 'rgba(236, 72, 153, 1)',
                    pointRadius: 4,
                    pointHoverRadius: 6
                }]
            },
            options: getChartOptions('Фаза слива')
        });
        
        const payoutChart = new Chart(payoutCtx, {
            type: 'line',
            data: {
                labels: ['10:00', '10:15', '10:30', '10:45', '11:00', '11:15', '11:30'],
                datasets: [{
                    label: 'Коэффициент выигрыша',
                    data: [25, 30, 38, 45, 52, 58, 65],
                    borderColor: 'rgba(168, 85, 247, 1)',
                    backgroundColor: 'rgba(168, 85, 247, 0.1)',
                    borderWidth: 2,
                    tension: 0.4,
                    fill: true,
                    pointBackgroundColor: 'rgba(168, 85, 247, 1)',
                    pointRadius: 4,
                    pointHoverRadius: 6
                }]
            },
            options: getChartOptions('Фаза отдачи')
        });
        
        function getChartOptions(title) {
            return {
                responsive: true,
                maintainAspectRatio: false,
                plugins: {
                    legend: {
                        display: false
                    },
                    tooltip: {
                        mode: 'index',
                        intersect: false,
                        backgroundColor: 'rgba(15, 23, 42, 0.9)',
                        titleColor: '#e2e8f0',
                        bodyColor: '#cbd5e1',
                        borderColor: 'rgba(255, 255, 255, 0.1)',
                        borderWidth: 1,
                        padding: 12,
                        callbacks: {
                            label: function(context) {
                                return `${title}: ${context.parsed.y}%`;
                            }
                        }
                    }
                },
                scales: {
                    y: {
                        beginAtZero: false,
                        grid: {
                            color: 'rgba(255, 255, 255, 0.05)',
                            drawBorder: false
                        },
                        ticks: {
                            color: 'rgba(255, 255, 255, 0.6)',
                            callback: function(value) {
                                return value + '%';
                            }
                        }
                    },
                    x: {
                        grid: {
                            display: false,
                            drawBorder: false
                        },
                        ticks: {
                            color: 'rgba(255, 255, 255, 0.6)'
                        }
                    }
                }
            };
        }
        
        // Переключение фаз
        let currentPhase = 'drain';
        
        function togglePhase() {
            const toggleBtn = document.getElementById('toggleBtn');
            const toggleText = document.getElementById('toggleText');
            const drainPhase = document.getElementById('drainPhase');
            const payoutPhase = document.getElementById('payoutPhase');
            
            // Эффект глитча
            toggleBtn.classList.add('glitch-effect');
            toggleText.setAttribute('data-text', currentPhase === 'drain' ? 'Отдача' : 'Слив');
            
            setTimeout(() => {
                toggleBtn.classList.remove('glitch-effect');
                
                if (currentPhase === 'drain') {
                    // Переключаем на фазу отдачи
                    toggleBtn.classList.add('payout');
                    toggleText.textContent = 'Отдача';
                    drainPhase.classList.remove('drain-glow');
                    drainPhase.classList.add('opacity-70', 'scale-95');
                    payoutPhase.classList.remove('opacity-70', 'scale-95');
                    payoutPhase.classList.add('payout-glow');
                    currentPhase = 'payout';
                } else {
                    // Переключаем на фазу слива
                    toggleBtn.classList.remove('payout');
                    toggleText.textContent = 'Слив';
                    payoutPhase.classList.remove('payout-glow');
                    payoutPhase.classList.add('opacity-70', 'scale-95');
                    drainPhase.classList.remove('opacity-70', 'scale-95');
                    drainPhase.classList.add('drain-glow');
                    currentPhase = 'drain';
                }
            }, 300);
        }
        
        // Анимация при загрузке
        document.addEventListener('DOMContentLoaded', () => {
            setTimeout(() => {
                document.getElementById('drainPhase').classList.add('animate__animated', 'animate__fadeInLeft');
                document.getElementById('payoutPhase').classList.add('animate__animated', 'animate__fadeInRight');
            }, 500);
        });
    </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/phase3" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>