• Я зарабатываю 100 000 RUB / месяц на этом сайте!

    А знаешь как? Я всего-лишь публикую (создаю темы), а админ мне платит. Трачу деньги на мороженое, робуксы и сервера в Minecraft. А ещё на паль из Китая. 

    Хочешь так же? Пиши и узнавай условия: https://t.me/alex_redact
    Реклама: https://t.me/yougame_official

Сайт для вашего чита с регистрацией и панелью игрока

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
10 Авг 2022
Сообщения
74
Реакции
2
Сайт для вашего чита с регистрацией и панелью игрока

Сайт изичный
Защиты нет! Создавался по приколу
Промокоды:
'Red': 30,
'VIP2025': 90,
'ADMINKEY': 365

Можно поменять с файле на 444 строке
DW:
index.html:
Expand Collapse Copy
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>RedClient - Лучший чит для Minecraft</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #ff0000;
            --dark-red: #8b0000;
            --light-red: #ff3333;
            --bg-dark: #0a0a0a;
            --bg-card: #1a1a1a;
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --gradient-red: linear-gradient(135deg, #ff0000, #8b0000);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-dark);
            color: var(--text-white);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-red);
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            background: var(--gradient-red);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
        }

        .auth-btn {
            background: var(--gradient-red);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
            font-weight: 600;
        }

        .auth-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
        }

        .main-container {
            margin-top: 100px;
            padding: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .login-section, .dashboard-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .login-section.active, .dashboard-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .auth-form {
            max-width: 400px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        .form-title {
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
            background: var(--gradient-red);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-gray);
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        }

        .form-submit {
            width: 100%;
            padding: 15px;
            background: var(--gradient-red);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
        }

        .form-switch {
            text-align: center;
            margin-top: 20px;
            color: var(--text-gray);
        }

        .form-switch a {
            color: var(--primary-red);
            text-decoration: none;
            cursor: pointer;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-top: 40px;
        }

        .profile-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
            border: 1px solid rgba(255, 0, 0, 0.3);
            height: fit-content;
        }

        .profile-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .profile-avatar {
            width: 100px;
            height: 100px;
            background: var(--gradient-red);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: bold;
        }

        .profile-info {
            display: grid;
            gap: 15px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 0, 0, 0.2);
        }

        .info-label {
            color: var(--text-gray);
        }

        .info-value {
            color: white;
            font-weight: 600;
        }

        .activation-section {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        .activation-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-red);
        }

        .activation-input {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .activation-input input {
            flex: 1;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 16px;
        }

        .activation-btn {
            padding: 12px 30px;
            background: var(--gradient-red);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .activation-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
        }

        .download-btn {
            display: block;
            width: 100%;
            padding: 20px;
            background: var(--gradient-red);
            color: white;
            text-align: center;
            border-radius: 10px;
            font-size: 20px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            margin-top: 30px;
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
        }

        .welcome-text {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            background: var(--gradient-red);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (max-width: 768px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            
            .header {
                padding: 15px 20px;
            }
            
            .main-container {
                padding: 20px;
            }
        }

        .error-message {
            color: var(--primary-red);
            text-align: center;
            margin-top: 10px;
        }

        .success-message {
            color: #00ff00;
            text-align: center;
            margin-top: 10px;
        }
    </style>
</head>
<body>
    <header class="header">
        <div class="logo">RedClient</div>
        <button class="auth-btn" onclick="toggleAuth()">Авторизация</button>
    </header>

    <div class="main-container">
        <div class="login-section active" id="loginSection">
            <div class="auth-form">
                <h2 class="form-title">Вход</h2>
                <form id="loginForm">
                    <div class="form-group">
                        <label for="loginUsername">Логин</label>
                        <input type="text" id="loginUsername" required>
                    </div>
                    <div class="form-group">
                        <label for="loginPassword">Пароль</label>
                        <input type="password" id="loginPassword" required>
                    </div>
                    <button type="submit" class="form-submit">Войти</button>
                    <div class="form-switch">
                        Нет аккаунта? <a onclick="showRegister()">Зарегистрироваться</a>
                    </div>
                </form>
            </div>

            <div class="auth-form" style="display: none;" id="registerForm">
                <h2 class="form-title">Регистрация</h2>
                <form id="registerFormEl">
                    <div class="form-group">
                        <label for="registerUsername">Логин</label>
                        <input type="text" id="registerUsername" required>
                    </div>
                    <div class="form-group">
                        <label for="registerEmail">Email</label>
                        <input type="email" id="registerEmail" required>
                    </div>
                    <div class="form-group">
                        <label for="registerPassword">Пароль</label>
                        <input type="password" id="registerPassword" required>
                    </div>
                    <button type="submit" class="form-submit">Зарегистрироваться</button>
                    <div class="form-switch">
                        Уже есть аккаунт? <a onclick="showLogin()">Войти</a>
                    </div>
                </form>
            </div>
        </div>

        <div class="dashboard-section" id="dashboardSection">
            <h1 class="welcome-text" id="welcomeText">Добро пожаловать!</h1>
            
            <div class="dashboard-grid">
                <div class="profile-card">
                    <div class="profile-header">
                        <div class="profile-avatar" id="profileAvatar">U</div>
                        <h3 id="profileName">User</h3>
                    </div>
                    <div class="profile-info">
                        <div class="info-row">
                            <span class="info-label">UID:</span>
                            <span class="info-value" id="userUID">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Логин:</span>
                            <span class="info-value" id="userLogin">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Группа:</span>
                            <span class="info-value">Пользователь</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Дата регистрации:</span>
                            <span class="info-value" id="regDate">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Последний вход:</span>
                            <span class="info-value" id="lastLogin">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Email:</span>
                            <span class="info-value" id="userEmail">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">HWID:</span>
                            <span class="info-value" id="userHWID">-</span>
                        </div>
                    </div>
                </div>

                <div>
                    <div class="activation-section">
                        <h2 class="activation-title">Активация ключа</h2>
                        <div class="activation-input">
                            <input type="text" id="activationKey" placeholder="Введите ключ активации">
                            <button class="activation-btn" onclick="activateKey()">Активировать</button>
                        </div>
                        <div id="activationMessage"></div>
                        
                        <div id="downloadSection" style="display: none;">
                            <a href="#" class="download-btn" onclick="downloadClient()">Скачать Red.exe</a>
                        </div>
                        
                        <div id="buySection">
                            <a href="https://t.me/krendelprosto" target="_blank" class="download-btn">Купить клиент</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <script>
        let currentUser = null;
        const validKeys = {
            'Red': 30,
            'VIP2025': 90,
            'ADMINKEY': 365
        };

        function toggleAuth() {
            const loginSection = document.getElementById('loginSection');
            if (loginSection.classList.contains('active')) {
                logout();
            } else {
                showLogin();
            }
        }

        function showRegister() {
            document.getElementById('loginForm').parentElement.style.display = 'none';
            document.getElementById('registerForm').style.display = 'block';
        }

        function showLogin() {
            document.getElementById('loginForm').parentElement.style.display = 'block';
            document.getElementById('registerForm').style.display = 'none';
        }

        document.getElementById('loginForm').addEventListener('submit', function(e) {
            e.preventDefault();
            const username = document.getElementById('loginUsername').value;
            const password = document.getElementById('loginPassword').value;
            
            // Простая проверка авторизации
            if (username && password) {
                loginUser(username);
            }
        });

        document.getElementById('registerFormEl').addEventListener('submit', function(e) {
            e.preventDefault();
            const username = document.getElementById('registerUsername').value;
            const email = document.getElementById('registerEmail').value;
            const password = document.getElementById('registerPassword').value;
            
            // Простая регистрация
            if (username && email && password) {
                loginUser(username, email);
            }
        });

        function loginUser(username, email = null) {
            currentUser = {
                username: username,
                email: email || username + '@mail.com',
                uid: Math.floor(Math.random() * 10000) + 1,
                regDate: new Date().toLocaleDateString('ru-RU'),
                lastLogin: new Date().toLocaleString('ru-RU'),
                hwid: generateHWID()
            };
            
            document.querySelector('.auth-btn').textContent = 'Выйти';
            document.getElementById('loginSection').classList.remove('active');
            document.getElementById('dashboardSection').classList.add('active');
            
            updateDashboard();
        }

        function logout() {
            currentUser = null;
            document.querySelector('.auth-btn').textContent = 'Авторизация';
            document.getElementById('loginSection').classList.add('active');
            document.getElementById('dashboardSection').classList.remove('active');
        }

        function updateDashboard() {
            if (!currentUser) return;
            
            document.getElementById('welcomeText').textContent = `Привет, ${currentUser.username}!`;
            document.getElementById('profileAvatar').textContent = currentUser.username.charAt(0).toUpperCase();
            document.getElementById('profileName').textContent = currentUser.username;
            document.getElementById('userUID').textContent = currentUser.uid;
            document.getElementById('userLogin').textContent = currentUser.username;
            document.getElementById('regDate').textContent = currentUser.regDate;
            document.getElementById('lastLogin').textContent = currentUser.lastLogin;
            document.getElementById('userEmail').textContent = currentUser.email;
            document.getElementById('userHWID').textContent = currentUser.hwid;
        }

        function generateHWID() {
            return 'HWID-' + Math.random().toString(36).substr(2, 9).toUpperCase();
        }

        function activateKey() {
            const key = document.getElementById('activationKey').value;
            const messageDiv = document.getElementById('activationMessage');
            
            if (validKeys[key]) {
                messageDiv.innerHTML = `<div class="success-message">Ключ активирован! Подписка на ${validKeys[key]} дней</div>`;
                document.getElementById('downloadSection').style.display = 'block';
                document.getElementById('buySection').style.display = 'none';
            } else {
                messageDiv.innerHTML = '<div class="error-message">Неверный ключ активации</div>';
            }
        }

        function downloadClient() {
            const link = document.createElement('a');
            link.href = 'data:text/plain;charset=utf-8,RedClient%20Minecraft%20Cheat';
            link.download = 'Red.exe';
            link.click();
        }
    </script>
</body>
</html>

2025-07-31_18-15-01.png
 
1754837169970.png
1754837192479.png




HTML:
Expand Collapse Copy
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>RedClient - Elite Minecraft Client</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #ff0040;
            --secondary-red: #ff3366;
            --dark-red: #cc0033;
            --neon-red: #ff0066;
            --bg-dark: #050508;
            --bg-darker: #020204;
            --bg-card: rgba(15, 15, 20, 0.95);
            --bg-glass: rgba(20, 20, 25, 0.8);
            --text-white: #ffffff;
            --text-gray: #a0a0a8;
            --text-light: #e0e0e8;
            --accent-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            --gradient-main: linear-gradient(135deg, #ff0040, #8b5cf6, #06b6d4);
            --gradient-card: linear-gradient(135deg, rgba(255, 0, 64, 0.1), rgba(139, 92, 246, 0.1));
            --shadow-glow: 0 0 30px rgba(255, 0, 64, 0.3);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.8);
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--bg-dark);
            color: var(--text-white);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 0, 64, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundPulse 8s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 0 10px currentColor;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0; }
            25% { opacity: 1; }
            50% { transform: translateY(-100px) translateX(50px); opacity: 0.8; }
            75% { opacity: 1; }
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: rgba(5, 5, 8, 0.95);
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid transparent;
            border-image: var(--gradient-main) 1;
            transition: all 0.3s ease;
        }

        .header:hover {
            background: rgba(5, 5, 8, 1);
            box-shadow: var(--shadow-glow);
        }

        .logo {
            font-family: 'Orbitron', monospace;
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 0, 64, 0.5);
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-main);
            transition: width 0.5s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .auth-btn {
            background: var(--gradient-main);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .auth-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .auth-btn:hover::before {
            left: 100%;
        }

        .auth-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 0, 64, 0.6);
        }

        .main-container {
            margin-top: 120px;
            padding: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .login-section, .dashboard-section {
            display: none;
            animation: slideInUp 0.8s ease;
        }

        .login-section.active, .dashboard-section.active {
            display: block;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .auth-form {
            max-width: 450px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-strong);
            border: 2px solid transparent;
            border-image: var(--gradient-main) 1;
            position: relative;
            backdrop-filter: blur(20px);
            overflow: hidden;
        }

        .auth-form::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-main);
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .auth-form:hover::before {
            opacity: 0.3;
        }

        .form-title {
            font-family: 'Orbitron', monospace;
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            position: relative;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient-main);
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--text-light);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input {
            width: 100%;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 0, 64, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 16px;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
            transform: translateY(-2px);
        }

        .form-group input::placeholder {
            color: var(--text-gray);
        }

        .form-submit {
            width: 100%;
            padding: 20px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 30px;
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .form-submit:hover::before {
            left: 100%;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 0, 64, 0.5);
        }

        .form-switch {
            text-align: center;
            margin-top: 25px;
            color: var(--text-gray);
            font-size: 14px;
        }

        .form-switch a {
            color: var(--primary-red);
            text-decoration: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-switch a:hover {
            color: var(--secondary-red);
            text-shadow: 0 0 10px currentColor;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            margin-top: 50px;
        }

        .profile-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 30px;
            box-shadow: var(--shadow-strong);
            border: 2px solid transparent;
            border-image: var(--gradient-card) 1;
            height: fit-content;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 0, 64, 0.1), transparent, rgba(139, 92, 246, 0.1), transparent);
            animation: rotate 8s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .profile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(255, 0, 64, 0.3);
        }

        .profile-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .profile-avatar {
            width: 120px;
            height: 120px;
            background: var(--gradient-main);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 900;
            font-family: 'Orbitron', monospace;
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .profile-avatar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .profile-avatar:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 60px rgba(255, 0, 64, 0.6);
        }

        .profile-info {
            display: grid;
            gap: 20px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 0, 64, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .info-row:hover {
            background: rgba(255, 0, 64, 0.1);
            border-color: var(--primary-red);
            transform: translateX(5px);
        }

        .info-label {
            color: var(--text-gray);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .info-value {
            color: var(--text-white);
            font-weight: 700;
            font-family: 'Orbitron', monospace;
        }

        .activation-section {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 30px;
            box-shadow: var(--shadow-strong);
            border: 2px solid transparent;
            border-image: var(--gradient-card) 1;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .activation-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-main);
            border-radius: 30px;
            z-index: -1;
            opacity: 0.1;
        }

        .activation-title {
            font-family: 'Orbitron', monospace;
            font-size: 28px;
            margin-bottom: 30px;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            text-align: center;
        }

        .activation-input {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .activation-input input {
            flex: 1;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 0, 64, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 16px;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.3s ease;
        }

        .activation-input input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
        }

        .activation-btn {
            padding: 18px 35px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .activation-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 0, 64, 0.5);
        }

        .download-btn {
            display: block;
            width: 100%;
            padding: 25px;
            background: var(--gradient-main);
            color: white;
            text-align: center;
            border-radius: 20px;
            font-size: 22px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            margin-top: 40px;
            box-shadow: var(--shadow-glow);
            font-family: 'Orbitron', monospace;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .download-btn:hover::before {
            left: 100%;
        }

        .download-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 80px rgba(255, 0, 64, 0.6);
        }

        .welcome-text {
            font-family: 'Orbitron', monospace;
            font-size: 42px;
            margin-bottom: 40px;
            text-align: center;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .error-message {
            color: var(--primary-red);
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
            animation: shake 0.5s ease-in-out;
        }

        .success-message {
            color: #00ff88;
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
            animation: successPulse 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        @keyframes successPulse {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        @media (max-width: 1024px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 25px;
            }
            
            .main-container {
                padding: 20px;
            }

            .auth-form {
                padding: 30px;
            }

            .welcome-text {
                font-size: 28px;
            }
        }

        /* Добавляем эффект печатания для заголовка */
        .typing-effect {
            overflow: hidden;
            border-right: 3px solid var(--primary-red);
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--primary-red); }
        }

        /* Добавляем эффект свечения для активных элементов */
        .glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
            }
            to {
                box-shadow: 0 0 40px rgba(255, 0, 64, 0.8);
            }
        }
    </style>
