<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Business Reality Simulator</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); min-height: 100vh; display: flex; justify-content: center; align-items: center; color: #fff; }
        .card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 3rem; max-width: 480px; text-align: center; }
        h1 { font-size: 2rem; margin-bottom: 0.5rem; background: linear-gradient(90deg, #667eea, #764ba2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .subtitle { color: #a0a0b0; margin-bottom: 2rem; }
        .status { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 2rem; }
        .dot { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
        .btn { display: inline-block; padding: 12px 32px; background: linear-gradient(90deg, #667eea, #764ba2); border-radius: 30px; text-decoration: none; color: #fff; font-weight: 600; transition: transform 0.2s; }
        .btn:hover { transform: scale(1.05); }
        .footer { margin-top: 2rem; font-size: 0.8rem; color: #666; }
    </style>
</head>
<body>
    <div class="card">
        <h1>Business Reality Simulator</h1>
        <p class="subtitle">AI-powered business skills training bot</p>
        <div class="status"><span class="dot"></span> Bot is running</div>
        <a href="https://t.me/GameLifeBusiness_bot" class="btn">Open in Telegram</a>
        <p class="footer">Powered by DeepSeek AI &bull; vita.magnificoworks.pro</p>
    </div>
</body>
</html>