<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MAX | Чат-менеджер ВКонтакте</title>
<!-- ПОДКЛЮЧАЕМ VUE 3 ЧЕРЕЗ CDN (для одностраничного index.html) -->
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<!-- ШРИФТЫ И ИКОНКИ (Font Awesome + Google Fonts) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,600;0,700;1,400&display=swap" rel="stylesheet" />
<style>
/* ============================================================
ГЛОБАЛЬНЫЙ СБРОС И БАЗА
============================================================ */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
min-height: 100vh;
/* ОСНОВНОЙ ГРАДИЕНТНЫЙ ФОН (радиальный + угловой для насыщенности) */
background: radial-gradient(circle at 20% 30%, #0f111f, #1a1f2f 70%, #0b0e1a);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
position: relative;
overflow-x: hidden;
}
/* ===== БЕСПОЛЕЗНЫЕ ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ (ГРАДИЕНТНЫЕ ПЯТНА) ===== */
body::before {
content: '';
position: fixed;
top: -20%;
left: -10%;
width: 60%;
height: 80%;
background: radial-gradient(circle, rgba(245,87,108,0.08) 0%, rgba(79,172,254,0.05) 50%, transparent 70%);
border-radius: 50%;
pointer-events: none;
z-index: 0;
animation: float-blob 12s infinite alternate ease-in-out;
}
body::after {
content: '';
position: fixed;
bottom: -20%;
right: -10%;
width: 70%;
height: 80%;
background: radial-gradient(circle, rgba(67,233,123,0.06) 0%, rgba(240,147,251,0.04) 50%, transparent 70%);
border-radius: 50%;
pointer-events: none;
z-index: 0;
animation: float-blob 16s infinite alternate-reverse ease-in-out;
}
@keyframes float-blob {
0% { transform: translate(0, 0) scale(1); }
100% { transform: translate(40px, -30px) scale(1.2); }
}
/* ===== ОСНОВНОЙ КОНТЕЙНЕР (СТЕКЛО + ГРАДИЕНТНАЯ ОБВОДКА) ===== */
#app {
max-width: 1100px;
width: 100%;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-radius: 64px;
padding: 34px 34px 44px;
/* ГРАДИЕНТНАЯ РАМКА (тройная!) */
box-shadow:
0 40px 80px rgba(0, 0, 0, 0.8),
0 0 0 1px rgba(255, 255, 255, 0.04),
inset 0 0 60px rgba(245, 87, 108, 0.04);
border: 1px solid rgba(255, 255, 255, 0.05);
position: relative;
z-index: 1;
transition: all 0.4s ease;
}
/* ЕЩЁ ОДНА ГРАДИЕНТНАЯ ОБВОДКА (псевдоэлемент) */
#app::before {
content: '';
position: absolute;
inset: -2px;
border-radius: 66px;
padding: 2px;
background: linear-gradient(135deg, rgba(240,147,251,0.3), rgba(245,87,108,0.2), rgba(79,172,254,0.3), rgba(67,233,123,0.2));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
z-index: -1;
}
/* ===== УНИВЕРСАЛЬНЫЙ ГРАДИЕНТНЫЙ ТЕКСТ ===== */
.gradient-text {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 35%, #4facfe 70%, #43e97b 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
display: inline-block;
font-weight: 800;
}
/* ===== ГРАДИЕНТНЫЙ ФОН ДЛЯ БЛОКОВ ===== */
.gradient-bg {
background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%);
border: 1px solid rgba(255, 255, 255, 0.06);
}
/* ============================================================
ШАПКА
============================================================ */
.header {
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap;
margin-bottom: 28px;
padding-bottom: 22px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
position: relative;
}
/* ДЕКОРАТИВНАЯ ГРАДИЕНТНАЯ ЛИНИЯ ПОД ШАПКОЙ */
.header::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #f093fb, #f5576c, #4facfe, #43e97b, transparent);
opacity: 0.3;
}
.logo-wrapper {
position: relative;
width: 96px;
height: 96px;
border-radius: 44px;
background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe, #43e97b);
padding: 4px;
flex-shrink: 0;
box-shadow: 0 0 40px rgba(245, 87, 108, 0.25), 0 0 80px rgba(79, 172, 254, 0.1);
animation: logo-glow 3s infinite alternate;
}
@keyframes logo-glow {
0% { box-shadow: 0 0 30px rgba(245, 87, 108, 0.2); }
100% { box-shadow: 0 0 60px rgba(79, 172, 254, 0.4), 0 0 100px rgba(240, 147, 251, 0.15); }
}
.logo-wrapper img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 40px;
display: block;
background: #0b0e1a;
}
.header-title h1 {
font-size: 3rem;
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.1;
}
.header-title h1 .gradient-text {
font-size: 3.2rem;
}
.header-title p {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.55);
margin-top: 6px;
font-weight: 400;
letter-spacing: 0.3px;
}
.header-title p i {
color: #43e97b;
margin-right: 6px;
}
/* ===== БЕСПОЛЕЗНАЯ ГРАДИЕНТНАЯ ПОЛОСА ===== */
.useless-strip {
margin: 6px 0 16px;
height: 4px;
background: linear-gradient(90deg, #f093fb, #f5576c, #4facfe, #43e97b, #f093fb);
background-size: 300% 100%;
border-radius: 20px;
animation: strip-move 6s linear infinite;
opacity: 0.3;
}
@keyframes strip-move {
0% { background-position: 0% 0%; }
100% { background-position: 300% 0%; }
}
/* ============================================================
СЕТКА КАРТОЧЕК (3 колонки)
============================================================ */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 28px;
margin: 30px 0 30px;
}
/* ===== КАРТОЧКА С МАКСИМАЛЬНЫМ ГРАДИЕНТОМ ===== */
.card {
background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border-radius: 36px;
padding: 26px 24px;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(79, 172, 254, 0.02);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
/* ГРАДИЕНТНЫЙ ПСЕВДОЭЛЕМЕНТ НА КАРТОЧКЕ (бесполезно, но красиво) */
.card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(from 0deg, transparent, rgba(240,147,251,0.03), transparent, rgba(79,172,254,0.03), transparent);
animation: spin-card 20s linear infinite;
pointer-events: none;
z-index: 0;
}
@keyframes spin-card {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.card:hover {
transform: translateY(-8px) scale(1.01);
box-shadow: 0 24px 48px -8px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.card > * {
position: relative;
z-index: 1;
}
.card i {
font-size: 2.6rem;
background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-bottom: 14px;
display: inline-block;
}
.card h3 {
font-size: 1.5rem;
font-weight: 600;
color: #fff;
letter-spacing: -0.01em;
margin-bottom: 10px;
}
.card h3 .gradient-text {
font-size: 1.5rem;
}
.card p {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
line-height: 1.7;
font-weight: 400;
}
.card .card-tag {
display: inline-block;
margin-top: 14px;
padding: 4px 16px;
background: linear-gradient(135deg, rgba(245,87,108,0.15), rgba(79,172,254,0.15));
border-radius: 40px;
font-size: 0.7rem;
color: rgba(255,255,255,0.5);
letter-spacing: 0.5px;
border: 1px solid rgba(255,255,255,0.04);
}
/* ============================================================
БЛОК "ЧАТ-МЕНЕДЖЕР" (без ИИ, следит за порядком)
============================================================ */
.manager-block {
margin: 30px 0 28px;
padding: 28px 32px;
border-radius: 44px;
background: linear-gradient(135deg, rgba(240,147,251,0.08) 0%, rgba(245,87,108,0.06) 30%, rgba(79,172,254,0.06) 70%, rgba(67,233,123,0.04) 100%);
border: 1px solid rgba(255, 255, 255, 0.06);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 18px;
position: relative;
overflow: hidden;
}
/* БЕСПОЛЕЗНЫЙ ГРАДИЕНТНЫЙ ОРЕОЛ */
.manager-block::before {
content: '⚡';
position: absolute;
right: -10px;
top: -10px;
font-size: 6rem;
opacity: 0.04;
transform: rotate(12deg);
}
.manager-block .manager-icon {
display: flex;
align-items: center;
gap: 20px;
}
.manager-block .manager-icon i {
font-size: 3rem;
background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: pulse-glow 2.8s infinite alternate;
}
.manager-block .manager-icon h2 {
font-size: 1.8rem;
font-weight: 700;
color: #fff;
}
.manager-block .manager-icon h2 span {
font-size: 1.8rem;
}
.manager-block .manager-icon p {
color: rgba(255, 255, 255, 0.6);
font-size: 0.95rem;
margin-top: 2px;
}
.manager-badge {
background: linear-gradient(135deg, #4facfe, #43e97b);
padding: 10px 26px;
border-radius: 60px;
font-weight: 600;
color: #fff;
font-size: 0.9rem;
box-shadow: 0 6px 24px rgba(79, 172, 254, 0.25);
border: 1px solid rgba(255, 255, 255, 0.1);
white-space: nowrap;
}
.manager-badge i {
margin-right: 8px;
}
/* ============================================================
КНОПКА + СЧЁТЧИК (реактивность Vue)
============================================================ */
.action-row {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: center;
margin: 18px 0 10px;
}
.btn-gradient {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 40px;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 45%, #4facfe 100%);
border: none;
border-radius: 80px;
font-weight: 700;
font-size: 1.1rem;
color: #fff;
cursor: pointer;
box-shadow: 0 8px 32px rgba(245, 87, 108, 0.3);
transition: all 0.25s ease;
letter-spacing: 0.3px;
border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-gradient:hover {
transform: scale(1.03);
box-shadow: 0 12px 48px rgba(245, 87, 108, 0.5);
background: linear-gradient(135deg, #f5576c 0%, #4facfe 55%, #43e97b 100%);
}
.btn-gradient i {
font-size: 1.1rem;
}
.counter {
color: rgba(255, 255, 255, 0.4);
font-size: 0.95rem;
display: flex;
align-items: center;
gap: 6px;
}
.counter i {
color: #43e97b;
font-size: 0.6rem;
}
.ai-tag {
margin-left: auto;
font-size: 0.85rem;
background: linear-gradient(135deg, #f093fb, #4facfe);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 600;
display: flex;
align-items: center;
gap: 6px;
opacity: 0.7;
}
/* ============================================================
ФУТЕР
============================================================ */
.footer {
margin-top: 32px;
padding-top: 24px;
border-top: 1px solid rgba(255, 255, 255, 0.04);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
color: rgba(255, 255, 255, 0.3);
font-size: 0.85rem;
position: relative;
}
.footer::before {
content: '';
position: absolute;
top: -2px;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(240,147,251,0.2), rgba(79,172,254,0.2), transparent);
}
.footer .social i {
font-size: 1.5rem;
margin-left: 18px;
background: linear-gradient(135deg, #f093fb, #4facfe);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
transition: 0.25s;
cursor: default;
}
.footer .social i:hover {
transform: scale(1.2) rotate(4deg);
filter: brightness(1.3);
}
/* ===== БЕСПОЛЕЗНЫЙ ГРАДИЕНТНЫЙ СТАТУС ===== */
.useless-status {
margin-top: 16px;
padding: 10px 18px;
background: linear-gradient(135deg, rgba(240,147,251,0.04), rgba(79,172,254,0.04));
border-radius: 60px;
border: 1px solid rgba(255, 255, 255, 0.03);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.2);
}
.useless-status span i {
margin-right: 6px;
background: linear-gradient(135deg, #f093fb, #f5576c);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.useless-status .dot {
display: inline-block;
width: 6px;
height: 6px;
border-radius: 50%;
background: linear-gradient(135deg, #43e97b, #4facfe);
animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
0% { opacity: 0.2; transform: scale(0.8); }
100% { opacity: 1; transform: scale(1.2); }
}
/* ===== АНИМАЦИИ ===== */
@keyframes pulse-glow {
0% { filter: drop-shadow(0 0 4px rgba(245, 87, 108, 0.1)); }
100% { filter: drop-shadow(0 0 28px rgba(79, 172, 254, 0.4)); }
}
/* ===== АДАПТИВ ===== */
@media (max-width: 700px) {
#app { padding: 20px; border-radius: 40px; }
.header-title h1 { font-size: 2.2rem; }
.header-title h1 .gradient-text { font-size: 2.4rem; }
.logo-wrapper { width: 76px; height: 76px; }
.manager-block { flex-direction: column; align-items: flex-start; }
.manager-badge { white-space: normal; }
.btn-gradient { width: 100%; justify-content: center; }
.action-row .ai-tag { margin-left: 0; }
.useless-status { flex-direction: column; align-items: flex-start; }
}
</style>
</head>
<body>
<!-- ========================================================= -->
<!-- ЕДИНСТВЕННЫЙ КОНТЕЙНЕР VUE -->
<!-- ========================================================= -->
<div id="app">
<!-- ===== ШАПКА ===== -->
<div class="header">
<div class="logo-wrapper">
<img src="https://mloads.com/uploads/posts/2025-07/max.webp" alt="MAX logo" />
</div>
<div class="header-title">
<h1>
<span class="gradient-text">MAX</span>
<span style="color:#fff; font-weight:300;">·</span>
<span style="color:rgba(255,255,255,0.9);">чат-менеджер</span>
</h1>
<p><i class="fas fa-shield-alt"></i> Следит за порядком в беседе · 24/7 · Без ИИ</p>
</div>
<!-- БЕСПОЛЕЗНЫЙ ГРАДИЕНТНЫЙ ИНДИКАТОР -->
<div style="margin-left: auto; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.02); padding: 4px 16px 4px 12px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.03);">
<span class="dot" style="display:inline-block; width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg,#43e97b,#4facfe); animation:pulse-dot 1.4s infinite;"></span>
<span style="color:rgba(255,255,255,0.2); font-size:0.7rem; letter-spacing:0.5px;">ONLINE</span>
</div>
</div>
<!-- ===== БЕСПОЛЕЗНАЯ ГРАДИЕНТНАЯ ПОЛОСА ===== -->
<div class="useless-strip"></div>
<!-- ===== СЕТКА КАРТОЧЕК (3 штуки) ===== -->
<div class="card-grid">
<!-- Карточка 1: Модерация -->
<div class="card">
<i class="fas fa-gavel"></i>
<h3>Модерация <span class="gradient-text">чата</span></h3>
<p>Автоматическая фильтрация спама, нецензурной лексики и флуда. Чистота в беседе — наша задача.</p>
<span class="card-tag"><i class="far fa-clock"></i> 24/7 мониторинг</span>
</div>
<!-- Карточка 2: Порядок -->
<div class="card">
<i class="fas fa-flag"></i>
<h3>Соблюдение <span class="gradient-text">правил</span></h3>
<p>Выдаёт предупреждения, отправляет в бан за нарушения. Поддерживает дисциплину в сообществе.</p>
<span class="card-tag"><i class="fas fa-shield-alt"></i> 12 правил</span>
</div>
<!-- Карточка 3: Статистика -->
<div class="card">
<i class="fas fa-chart-line"></i>
<h3>Статистика <span class="gradient-text">активности</span></h3>
<p>Отслеживает участников, фиксирует нарушения, ведёт лог действий. Полная прозрачность.</p>
<span class="card-tag"><i class="fas fa-database"></i> 847 логов</span>
</div>
</div>
<!-- ===== БЛОК "ЧАТ-МЕНЕДЖЕР" (БЕЗ ИИ, СЛЕДИТ ЗА ПОРЯДКОМ) ===== -->
<div class="manager-block">
<div class="manager-icon">
<i class="fas fa-user-cog"></i>
<div>
<h2>👮 <span class="gradient-text">MAX</span> — хранитель порядка</h2>
<p><i class="fas fa-check-circle" style="color:#43e97b; margin-right:6px;"></i> Без ИИ · Только чёткие правила и модерация</p>
</div>
</div>
<div class="manager-badge">
<i class="fas fa-bolt"></i> 0% нейросетей · 100% контроль
</div>
</div>
<!-- ===== КНОПКА + СЧЁТЧИК (Vue реактивность) ===== -->
<div class="action-row">
<button class="btn-gradient" @click="handleClick">
<i class="fas fa-broom"></i> {{ buttonText }}
</button>
<span class="counter">
<i class="fas fa-circle"></i> кликов: {{ clickCount }}
</span>
<span class="ai-tag">
<i class="fas fa-microchip"></i> AI generated (бесполезно)
</span>
</div>
<!-- ===== БЕСПОЛЕЗНЫЙ СТАТУС (ГРАДИЕНТНЫЙ) ===== -->
<div class="useless-status">
<span><i class="fas fa-robot"></i> ИИ-статус: <span class="gradient-text">выключен</span> (мы без ИИ)</span>
<span><i class="fas fa-shield-alt"></i> Модерация: активна <span class="dot"></span></span>
<span><i class="fas fa-clock"></i> Последнее нарушение: 14:32</span>
<span><i class="fas fa-users"></i> Участников: 1 247</span>
</div>
<!-- ===== ФУТЕР ===== -->
<div class="footer">
<div>
<i class="far fa-copyright"></i> 2026 · MAX — чат-менеджер ВК
<span style="margin-left: 16px; opacity:0.4;">⚡ без ИИ, только порядок</span>
</div>
<div class="social">
<i class="fab fa-vk"></i>
<i class="fab fa-telegram"></i>
<i class="fab fa-discord"></i>
<i class="fas fa-broom"></i>
</div>
</div>
<!-- ===== ЕЩЁ ОДИН БЕСПОЛЕЗНЫЙ ГРАДИЕНТНЫЙ ТЕКСТ ===== -->
<div style="margin-top: 18px; text-align: right; font-size: 0.7rem; color: rgba(255,255,255,0.12); border-top: 1px dashed rgba(255,255,255,0.02); padding-top: 12px; letter-spacing: 0.3px;">
<i class="fas fa-arrow-right"></i> этот сайт сгенерирован ИИ, но сам MAX — нет <span style="background: linear-gradient(135deg, #f093fb, #4facfe); -webkit-background-clip: text; background-clip: text; color: transparent;">✨</span>
</div>
</div>
<!-- КОНЕЦ #app -->
<!-- ========================================================= -->
<!-- СКРИПТ VUE (реактивность) -->
<!-- ========================================================= -->
<script>
(function() {
// СОЗДАЁМ ПРИЛОЖЕНИЕ VUE
const app = Vue.createApp({
// === ДАННЫЕ (REACTIVE) ===
data() {
return {
buttonText: 'Навести порядок',
clickCount: 0,
};
},
// === МЕТОДЫ ===
methods: {
handleClick() {
this.clickCount += 1;
// МЕНЯЕМ ТЕКСТ КНОПКИ (градиентный хаос)
const phrases = [
'🧹 Уборка чата',
'⚡ Проверка правил',
'📋 Выдаю предупреждение',
'🔒 Бан нарушителя',
'✅ Порядок восстановлен',
'🔄 Сканирую беседу',
'📊 Анализ активности',
'🚨 Нарушений нет',
'🎯 Целевой контроль',
'💪 MAX на страже'
];
// Берём фразу по индексу (циклически)
const idx = (this.clickCount - 1) % phrases.length;
this.buttonText = phrases[idx] + ' #' + this.clickCount;
console.log('[VUE] Клик #' + this.clickCount + ' — ' + this.buttonText);
}
},
mounted() {
console.log('✅ MAX (чат-менеджер) смонтирован! Без ИИ, только порядок.');
}
});
// МОНТИРУЕМ
app.mount('#app');
})();
</script>
</body>
</html>