</head>
<body>
    <div class="floating-particles" id="particles"></div>

    <header class="header">
        <div class="logo" onclick="createParticleExplosion(event)">RedClient</div>
        <button class="auth-btn" onclick="toggleAuth()">Авторизация</button>
    </header>

    <div class="main-container">
        <div class="login-section active" id="loginSection">
            <div class="auth-form">
                <h2 class="form-title typing-effect">Вход</h2>
                <form id="loginForm">
                    <div class="form-group">
                        <label for="loginUsername">Логин</label>
                        <input type="text" id="loginUsername" placeholder="Введите ваш логин" required>
                    </div>
                    <div class="form-group">
                        <label for="loginPassword">Пароль</label>
                        <input type="password" id="loginPassword" placeholder="Введите ваш пароль" required>
                    </div>
                    <button type="submit" class="form-submit">Войти в систему</button>
                    <div class="form-switch">
                        Нет аккаунта? <a onclick="showRegister()">Зарегистрироваться</a>
                    </div>
                </form>
            </div>

            <div class="auth-form" style="display: none;" id="registerForm">
                <h2 class="form-title">Регистрация</h2>
                <form id="registerFormEl">
                    <div class="form-group">
                        <label for="registerUsername">Логин</label>
                        <input type="text" id="registerUsername" placeholder="Выберите логин" required>
                    </div>
                    <div class="form-group">
                        <label for="registerEmail">Email</label>
                        <input type="email" id="registerEmail" placeholder="Ваш email адрес" required>
                    </div>
                    <div class="form-group">
                        <label for="registerPassword">Пароль</label>
                        <input type="password" id="registerPassword" placeholder="Придумайте пароль" required>
                    </div>
                    <button type="submit" class="form-submit">Создать аккаунт</button>
                    <div class="form-switch">
                        Уже есть аккаунт? <a onclick="showLogin()">Войти</a>
                    </div>
                </form>
            </div>
        </div>

        <div class="dashboard-section" id="dashboardSection">
            <h1 class="welcome-text" id="welcomeText">Добро пожаловать!</h1>
            
            <div class="dashboard-grid">
                <div class="profile-card">
                    <div class="profile-header">
                        <div class="profile-avatar glow" id="profileAvatar">U</div>
                        <h3 id="profileName">User</h3>
                    </div>
                    <div class="profile-info">
                        <div class="info-row">
                            <span class="info-label">UID:</span>
                            <span class="info-value" id="userUID">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Логин:</span>
                            <span class="info-value" id="userLogin">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Группа:</span>
                            <span class="info-value">Elite User</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Дата регистрации:</span>
                            <span class="info-value" id="regDate">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Последний вход:</span>
                            <span class="info-value" id="lastLogin">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Email:</span>
                            <span class="info-value" id="userEmail">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">HWID:</span>
                            <span class="info-value" id="userHWID">-</span>
                        </div>
                    </div>
                </div>

                <div>
                    <div class="activation-section">
                        <h2 class="activation-title">Активация ключа</h2>
                        <div class="activation-input">
                            <input type="text" id="activationKey" placeholder="Введите ключ активации">
                            <button class="activation-btn" onclick="activateKey()">Активировать</button>
                        </div>
                        <div id="activationMessage"></div>
                        
                        <div id="downloadSection" style="display: none;">
                            <a href="#" class="download-btn" onclick="downloadClient()">⬇ Скачать Red.exe</a>
                        </div>
                        
                        <div id="buySection">
                            <a href="https://t.me/krendelprosto" target="_blank" class="download-btn">💳 Купить клиент</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <script>
        let currentUser = null;
        const validKeys = {
            'Red': 30,
            'VIP2025': 90,
            'ADMINKEY': 365,
            'ELITE': 180,
            'MASTER': 365
        };

        // Создание частиц
        function createParticles() {
            const container = document.getElementById('particles');
            for (let i = 0; i < 50; i++) {
                const particle = document.createElement('div');
                particle.className = 'particle';
                particle.style.left = Math.random() * 100 + '%';
                particle.style.top = Math.random() * 100 + '%';
                particle.style.animationDelay = Math.random() * 6 + 's';
                particle.style.animationDuration = (Math.random() * 3 + 3) + 's';
                
                const colors = ['#ff0040', '#8b5cf6', '#06b6d4'];
                particle.style.background = colors[Math.floor(Math.random() * colors.length)];
                
                container.appendChild(particle);
            }
        }

        // Взрыв частиц при клике на лого
        function createParticleExplosion(event) {
            const rect = event.target.getBoundingClientRect();
            const centerX = rect.left + rect.width / 2;
            const centerY = rect.top + rect.height / 2;
            
            for (let i = 0; i < 20; i++) {
                const particle = document.createElement('div');
                particle.style.position = 'fixed';
                particle.style.left = centerX + 'px';
                particle.style.top = centerY + 'px';
                particle.style.width = '6px';
                particle.style.height = '6px';
                particle.style.background = '#ff0040';
                particle.style.borderRadius = '50%';
                particle.style.pointerEvents = 'none';
                particle.style.zIndex = '9999';
                particle.style.boxShadow = '0 0 10px currentColor';
                
                document.body.appendChild(particle);
                
                const angle = (Math.PI * 2 * i) / 20;
                const velocity = 100 + Math.random() * 100;
                
                particle.animate([
                    { transform: 'translate(0, 0) scale(1)', opacity: 1 },
                    {
                        transform: `translate(${Math.cos(angle) * velocity}px, ${Math.sin(angle) * velocity}px) scale(0)`,
                        opacity: 0
                    }
                ], {
                    duration: 1000,
                    easing: 'ease-out'
                }).onfinish = () => particle.remove();
            }
        }

        function toggleAuth() {
            const loginSection = document.getElementById('loginSection');
            if (loginSection.classList.contains('active')) {
                logout();
            } else {
                showLogin();
            }
        }

        function showRegister() {
            document.getElementById('loginForm').parentElement.style.display = 'none';
            document.getElementById('registerForm').style.display = 'block';
            
            // Анимация появления
            const registerForm = document.getElementById('registerForm');
            registerForm.style.opacity = '0';
            registerForm.style.transform = 'translateY(20px)';
            
            setTimeout(() => {
                registerForm.style.transition = 'all 0.5s ease';
                registerForm.style.opacity = '1';
                registerForm.style.transform = 'translateY(0)';
            }, 10);
        }

        function showLogin() {
            document.getElementById('loginForm').parentElement.style.display = 'block';
            document.getElementById('registerForm').style.display = 'none';
        }

        document.getElementById('loginForm').addEventListener('submit', function(e) {
            e.preventDefault();
            const username = document.getElementById('loginUsername').value;
            const password = document.getElementById('loginPassword').value;
            
            if (username && password) {
                // Добавляем эффект загрузки
                const submitBtn = this.querySelector('.form-submit');
                const originalText = submitBtn.textContent;
                submitBtn.textContent = 'Авторизация...';
                submitBtn.disabled = true;
                
                setTimeout(() => {
                    loginUser(username);
                }, 1500);
            }
        });

        document.getElementById('registerFormEl').addEventListener('submit', function(e) {
            e.preventDefault();
            const username = document.getElementById('registerUsername').value;
            const email = document.getElementById('registerEmail').value;
            const password = document.getElementById('registerPassword').value;
            
            if (username && email && password) {
                const submitBtn = this.querySelector('.form-submit');
                const originalText = submitBtn.textContent;
                submitBtn.textContent = 'Создание аккаунта...';
                submitBtn.disabled = true;
                
                setTimeout(() => {
                    loginUser(username, email);
                }, 1500);
            }
        });

        function loginUser(username, email = null) {
            currentUser = {
                username: username,
                email: email || username + '@redclient.com',
                uid: Math.floor(Math.random() * 10000) + 1,
                regDate: new Date().toLocaleDateString('ru-RU'),
                lastLogin: new Date().toLocaleString('ru-RU'),
                hwid: generateHWID()
            };
            
            document.querySelector('.auth-btn').textContent = 'Выйти';
            document.getElementById('loginSection').classList.remove('active');
            
            setTimeout(() => {
                document.getElementById('dashboardSection').classList.add('active');
                updateDashboard();
            }, 300);
        }

        function logout() {
            currentUser = null;
            document.querySelector('.auth-btn').textContent = 'Авторизация';
            document.getElementById('loginSection').classList.add('active');
            document.getElementById('dashboardSection').classList.remove('active');
            
            // Сброс форм
            document.getElementById('loginForm').reset();
            document.getElementById('registerFormEl').reset();
        }

        function updateDashboard() {
            if (!currentUser) return;
            
            const welcomeText = document.getElementById('welcomeText');
            welcomeText.textContent = `Добро пожаловать, ${currentUser.username}!`;
            welcomeText.classList.add('typing-effect');
            
            document.getElementById('profileAvatar').textContent = currentUser.username.charAt(0).toUpperCase();
            document.getElementById('profileName').textContent = currentUser.username;
            document.getElementById('userUID').textContent = currentUser.uid;
            document.getElementById('userLogin').textContent = currentUser.username;
            document.getElementById('regDate').textContent = currentUser.regDate;
            document.getElementById('lastLogin').textContent = currentUser.lastLogin;
            document.getElementById('userEmail').textContent = currentUser.email;
            document.getElementById('userHWID').textContent = currentUser.hwid;
        }

        function generateHWID() {
            return 'RED-' + Math.random().toString(36).substr(2, 9).toUpperCase();
        }

        function activateKey() {
            const key = document.getElementById('activationKey').value;
            const messageDiv = document.getElementById('activationMessage');
            const activationBtn = document.querySelector('.activation-btn');
            
            activationBtn.textContent = 'Проверка...';
            activationBtn.disabled = true;
            
            setTimeout(() => {
                if (validKeys[key]) {
                    messageDiv.innerHTML = `<div class="success-message">✅ Ключ активирован! Подписка на ${validKeys[key]} дней</div>`;
                    document.getElementById('downloadSection').style.display = 'block';
                    document.getElementById('buySection').style.display = 'none';
                    
                    // Добавляем эффект свечения к кнопке скачивания
                    setTimeout(() => {
                        document.querySelector('.download-btn').classList.add('glow');
                    }, 500);
                } else {
                    messageDiv.innerHTML = '<div class="error-message">❌ Неверный ключ активации</div>';
                }
                
                activationBtn.textContent = 'Активировать';
                activationBtn.disabled = false;
            }, 1500);
        }

        function downloadClient() {
            const btn = event.target;
            const originalText = btn.textContent;
            
            btn.textContent = '⬇ Загрузка...';
            btn.style.background = '#00ff88';
            
            setTimeout(() => {
                const link = document.createElement('a');
                link.href = 'data:text/plain;charset=utf-8,RedClient%20Elite%20Minecraft%20Cheat%20-%20Activated';
                link.download = 'RedClient_Elite.exe';
                link.click();
                
                btn.textContent = '✅ Загружено!';
                
                setTimeout(() => {
                    btn.textContent = originalText;
                    btn.style.background = '';
                }, 2000);
            }, 2000);
        }

        // Инициализация
        window.addEventListener('load', () => {
            createParticles();
            
            // Добавляем эффекты наведения для всех интерактивных элементов
            const interactiveElements = document.querySelectorAll('button, input, a, .info-row');
            interactiveElements.forEach(element => {
                element.addEventListener('mouseenter', function() {
                    this.style.transform = 'translateY(-2px)';
                });
                
                element.addEventListener('mouseleave', function() {
                    this.style.transform = 'translateY(0)';
                });
            });
        });

        // Параллакс эффект для мыши
        document.addEventListener('mousemove', (e) => {
            const particles = document.querySelectorAll('.particle');
            const mouseX = e.clientX / window.innerWidth;
            const mouseY = e.clientY / window.innerHeight;
            
            particles.forEach((particle, index) => {
                const speed = (index % 5 + 1) * 0.5;
                const x = (mouseX - 0.5) * speed;
                const y = (mouseY - 0.5) * speed;
                
                particle.style.transform += `translate(${x}px, ${y}px)`;
            });
        });
    </script>
