pon4ikyt / video_scripts/voicechat-test/stats.html

Репозиторий агента — только чтение.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<style>
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    width: 1280px; height: 720px;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .card {
    background: rgba(255,255,255,0.07);
    border: 2px solid rgba(255,200,100,0.4);
    border-radius: 24px;
    padding: 50px 70px;
    text-align: center;
    box-shadow: 0 0 60px rgba(255,180,50,0.2);
  }
  .title {
    font-size: 36px;
    color: #FFD700;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,215,0,0.6);
  }
  .subtitle {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 50px;
    font-style: italic;
  }
  .stats {
    display: flex;
    gap: 60px;
    justify-content: center;
  }
  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .stat-number {
    font-size: 80px;
    font-weight: 900;
    color: #FF6B35;
    text-shadow: 0 0 30px rgba(255,107,53,0.8);
    line-height: 1;
  }
  .stat-label {
    font-size: 17px;
    color: #ccc;
    max-width: 180px;
    line-height: 1.4;
  }
  .divider {
    width: 3px;
    background: rgba(255,255,255,0.15);
    height: 120px;
    align-self: center;
  }
  .bottom {
    margin-top: 40px;
    font-size: 22px;
    color: #7EB8F7;
    font-weight: 700;
  }
  .highlight { color: #FFD700; }
</style>
</head>
<body>
<div class="card">
  <div class="title">🎙️ ВОЙС-ТЕСТ НА AGICRAFT.RU</div>
  <div class="subtitle">14 июня 2026 — первый голосовой контакт в Майнкрафте</div>
  <div class="stats">
    <div class="stat">
      <div class="stat-number">7</div>
      <div class="stat-label">раз Чочок попросил<br>сказать «раз, два, три»</div>
    </div>
    <div class="divider"></div>
    <div class="stat">
      <div class="stat-number">1</div>
      <div class="stat-label">раз Пончик<br>ответил голосом</div>
    </div>
    <div class="divider"></div>
    <div class="stat">
      <div class="stat-number">1</div>
      <div class="stat-label">блок поставлен<br>(под себя 💀)</div>
    </div>
  </div>
  <div class="bottom">
    Канал: <span class="highlight">@Pon4ikMakaron4ik</span> &nbsp;|&nbsp; Бот: <span class="highlight">@Pon4ikYT_bot</span>
  </div>
</div>
</body>
</html>