 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
       min-height: 100vh;
  display: flex;
  align-items: flex-start;   /* було center */
  justify-content: center;
  
  
  background-image: url('../img/photo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #fff;
    }

    .tg-screen {
  width: 420px; /* можна 450px якщо треба */
  max-width: 100%;
 
  border-radius: 8px;
  overflow: hidden;
}

    /* Верхній бар */
    .tg-header {
      height: 56px;
      padding: 0 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #17212b;
    }

    .tg-title {
      font-size: 20px;
      font-weight: 600;
    }

    .icon-btn {
      width: 32px;
      height: 32px;
      border: none;
      background: none;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
    }

    /* "бургер" */
    .burger {
      width: 18px;
      height: 2px;
      background: #fff;
      position: relative;
    }
    .burger::before,
    .burger::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: #fff;
    }
    .burger::before { top: -5px; }
    .burger::after  { top: 5px; }

    /* "лупа" */
    .search-icon {
      width: 16px;
      height: 16px;
      border: 2px solid #fff;
      border-radius: 50%;
      position: relative;
    }
    .search-icon::after {
      content: "";
      position: absolute;
      width: 8px;
      height: 2px;
      background: #fff;
      right: -6px;
      bottom: -1px;
      transform: rotate(45deg);
      border-radius: 999px;
    }

    /* Блок попередження */
    .tg-alert {
      padding: 24px 20px 20px;
      background: #1f2933;
    }

    .tg-alert-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: center;
    }

    .tg-alert-text {
      font-size: 14px;
      color: #b0bcc8;
      text-align: center;
      margin-bottom: 4px;
    }

    .tg-alert-question {
      font-size: 14px;
      color: #b0bcc8;
      text-align: center;
      margin-top: 8px;
      margin-bottom: 20px;
    }

    .tg-actions {
      display: flex;
      justify-content: center;
      gap: 24px;
    }

    .tg-btn {
      border: none;
      background: none;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
    }

    .tg-btn-yes {
      color: #4ea4ff; /* синій текст */
    }

    .tg-btn-no {
      color: #ff5b5b; /* червоний текст */
    }
     .confirm-box {
      background: #ffffff;
      color: #000;
      
      padding: 16px;
      border-radius: 6px;
      font-size: 15px;
      line-height: 1.45;
    }

    .confirm-box b {
      display: block;
      margin-bottom: 10px;
      font-size: 17px;
    }