</body>
</html>
 
Посмотреть вложение 312910Посмотреть вложение 312911



HTML:
Expand Collapse Copy
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>RedClient - Elite Minecraft Client</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');
       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #ff0040;
            --secondary-red: #ff3366;
            --dark-red: #cc0033;
            --neon-red: #ff0066;
            --bg-dark: #050508;
            --bg-darker: #020204;
            --bg-card: rgba(15, 15, 20, 0.95);
            --bg-glass: rgba(20, 20, 25, 0.8);
            --text-white: #ffffff;
            --text-gray: #a0a0a8;
            --text-light: #e0e0e8;
            --accent-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            --gradient-main: linear-gradient(135deg, #ff0040, #8b5cf6, #06b6d4);
            --gradient-card: linear-gradient(135deg, rgba(255, 0, 64, 0.1), rgba(139, 92, 246, 0.1));
            --shadow-glow: 0 0 30px rgba(255, 0, 64, 0.3);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.8);
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--bg-dark);
            color: var(--text-white);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 0, 64, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundPulse 8s ease-in-out infinite;
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 0 10px currentColor;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0; }
            25% { opacity: 1; }
            50% { transform: translateY(-100px) translateX(50px); opacity: 0.8; }
            75% { opacity: 1; }
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: rgba(5, 5, 8, 0.95);
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid transparent;
            border-image: var(--gradient-main) 1;
            transition: all 0.3s ease;
        }

        .header:hover {
            background: rgba(5, 5, 8, 1);
            box-shadow: var(--shadow-glow);
        }

        .logo {
            font-family: 'Orbitron', monospace;
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(255, 0, 64, 0.5);
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-main);
            transition: width 0.5s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .auth-btn {
            background: var(--gradient-main);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .auth-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .auth-btn:hover::before {
            left: 100%;
        }

        .auth-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 0, 64, 0.6);
        }

        .main-container {
            margin-top: 120px;
            padding: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .login-section, .dashboard-section {
            display: none;
            animation: slideInUp 0.8s ease;
        }

        .login-section.active, .dashboard-section.active {
            display: block;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .auth-form {
            max-width: 450px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-strong);
            border: 2px solid transparent;
            border-image: var(--gradient-main) 1;
            position: relative;
            backdrop-filter: blur(20px);
            overflow: hidden;
        }

        .auth-form::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-main);
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .auth-form:hover::before {
            opacity: 0.3;
        }

        .form-title {
            font-family: 'Orbitron', monospace;
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            position: relative;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient-main);
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--text-light);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input {
            width: 100%;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 0, 64, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 16px;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
            transform: translateY(-2px);
        }

        .form-group input::placeholder {
            color: var(--text-gray);
        }

        .form-submit {
            width: 100%;
            padding: 20px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 30px;
            font-family: 'Rajdhani', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .form-submit:hover::before {
            left: 100%;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 0, 64, 0.5);
        }

        .form-switch {
            text-align: center;
            margin-top: 25px;
            color: var(--text-gray);
            font-size: 14px;
        }

        .form-switch a {
            color: var(--primary-red);
            text-decoration: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-switch a:hover {
            color: var(--secondary-red);
            text-shadow: 0 0 10px currentColor;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            margin-top: 50px;
        }

        .profile-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 30px;
            box-shadow: var(--shadow-strong);
            border: 2px solid transparent;
            border-image: var(--gradient-card) 1;
            height: fit-content;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 0, 64, 0.1), transparent, rgba(139, 92, 246, 0.1), transparent);
            animation: rotate 8s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .profile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(255, 0, 64, 0.3);
        }

        .profile-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .profile-avatar {
            width: 120px;
            height: 120px;
            background: var(--gradient-main);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 900;
            font-family: 'Orbitron', monospace;
            box-shadow: var(--shadow-glow);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .profile-avatar::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .profile-avatar:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 60px rgba(255, 0, 64, 0.6);
        }

        .profile-info {
            display: grid;
            gap: 20px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 0, 64, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .info-row:hover {
            background: rgba(255, 0, 64, 0.1);
            border-color: var(--primary-red);
            transform: translateX(5px);
        }

        .info-label {
            color: var(--text-gray);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .info-value {
            color: var(--text-white);
            font-weight: 700;
            font-family: 'Orbitron', monospace;
        }

        .activation-section {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 30px;
            box-shadow: var(--shadow-strong);
            border: 2px solid transparent;
            border-image: var(--gradient-card) 1;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .activation-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-main);
            border-radius: 30px;
            z-index: -1;
            opacity: 0.1;
        }

        .activation-title {
            font-family: 'Orbitron', monospace;
            font-size: 28px;
            margin-bottom: 30px;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            text-align: center;
        }

        .activation-input {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .activation-input input {
            flex: 1;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 0, 64, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 16px;
            font-family: 'Rajdhani', sans-serif;
            transition: all 0.3s ease;
        }

        .activation-input input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
        }

        .activation-btn {
            padding: 18px 35px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .activation-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 0, 64, 0.5);
        }

        .download-btn {
            display: block;
            width: 100%;
            padding: 25px;
            background: var(--gradient-main);
            color: white;
            text-align: center;
            border-radius: 20px;
            font-size: 22px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            margin-top: 40px;
            box-shadow: var(--shadow-glow);
            font-family: 'Orbitron', monospace;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .download-btn:hover::before {
            left: 100%;
        }

        .download-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 80px rgba(255, 0, 64, 0.6);
        }

        .welcome-text {
            font-family: 'Orbitron', monospace;
            font-size: 42px;
            margin-bottom: 40px;
            text-align: center;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .error-message {
            color: var(--primary-red);
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
            animation: shake 0.5s ease-in-out;
        }

        .success-message {
            color: #00ff88;
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
            animation: successPulse 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        @keyframes successPulse {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        @media (max-width: 1024px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 25px;
            }
           
            .main-container {
                padding: 20px;
            }

            .auth-form {
                padding: 30px;
            }

            .welcome-text {
                font-size: 28px;
            }
        }

        /* Добавляем эффект печатания для заголовка */
        .typing-effect {
            overflow: hidden;
            border-right: 3px solid var(--primary-red);
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--primary-red); }
        }

        /* Добавляем эффект свечения для активных элементов */
        .glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 20px rgba(255, 0, 64, 0.5);
            }
            to {
                box-shadow: 0 0 40px rgba(255, 0, 64, 0.8);
            }
        }
    </style>
