-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
633 lines (586 loc) · 25.9 KB
/
index.html
File metadata and controls
633 lines (586 loc) · 25.9 KB
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>МАКС ПОИСК — Суверенный Интернет</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=PT+Sans:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--red: #d32f2f;
--blue: #1565c0;
--gold: #f9a825;
--bg: #f0f2f5;
--white: #ffffff;
--text: #1a1a2e;
--gray: #8a8a9a;
--danger-bg: #ffebee;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'PT Sans', sans-serif;
background: var(--bg);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
/* Фоновые элементы */
body::before {
content: '🦅';
position: fixed;
font-size: 600px;
opacity: 0.025;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
z-index: 0;
filter: grayscale(1);
}
.ticker {
position: fixed;
top: 0;
left: 0;
right: 0;
background: var(--red);
color: white;
font-size: 11px;
font-weight: 700;
padding: 5px 0;
white-space: nowrap;
overflow: hidden;
z-index: 100;
letter-spacing: 0.05em;
}
.ticker-inner {
display: inline-block;
animation: ticker 30s linear infinite;
}
@keyframes ticker {
0% { transform: translateX(100vw); }
100% { transform: translateX(-100%); }
}
.main {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
padding: 0 20px;
}
/* LOGO */
.logo-wrap {
margin-bottom: 36px;
display: flex;
flex-direction: column;
align-items: center;
}
.logo {
font-family: 'Unbounded', sans-serif;
font-size: clamp(48px, 10vw, 88px);
font-weight: 900;
color: var(--text);
letter-spacing: -2px;
line-height: 1;
text-transform: uppercase;
}
.logo .accent { color: var(--blue); }
.logo .o-special {
display: inline-block;
vertical-align: middle;
margin: 0 2px;
position: relative;
top: -8px;
height: 0.9em;
width: auto;
}
.tagline {
font-family: 'Unbounded', sans-serif;
font-size: 10px;
font-weight: 400;
color: var(--gray);
letter-spacing: 0.3em;
margin-top: 6px;
text-transform: uppercase;
}
/* SEARCH */
.search-container {
width: 100%;
max-width: 620px;
position: relative;
}
.search-box {
display: flex;
align-items: center;
background: var(--white);
border: 2px solid #d0d3dc;
border-radius: 30px;
padding: 12px 20px;
gap: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
transition: border-color 0.2s, box-shadow 0.2s;
}
.search-box:focus-within {
border-color: var(--blue);
box-shadow: 0 4px 24px rgba(21,101,192,0.18);
}
.search-icon { color: var(--gray); flex-shrink: 0; }
#searchInput {
flex: 1;
border: none;
outline: none;
font-family: 'PT Sans', sans-serif;
font-size: 17px;
color: var(--text);
background: transparent;
}
#searchInput::placeholder { color: #b0b4c0; }
.search-btn {
background: var(--blue);
color: white;
border: none;
border-radius: 20px;
padding: 8px 20px;
font-family: 'Unbounded', sans-serif;
font-size: 11px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s, transform 0.1s;
letter-spacing: 0.05em;
flex-shrink: 0;
}
.search-btn:hover { background: #0d47a1; }
.search-btn:active { transform: scale(0.97); }
/* SHORTCUT LINKS */
.shortcuts {
display: flex;
gap: 10px;
margin-top: 20px;
flex-wrap: wrap;
justify-content: center;
}
.shortcut {
background: white;
border: 1px solid #e0e3ea;
border-radius: 20px;
padding: 5px 14px;
font-size: 12px;
color: var(--gray);
cursor: pointer;
transition: all 0.15s;
font-family: 'PT Sans', sans-serif;
}
.shortcut:hover { border-color: var(--blue); color: var(--blue); background: #f0f4ff; }
/* WARNING OVERLAY */
#warningOverlay {
display: none;
position: fixed;
inset: 0;
background: rgba(10,0,0,0.85);
z-index: 999;
align-items: center;
justify-content: center;
animation: fadeIn 0.2s ease;
}
#warningOverlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.warning-box {
background: #1a0000;
border: 3px solid var(--red);
border-radius: 12px;
max-width: 540px;
width: 90%;
padding: 36px 40px;
position: relative;
box-shadow: 0 0 60px rgba(211,47,47,0.5), inset 0 0 40px rgba(211,47,47,0.05);
animation: shake 0.4s ease;
}
@keyframes shake {
0%,100% { transform: translateX(0); }
20% { transform: translateX(-8px); }
40% { transform: translateX(8px); }
60% { transform: translateX(-5px); }
80% { transform: translateX(5px); }
}
.warning-header {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 20px;
}
.warning-badge {
background: var(--red);
color: white;
font-family: 'Unbounded', sans-serif;
font-size: 9px;
font-weight: 700;
padding: 4px 10px;
border-radius: 4px;
letter-spacing: 0.15em;
flex-shrink: 0;
}
.warning-title {
font-family: 'Unbounded', sans-serif;
font-size: 18px;
font-weight: 900;
color: var(--red);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.warning-body {
color: #ffcdd2;
font-size: 14px;
line-height: 1.7;
margin-bottom: 22px;
border-left: 3px solid var(--red);
padding-left: 16px;
}
.case-number {
font-family: 'Unbounded', sans-serif;
font-size: 10px;
color: #ef9a9a;
letter-spacing: 0.1em;
margin-bottom: 20px;
opacity: 0.7;
}
.warning-info {
background: rgba(211,47,47,0.12);
border-radius: 8px;
padding: 14px 16px;
margin-bottom: 24px;
}
.warning-info-row {
display: flex;
justify-content: space-between;
font-size: 12px;
color: #ef9a9a;
padding: 3px 0;
gap: 20px;
}
.warning-info-row span:first-child { opacity: 0.6; white-space: nowrap; }
.warning-info-row span:last-child { font-weight: 700; text-align: right; }
.warning-buttons {
display: flex;
gap: 12px;
justify-content: flex-end;
}
.btn-repent {
background: var(--red);
color: white;
border: none;
border-radius: 8px;
padding: 10px 24px;
font-family: 'Unbounded', sans-serif;
font-size: 10px;
font-weight: 700;
cursor: pointer;
letter-spacing: 0.08em;
transition: background 0.15s;
}
.btn-repent:hover { background: #b71c1c; }
.btn-close {
background: transparent;
color: #ef9a9a;
border: 1px solid #c62828;
border-radius: 8px;
padding: 10px 24px;
font-family: 'PT Sans', sans-serif;
font-size: 12px;
cursor: pointer;
transition: all 0.15s;
}
.btn-close:hover { background: rgba(211,47,47,0.1); }
/* TOAST notifications */
#toastContainer {
position: fixed;
bottom: 24px;
right: 24px;
display: flex;
flex-direction: column;
gap: 10px;
z-index: 500;
}
.toast {
background: #1a1a2e;
color: white;
padding: 12px 18px;
border-radius: 10px;
font-size: 12px;
border-left: 4px solid var(--gold);
max-width: 280px;
box-shadow: 0 4px 20px rgba(0,0,0,0.25);
animation: slideIn 0.3s ease;
font-family: 'PT Sans', sans-serif;
}
.toast.danger { border-left-color: var(--red); }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes slideOut { to { transform: translateX(120%); opacity: 0; } }
/* FOOTER */
.footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 10px 24px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 11px;
color: var(--gray);
background: rgba(240,242,245,0.9);
backdrop-filter: blur(10px);
z-index: 10;
}
.footer-links { display: flex; gap: 16px; }
.footer a { color: var(--gray); text-decoration: none; }
.footer a:hover { color: var(--blue); text-decoration: underline; }
/* Loyalty meter */
.loyalty-bar {
position: fixed;
top: 25px;
right: 16px;
background: white;
border: 1px solid #e0e3ea;
border-radius: 10px;
padding: 8px 14px;
font-size: 10px;
color: var(--gray);
font-family: 'Unbounded', sans-serif;
z-index: 50;
letter-spacing: 0.05em;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.loyalty-label { margin-bottom: 4px; font-size: 9px; opacity: 0.7; }
.loyalty-track {
width: 100px;
height: 6px;
background: #e0e3ea;
border-radius: 3px;
overflow: hidden;
}
.loyalty-fill {
height: 100%;
background: linear-gradient(90deg, #43a047, #c8e6c9);
border-radius: 3px;
width: 87%;
transition: width 0.5s ease;
}
.loyalty-score { font-size: 8px; margin-top: 3px; color: #43a047; font-weight: 700; }
/* Коэффициент лояльности падает */
.loyalty-fill.medium { background: linear-gradient(90deg, var(--gold), #fff8e1); }
.loyalty-fill.low { background: linear-gradient(90deg, var(--red), #ffcdd2); }
</style>
</head>
<body>
<!-- Бегущая строка -->
<div class="ticker">
<span class="ticker-inner">
🦅 ДОБРО ПОЖАЛОВАТЬ В ЧЕБУРНЕТ — СУВЕРЕННЫЙ ИНТЕРНЕТ РОССИЙСКОЙ ФЕДЕРАЦИИ • Всего найдено: 2 одобренных сайта • Ваш трафик зашифрован ФСБ в целях вашей же безопасности • Госуслуги работают в штатном режиме • Погода в Москве: стабильная • 🦅 ДОБРО ПОЖАЛОВАТЬ В ЧЕБУРНЕТ — СУВЕРЕННЫЙ ИНТЕРНЕТ РОССИЙСКОЙ ФЕДЕРАЦИИ •
</span>
</div>
<!-- Счётчик лояльности -->
<div class="loyalty-bar">
<div class="loyalty-label">ИНДЕКС ЛОЯЛЬНОСТИ</div>
<div class="loyalty-track"><div class="loyalty-fill" id="loyaltyFill"></div></div>
<div class="loyalty-score" id="loyaltyScore">87% — СКРЕП</div>
</div>
<div class="main">
<div class="logo-wrap">
<div class="logo">МАКС П<img width="50" class="o-special" src="Max_logo_2025.png" alt="О">ИСК</div>
<div class="tagline">Суверенный · Одобренный · Патриотичный</div>
</div>
<div class="search-container">
<div class="search-box">
<svg class="search-icon" width="20" height="20" viewBox="0 0 24 24" fill="none">
<circle cx="10.5" cy="10.5" r="6.5" stroke="currentColor" stroke-width="2"/>
<path d="M15.5 15.5L20 20" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
</svg>
<input type="text" id="searchInput" placeholder="Введите одобренный запрос…" autocomplete="off">
<button class="search-btn" onclick="doSearch()">НАЙТИ</button>
</div>
<div class="shortcuts">
<div class="shortcut" onclick="fillSearch('госуслуги')">Госуслуги</div>
<div class="shortcut" onclick="fillSearch('котики')">Котики 🐱</div>
<div class="shortcut" onclick="fillSearch('ВКонтакте')">ВКонтакте</div>
<div class="shortcut" onclick="fillSearch('рецепты борща')">Рецепты борща</div>
<div class="shortcut" onclick="fillSearch('патриотизм')">Патриотизм</div>
<div class="shortcut" onclick="fillSearch('vpn бесплатно')">VPN 💀</div>
</div>
</div>
</div>
<!-- Оверлей ЗАПРЕТ -->
<div id="warningOverlay">
<div class="warning-box">
<div class="warning-header">
<div class="warning-badge">⛔ РОСКОМНАДЗОР</div>
<div class="warning-title">ДОСТУП ЗАПРЕЩЁН</div>
</div>
<div class="case-number" id="caseNumber">Дело № ЧБ-2026-000000 · Автоматически сформировано</div>
<div class="warning-body" id="warningBody">
Ваш запрос признан деструктивным и нарушающим цифровой суверенитет Российской Федерации. Информация о попытке доступа зарегистрирована и передана в уполномоченные органы.
</div>
<div class="warning-info">
<div class="warning-info-row"><span>Запрос:</span><span id="warnQuery">—</span></div>
<div class="warning-info-row"><span>Нарушение:</span><span id="warnViolation">—</span></div>
<div class="warning-info-row"><span>Статус:</span><span style="color:#ef5350">🔴 ПЕРЕДАНО КУДА СЛЕДУЕТ</span></div>
<div class="warning-info-row"><span>Индекс лояльности:</span><span id="warnLoyalty">—</span></div>
</div>
<div class="warning-buttons">
<button class="btn-close" onclick="closeWarning()">Я осознал</button>
<button class="btn-repent" onclick="repent()">ПОКАЯТЬСЯ</button>
</div>
</div>
</div>
<div id="toastContainer"></div>
<div class="footer">
<div>© 2026 МАКС ПОИСК — Государственный Поисковый Агрегатор РФ</div>
<div class="footer-links">
<a href="#">Правила Чебурнета</a>
<a href="#">Сообщить о нарушении</a>
<a href="#">Пожаловаться на соседа</a>
<a href="#">Госуслуги</a>
</div>
</div>
<script>
// ──────────────────────────────────────────
// БАЗА ЗНАНИЙ ЧЕБУРНЕТА
// ──────────────────────────────────────────
const forbidden = [
{ words: ['vpn', 'впн', 'вpn', 'v-p-n'], violation: 'Попытка обхода суверенного файрвола', severity: 'critical' },
{ words: ['youtube', 'ютуб', 'ютьюб', 'юtube'], violation: 'Доступ к иностранному видеохостингу', severity: 'high' },
{ words: ['instagram', 'инстаграм', 'инста', 'инстагр'], violation: 'Экстремистская социальная сеть', severity: 'critical' },
{ words: ['facebook', 'фейсбук', 'fb.com'], violation: 'Экстремистская социальная сеть', severity: 'critical' },
{ words: ['twitter', 'твиттер', 'x.com', 'икс ком'], violation: 'Нежелательная организация', severity: 'high' },
{ words: ['tiktok', 'тикток', 'тик-ток'], violation: 'Утечка персональных данных за рубеж', severity: 'high' },
{ words: ['google', 'гугл', 'gogle', 'гoogле'], violation: 'Иностранный поисковик без локализации данных', severity: 'medium' },
{ words: ['telegram', 'телеграм', 'tg', 'телегу'], violation: 'Несанкционированное шифрование переписки', severity: 'high' },
{ words: ['мемы', 'мем', 'memes', 'прикол', 'приколы'], violation: 'Нежелательный юмористический контент', severity: 'medium' },
{ words: ['оппозиция', 'навальный', 'протест'], violation: 'Деструктивно-подрывная информация', severity: 'critical' },
{ words: ['новости', 'bbc', 'cnn', 'meduza', 'медуза'], violation: 'Иностранный агент и иноагентский контент', severity: 'high' },
{ words: ['тор', 'tor browser', 'onion', '.onion'], violation: 'Даркнет — сеть преступников и террористов', severity: 'critical' },
{ words: ['майнкрафт', 'minecraft'], violation: 'Пропаганда разрушения государственной собственности', severity: 'low' },
{ words: ['chatgpt', 'openai', 'чатгпт'], violation: 'Нелицензированный иностранный ИИ', severity: 'high' },
{ words: ['crypto', 'биткоин', 'bitcoin', 'крипта', 'ethereum'], violation: 'Нелегальные финансовые инструменты', severity: 'high' },
];
const approved = ['госуслуги', 'котик', 'борщ', 'вконтакте', 'одноклассники', 'патриотизм', 'россия', 'рецепт', 'кот ', ' кот', 'кошк'];
let loyaltyScore = 87;
// ──────────────────────────────────────────
// ФУНКЦИИ
// ──────────────────────────────────────────
function fillSearch(text) {
document.getElementById('searchInput').value = text;
document.getElementById('searchInput').focus();
}
function doSearch() {
const raw = document.getElementById('searchInput').value.trim();
if (!raw) return;
const query = raw.toLowerCase();
// Проверяем на запрещёнку
for (const rule of forbidden) {
if (rule.words.some(w => query.includes(w))) {
triggerBlock(raw, rule);
return;
}
}
// Одобренные запросы — смешная реакция
const isApproved = approved.some(w => query.includes(w));
if (isApproved) {
loyaltyScore = Math.min(100, loyaltyScore + 3);
updateLoyalty();
showToast('✅ Ваш запрос одобрен цифровым комитетом', false);
}
// Реальный поиск — Яндекс как суверенный поисковик
setTimeout(() => {
window.open('https://yandex.ru/search/?text=' + encodeURIComponent(raw), '_blank');
}, isApproved ? 800 : 200);
}
function triggerBlock(query, rule) {
// Понижаем лояльность
const drop = rule.severity === 'critical' ? 15 : rule.severity === 'high' ? 8 : rule.severity === 'medium' ? 4 : 2;
loyaltyScore = Math.max(0, loyaltyScore - drop);
updateLoyalty();
// Заполняем данные окна
document.getElementById('warnQuery').textContent = '"' + query + '"';
document.getElementById('warnViolation').textContent = rule.violation;
document.getElementById('warnLoyalty').textContent = loyaltyScore + '%' + (loyaltyScore < 30 ? ' ⚠️ КРИТИЧНО' : loyaltyScore < 60 ? ' — Под наблюдением' : '');
document.getElementById('caseNumber').textContent = 'Дело № ЧБ-2026-' + Math.floor(Math.random()*900000+100000) + ' · Сформировано автоматически';
// Показываем оверлей
const overlay = document.getElementById('warningOverlay');
overlay.classList.add('active');
document.getElementById('searchInput').value = '';
// Тост
showToast('🚨 Запрос передан в уполномоченные органы', true);
}
function closeWarning() {
document.getElementById('warningOverlay').classList.remove('active');
if (loyaltyScore < 40) {
setTimeout(() => showToast('👁️ Вы находитесь под усиленным наблюдением', true), 500);
}
}
function repent() {
loyaltyScore = Math.min(100, loyaltyScore + 5);
updateLoyalty();
document.getElementById('warningOverlay').classList.remove('active');
showToast('🙏 Покаяние принято. Индекс лояльности +5%', false);
// Редирект на госуслуги как "исправительная мера"
setTimeout(() => {
if (Math.random() > 0.5) showToast('📋 Рекомендуем посетить Госуслуги для повышения рейтинга', false);
}, 1200);
}
function updateLoyalty() {
const fill = document.getElementById('loyaltyFill');
const score = document.getElementById('loyaltyScore');
fill.style.width = loyaltyScore + '%';
fill.className = 'loyalty-fill';
if (loyaltyScore < 40) {
fill.classList.add('low');
score.style.color = '#d32f2f';
score.textContent = loyaltyScore + '% — НЕЛОЯЛЬНЫЙ';
} else if (loyaltyScore < 65) {
fill.classList.add('medium');
score.style.color = '#f57f17';
score.textContent = loyaltyScore + '% — ПОД НАБЛЮДЕНИЕМ';
} else {
score.style.color = '#43a047';
score.textContent = loyaltyScore + '% — СКРЕП';
}
}
function showToast(msg, isDanger) {
const container = document.getElementById('toastContainer');
const toast = document.createElement('div');
toast.className = 'toast' + (isDanger ? ' danger' : '');
toast.textContent = msg;
container.appendChild(toast);
setTimeout(() => {
toast.style.animation = 'slideOut 0.3s ease forwards';
setTimeout(() => toast.remove(), 300);
}, 3500);
}
// Enter для поиска
document.getElementById('searchInput').addEventListener('keydown', e => {
if (e.key === 'Enter') doSearch();
});
// Случайные тосты для атмосферы
const atmosphereToasts = [
'👁️ Ваш IP адрес зафиксирован',
'📡 Подключение к серверу ФСО…',
'🛡️ Чебурнет защищает вас от вредоносных идей',
'📊 Ваш рейтинг цифровой гигиены обновлён',
'🏛️ Госуслуги: новый функционал доступен',
'🦅 Суверенный интернет работает в штатном режиме',
];
function randomAtmosphere() {
const msg = atmosphereToasts[Math.floor(Math.random() * atmosphereToasts.length)];
showToast(msg, false);
setTimeout(randomAtmosphere, 8000 + Math.random() * 12000);
}
setTimeout(randomAtmosphere, 5000);
</script>
</body>
</html>