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

body {
  background: #0f0f0f;
  color: white;
}

/* FULLSCREEN */
.screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* FAKE STATS */
.stats {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 13px;
  color: #ccc;
  opacity: 0.8;
}

/* КОНТЕНТ */
.content {
  text-align: center;
  padding: 50px 20px 20px;
  flex: 1;
  animation: fadeIn 0.6s ease;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 15px;
}

.desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

/* ТРИГГЕР */
.limit {
  color: #ff3b3b;
  font-weight: 600;
}

/* CTA */
.cta {
  position: sticky;
  bottom: 0;
  padding: 16px 20px calc(20px + env(safe-area-inset-bottom));
  background: #0f0f0f;
}

/* КНОПКА */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #2AABEE;
  color: white;
  text-decoration: none;
  padding: 18px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s;
  animation: pulse 1.8s infinite;
}

.btn:active {
  transform: scale(0.96);
}

/* ПУЛЬС */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,171,238, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(42,171,238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42,171,238, 0); }
}

/* FADE */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* МОБИЛКА */
@media (max-width: 400px) {
  h1 {
    font-size: 20px;
  }

  .btn {
    font-size: 16px;
  }
}

.live {
  font-size: 13px;
  color: #aaa;
  margin-top: 10px;
}

.counter {
  font-size: 14px;
  margin-top: 6px;
  color: #ddd;
}

.counter span {
  color: #2AABEE;
  font-weight: 600;
}