</head>
<body>
    <div class="floating-particles" id="particles"></div>

    <header class="header">
        <div class="logo" onclick="createParticleExplosion(event)">RedClient</div>
        <button class="auth-btn" onclick="toggleAuth()">Авторизация</button>
    </header>

    <div class="main-container">
        <div class="login-section active" id="loginSection">
            <div class="auth-form">
                <h2 class="form-title typing-effect">Вход</h2>
                <form id="loginForm">
                    <div class="form-group">
                        <label for="loginUsername">Логин</label>
                        <input type="text" id="loginUsername" placeholder="Введите ваш логин" required>
                    </div>
                    <div class="form-group">
                        <label for="loginPassword">Пароль</label>
                        <input type="password" id="loginPassword" placeholder="Введите ваш пароль" required>
                    </div>
                    <button type="submit" class="form-submit">Войти в систему</button>
                    <div class="form-switch">
                        Нет аккаунта? <a onclick="showRegister()">Зарегистрироваться</a>
                    </div>
                </form>
            </div>

            <div class="auth-form" style="display: none;" id="registerForm">
                <h2 class="form-title">Регистрация</h2>
                <form id="registerFormEl">
                    <div class="form-group">
                        <label for="registerUsername">Логин</label>
                        <input type="text" id="registerUsername" placeholder="Выберите логин" required>
                    </div>
                    <div class="form-group">
                        <label for="registerEmail">Email</label>
                        <input type="email" id="registerEmail" placeholder="Ваш email адрес" required>
                    </div>
                    <div class="form-group">
                        <label for="registerPassword">Пароль</label>
                        <input type="password" id="registerPassword" placeholder="Придумайте пароль" required>
                    </div>
                    <button type="submit" class="form-submit">Создать аккаунт</button>
                    <div class="form-switch">
                        Уже есть аккаунт? <a onclick="showLogin()">Войти</a>
                    </div>
                </form>
            </div>
        </div>

        <div class="dashboard-section" id="dashboardSection">
            <h1 class="welcome-text" id="welcomeText">Добро пожаловать!</h1>
           
            <div class="dashboard-grid">
                <div class="profile-card">
                    <div class="profile-header">
                        <div class="profile-avatar glow" id="profileAvatar">U</div>
                        <h3 id="profileName">User</h3>
                    </div>
                    <div class="profile-info">
                        <div class="info-row">
                            <span class="info-label">UID:</span>
                            <span class="info-value" id="userUID">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Логин:</span>
                            <span class="info-value" id="userLogin">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Группа:</span>
                            <span class="info-value">Elite User</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Дата регистрации:</span>
                            <span class="info-value" id="regDate">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Последний вход:</span>
                            <span class="info-value" id="lastLogin">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">Email:</span>
                            <span class="info-value" id="userEmail">-</span>
                        </div>
                        <div class="info-row">
                            <span class="info-label">HWID:</span>
                            <span class="info-value" id="userHWID">-</span>
                        </div>
                    </div>
                </div>

                <div>
                    <div class="activation-section">
                        <h2 class="activation-title">Активация ключа</h2>
                        <div class="activation-input">
                            <input type="text" id="activationKey" placeholder="Введите ключ активации">
                            <button class="activation-btn" onclick="activateKey()">Активировать</button>
                        </div>
                        <div id="activationMessage"></div>
                       
                        <div id="downloadSection" style="display: none;">
                            <a href="#" class="download-btn" onclick="downloadClient()">⬇ Скачать Red.exe</a>
                        </div>
                       
                        <div id="buySection">
                            <a href="https://t.me/krendelprosto" target="_blank" class="download-btn">💳 Купить клиент</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <script>
        let currentUser = null;
        const validKeys = {
            'Red': 30,
            'VIP2025': 90,
            'ADMINKEY': 365,
            'ELITE': 180,
            'MASTER': 365
        };

        // Создание частиц
        function createParticles() {
            const container = document.getElementById('particles');
            for (let i = 0; i < 50; i++) {
                const particle = document.createElement('div');
                particle.className = 'particle';
                particle.style.left = Math.random() * 100 + '%';
                particle.style.top = Math.random() * 100 + '%';
                particle.style.animationDelay = Math.random() * 6 + 's';
                particle.style.animationDuration = (Math.random() * 3 + 3) + 's';
               
                const colors = ['#ff0040', '#8b5cf6', '#06b6d4'];
                particle.style.background = colors[Math.floor(Math.random() * colors.length)];
               
                container.appendChild(particle);
            }
        }

        // Взрыв частиц при клике на лого
        function createParticleExplosion(event) {
            const rect = event.target.getBoundingClientRect();
            const centerX = rect.left + rect.width / 2;
            const centerY = rect.top + rect.height / 2;
           
            for (let i = 0; i < 20; i++) {
                const particle = document.createElement('div');
                particle.style.position = 'fixed';
                particle.style.left = centerX + 'px';
                particle.style.top = centerY + 'px';
                particle.style.width = '6px';
                particle.style.height = '6px';
                particle.style.background = '#ff0040';
                particle.style.borderRadius = '50%';
                particle.style.pointerEvents = 'none';
                particle.style.zIndex = '9999';
                particle.style.boxShadow = '0 0 10px currentColor';
               
                document.body.appendChild(particle);
               
                const angle = (Math.PI * 2 * i) / 20;
                const velocity = 100 + Math.random() * 100;
               
                particle.animate([
                    { transform: 'translate(0, 0) scale(1)', opacity: 1 },
                    {
                        transform: `translate(${Math.cos(angle) * velocity}px, ${Math.sin(angle) * velocity}px) scale(0)`,
                        opacity: 0
                    }
                ], {
                    duration: 1000,
                    easing: 'ease-out'
                }).onfinish = () => particle.remove();
            }
        }

        function toggleAuth() {
            const loginSection = document.getElementById('loginSection');
            if (loginSection.classList.contains('active')) {
                logout();
            } else {
                showLogin();
            }
        }

        function showRegister() {
            document.getElementById('loginForm').parentElement.style.display = 'none';
            document.getElementById('registerForm').style.display = 'block';
           
            // Анимация появления
            const registerForm = document.getElementById('registerForm');
            registerForm.style.opacity = '0';
            registerForm.style.transform = 'translateY(20px)';
           
            setTimeout(() => {
                registerForm.style.transition = 'all 0.5s ease';
                registerForm.style.opacity = '1';
                registerForm.style.transform = 'translateY(0)';
            }, 10);
        }

        function showLogin() {
            document.getElementById('loginForm').parentElement.style.display = 'block';
            document.getElementById('registerForm').style.display = 'none';
        }

        document.getElementById('loginForm').addEventListener('submit', function(e) {
            e.preventDefault();
            const username = document.getElementById('loginUsername').value;
            const password = document.getElementById('loginPassword').value;
           
            if (username && password) {
                // Добавляем эффект загрузки
                const submitBtn = this.querySelector('.form-submit');
                const originalText = submitBtn.textContent;
                submitBtn.textContent = 'Авторизация...';
                submitBtn.disabled = true;
               
                setTimeout(() => {
                    loginUser(username);
                }, 1500);
            }
        });

        document.getElementById('registerFormEl').addEventListener('submit', function(e) {
            e.preventDefault();
            const username = document.getElementById('registerUsername').value;
            const email = document.getElementById('registerEmail').value;
            const password = document.getElementById('registerPassword').value;
           
            if (username && email && password) {
                const submitBtn = this.querySelector('.form-submit');
                const originalText = submitBtn.textContent;
                submitBtn.textContent = 'Создание аккаунта...';
                submitBtn.disabled = true;
               
                setTimeout(() => {
                    loginUser(username, email);
                }, 1500);
            }
        });

        function loginUser(username, email = null) {
            currentUser = {
                username: username,
                email: email || username + '@redclient.com',
                uid: Math.floor(Math.random() * 10000) + 1,
                regDate: new Date().toLocaleDateString('ru-RU'),
                lastLogin: new Date().toLocaleString('ru-RU'),
                hwid: generateHWID()
            };
           
            document.querySelector('.auth-btn').textContent = 'Выйти';
            document.getElementById('loginSection').classList.remove('active');
           
            setTimeout(() => {
                document.getElementById('dashboardSection').classList.add('active');
                updateDashboard();
            }, 300);
        }

        function logout() {
            currentUser = null;
            document.querySelector('.auth-btn').textContent = 'Авторизация';
            document.getElementById('loginSection').classList.add('active');
            document.getElementById('dashboardSection').classList.remove('active');
           
            // Сброс форм
            document.getElementById('loginForm').reset();
            document.getElementById('registerFormEl').reset();
        }

        function updateDashboard() {
            if (!currentUser) return;
           
            const welcomeText = document.getElementById('welcomeText');
            welcomeText.textContent = `Добро пожаловать, ${currentUser.username}!`;
            welcomeText.classList.add('typing-effect');
           
            document.getElementById('profileAvatar').textContent = currentUser.username.charAt(0).toUpperCase();
            document.getElementById('profileName').textContent = currentUser.username;
            document.getElementById('userUID').textContent = currentUser.uid;
            document.getElementById('userLogin').textContent = currentUser.username;
            document.getElementById('regDate').textContent = currentUser.regDate;
            document.getElementById('lastLogin').textContent = currentUser.lastLogin;
            document.getElementById('userEmail').textContent = currentUser.email;
            document.getElementById('userHWID').textContent = currentUser.hwid;
        }

        function generateHWID() {
            return 'RED-' + Math.random().toString(36).substr(2, 9).toUpperCase();
        }

        function activateKey() {
            const key = document.getElementById('activationKey').value;
            const messageDiv = document.getElementById('activationMessage');
            const activationBtn = document.querySelector('.activation-btn');
           
            activationBtn.textContent = 'Проверка...';
            activationBtn.disabled = true;
           
            setTimeout(() => {
                if (validKeys[key]) {
                    messageDiv.innerHTML = `<div class="success-message">✅ Ключ активирован! Подписка на ${validKeys[key]} дней</div>`;
                    document.getElementById('downloadSection').style.display = 'block';
                    document.getElementById('buySection').style.display = 'none';
                   
                    // Добавляем эффект свечения к кнопке скачивания
                    setTimeout(() => {
                        document.querySelector('.download-btn').classList.add('glow');
                    }, 500);
                } else {
                    messageDiv.innerHTML = '<div class="error-message">❌ Неверный ключ активации</div>';
                }
               
                activationBtn.textContent = 'Активировать';
                activationBtn.disabled = false;
            }, 1500);
        }

        function downloadClient() {
            const btn = event.target;
            const originalText = btn.textContent;
           
            btn.textContent = '⬇ Загрузка...';
            btn.style.background = '#00ff88';
           
            setTimeout(() => {
                const link = document.createElement('a');
                link.href = 'data:text/plain;charset=utf-8,RedClient%20Elite%20Minecraft%20Cheat%20-%20Activated';
                link.download = 'RedClient_Elite.exe';
                link.click();
               
                btn.textContent = '✅ Загружено!';
               
                setTimeout(() => {
                    btn.textContent = originalText;
                    btn.style.background = '';
                }, 2000);
            }, 2000);
        }

        // Инициализация
        window.addEventListener('load', () => {
            createParticles();
           
            // Добавляем эффекты наведения для всех интерактивных элементов
            const interactiveElements = document.querySelectorAll('button, input, a, .info-row');
            interactiveElements.forEach(element => {
                element.addEventListener('mouseenter', function() {
                    this.style.transform = 'translateY(-2px)';
                });
               
                element.addEventListener('mouseleave', function() {
                    this.style.transform = 'translateY(0)';
                });
            });
        });

        // Параллакс эффект для мыши
        document.addEventListener('mousemove', (e) => {
            const particles = document.querySelectorAll('.particle');
            const mouseX = e.clientX / window.innerWidth;
            const mouseY = e.clientY / window.innerHeight;
           
            particles.forEach((particle, index) => {
                const speed = (index % 5 + 1) * 0.5;
                const x = (mouseX - 0.5) * speed;
                const y = (mouseY - 0.5) * speed;
               
                particle.style.transform += `translate(${x}px, ${y}px)`;
            });
        });
    </script>
</body>
</html>
Имбуля
 
Назад
Сверху Снизу