* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #e6f4fb, #f4fbff);
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 390px;
  padding: 24px 16px 40px;
  text-align: center;
}

/* Логотип */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

/* Заголовок */
.title {
  color: #000000;
  margin: 20px 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Карточка */
.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 26px 20px;
  color: #1c1c1c;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.card h2 {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #111;
}

/* Фичи */
.features {
  width: 100%;
  margin: 18px auto 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.features li {
  width: 100%;
  max-width: 360px;

  list-style: none;

  font-size: 16px;          /* ⬅️ БОЛЬШЕ */
  font-weight: 600;
  line-height: 1.45;

  text-align: center;
  word-wrap: break-word;
  white-space: normal;      /* ⬅️ РАЗРЕШАЕМ ПЕРЕНОС */

  background: #f0f7fb;
  color: #1c1c1c;

  padding: 12px 16px;       /* ⬅️ БОЛЬШЕ ВОЗДУХА */
  border-radius: 16px;

  opacity: 0;
  transform: translateY(10px);
  animation: featureFade 0.6s ease forwards;
}

/* Кнопка */
.cta {
  width: 100%;
  padding: 15px;
  border-radius: 28px;
  border: none;

  font-size: 16px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(135deg, #2AABEE, #229ED9);
  cursor: pointer;

  box-shadow:
    0 0 0 rgba(42,171,238, 0.0);
  animation: tgPulse 2s infinite;
}

@keyframes tgPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42,171,238, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(42,171,238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42,171,238, 0);
  }
}

.cta:active {
  transform: scale(0.97);
}

.note {
  font-size: 12px;
  margin-top: 12px;
  color: #555;
  animation: pulseText 1.6s infinite;
}

@keyframes pulseText {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 6px rgba(255,255,255,0.6);
  }
  100% {
    opacity: 0.6;
  }
}

.results {
  margin-top: 16px;
  font-size: 13px;
}

/* Сделки */
.deals {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.deals img {
  width: 120px;
  border-radius: 14px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.deals img:hover {
  transform: scale(1.05);
}

/* Модалка */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Анимация появления карточки */
.card {
  animation: fadeUp 0.8s ease forwards;
}

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

.features li:nth-child(1) { animation-delay: 0.2s; }
.features li:nth-child(2) { animation-delay: 0.35s; }
.features li:nth-child(3) { animation-delay: 0.5s; }
.features li:nth-child(4) { animation-delay: 0.65s; }

@keyframes featureFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}