* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: linear-gradient(to bottom, #eef2f6, #e3e8ef);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Контейнер */
.wrapper {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Карточка */
.card {
  background: white;
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 30px 20px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Логотип */
.logo-circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 15px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Имитация дороги */
.logo-circle img {
  max-width: 120px;
  border-radius: 100px;

}


/* Заголовок */
h1 {
  font-size: 22px;
  margin-bottom: 5px;
}

.check {
  color: #1da1f2;
  font-size: 16px;
}

/* Подписчики */
.subs {
  color: #8a8f98;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Описание */
.desc {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Кнопка */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  width: 100%;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border: none;
  padding: 15px;
  border-radius: 16px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
  transition: 0.2s;
  text-decoration: none;

}

.btn:hover {
  transform: translateY(-2px);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.55;
  color: #9aa0a6;
}

footer a {
  color: #1da1f2;
  text-decoration: none;
}

/* Адаптация под ПК */
@media (min-width: 768px) {
  .card {
    padding: 40px 30px;
  }

  h1 {
    font-size: 24px;
  }

  .desc {
    font-size: 16px;
  }
}