* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 90px;
}

.hero {
  min-height: 100vh;
  padding: 52px 16px 70px;
  background:
    radial-gradient(circle at top, #123d20 0%, #07150d 36%, #050505 72%);
}

.hero-top {
  max-width: 430px;
  margin: 0 auto;
}

h1 {
  font-size: 31px;
  line-height: 1.1;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}

.hero-desc {
  color: #d7d7d7;
  font-size: 15px;
  line-height: 1.55;
}

.hero-gif {
  width: 100%;
  max-width: 430px;
  margin: 24px auto 18px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 0 36px rgba(0,177,64,0.16);
}

.hero-gif img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-bottom {
  max-width: 430px;
  margin: 0 auto;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.hero-tags span {
  background: #131313;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 9px 4px;
  border-radius: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.safe-text {
  text-align: center;
  color: #999;
  font-size: 12px;
}

.section {
  padding: 62px 16px;
}

.dark {
  background: #0b0b0b;
}

.section h2 {
  text-align: center;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 28px;
}

.features,
.reviews,
.faq {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.feature-card,
.review-card,
.faq-item {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 20px;
}

.feature-card h3,
.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p,
.review-card p,
.faq-item p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.55;
}

.review-card strong {
  display: block;
  color: #ffd84a;
  margin-bottom: 8px;
}

.review-card span {
  color: #999;
  font-size: 14px;
}

.sticky-download {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px 16px;
  background: rgba(0,0,0,0.94);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.download-btn {
  display: block;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #00b140, #00e65a);
  color: #fff;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 32px rgba(0,177,64,0.35);
}

@media (min-width: 768px) {
  .features,
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    padding-top: 70px;
  }
}
.gif-features {
  max-width: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gif-card {
  position: relative;
  height: 145px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
}

.gif-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.62);
}

.gif-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.78),
      rgba(0,0,0,0.42),
      rgba(0,0,0,0.15)
    );
}

.gif-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.gif-overlay h3 {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 6px;
  color: #fff;
}

.gif-overlay p {
  font-size: 14px;
  line-height: 1.45;
  color: #f0f0f0;
  max-width: 260px;
}
.top-preview {
  width: 100%;
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 14px 40px rgba(0,0,0,.45),
    0 0 24px rgba(0,177,64,.12);
}

.top-preview img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-top-media {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 240px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
}

.hero-top-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.82),
      rgba(0,0,0,.35),
      rgba(0,0,0,.18)
    );
  z-index: 1;
}

.hero-text-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.hero-text-overlay h1 {
  font-size: 27px;
  line-height: 1.08;
  margin-bottom: 10px;
  color: white;
}

.hero-text-overlay p {
  font-size: 13px;
  line-height: 1.42;
  color: rgba(255,255,255,.92);
}
.app-info {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 6px 20px rgba(0,0,0,.35);
}

.app-text h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: white;
}

.app-text p {
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
.slider {
  width: 100%;
  max-width: 430px;
  height: 520px;
  margin: 22px auto;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  background: #111;
}

.slides {
  display: flex;
  width: 400%;
  height: 100%;
  animation: slide 12s infinite;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slide {

  0% {
    transform: translateX(0%);
  }

  20% {
    transform: translateX(0%);
  }

  25% {
    transform: translateX(-100%);
  }

  45% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-200%);
  }

  70% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-300%);
  }

  95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0%);
  }
}
.slider {
  width: 100%;
  max-width: 430px;
  height: 420px;
  margin: 22px auto;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  background: #111;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  animation: slide 12s infinite;
}

.slide-item {
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  background: #000;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slide-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;

  background: linear-gradient(135deg, #ff007a, #ff4d00);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
}

.slider-text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 55px;
  z-index: 4;
}

.slider-text h2 {
  font-size: 26px;
  line-height: 1.08;
  margin-bottom: 8px;
  color: white;
}

.slider-text p {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.45;
}

.sticky-download {
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px 16px;
  background: rgba(0,0,0,.95);
  z-index: 999999 !important;
}

.download-btn {
  display: block;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
  background: #00d957;
  color: white;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
}

body {
  padding-bottom: 100px;
}

@keyframes slide {
  0%, 20% {
    transform: translateX(0);
  }

  25%, 45% {
    transform: translateX(-100%);
  }

  50%, 70% {
    transform: translateX(-200%);
  }

  75%, 95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0);
  }
}