/* Базовые стили */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 30px 20px;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Центрированный контейнер */
  .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Логотип */
  .logo {
    max-width: 100px;
    margin-bottom: 30px;
  }
  
  /* Заголовок */
  h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  /* Подзаголовок */
  h2 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 25px;
  }
  
  /* Основные блоки */
  .section {
    text-align: left;
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  /* Блок с CTA */
  .cta {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
  }
  
  /* Кнопка Telegram */
  a.telegram {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #fff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  a.telegram:hover {
    background: #ccc;
  }

  .warning {
    font-size: 12px;
    color: #888;
    margin-top: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-style: italic;
  }
  
  
  /* Адаптация под экраны ≤ 600px */
  @media screen and (max-width: 600px) {
    body {
      padding: 20px 15px;
    }
  
    .logo {
      max-width: 80px;
    }
  
    h1 {
      font-size: 22px;
    }
  
    h2 {
      font-size: 18px;
    }
  
    .section {
      font-size: 15px;
      text-align: left;
    }
  
    .cta {
      font-size: 20px;
    }
  
    a.telegram {
      padding: 10px 20px;
      font-size: 16px;
    }
    
    .warning {
      font-size: 14px;
    }
  }
  