* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Prompt', sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

/* HERO */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.logo {
  width: 160px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 26px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-primary {
  display: block;
  width: 90%;
  max-width: 320px;
  margin: 20px auto;
  padding: 15px;
  text-align: center;
  background: linear-gradient(45deg, #ff7a00, #ffb300);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  display: block;
  width: 90%;
  max-width: 320px;
  margin: 20px auto;
  padding: 12px;
  text-align: center;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}

/* TRUST */
.trust {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* BONUS SECTION */
.bonus-section {
  padding: 40px 20px;
  text-align: center;
}

.bonus-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 30px;
}

/* BONUS IMAGES */
.bonus-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
}

/* HOW TO CLAIM */
.how {
  padding: 40px 20px;
  text-align: center;
}

.how h2 {
  margin-bottom: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step {
  background: #171717;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
}

/* IMPORTANT BOX */
.important {
  background: #1a1206;
  border-left: 4px solid orange;
  padding: 20px;
  margin: 30px 0;
  border-radius: 10px;
  font-size: 14px;
  color: #ffcc80;
}

/* EXISTING USERS */
.existing {
  padding: 40px 20px;
  text-align: center;
}

.existing h2 {
  margin-bottom: 10px;
}

.existing p {
  color: #bbb;
  font-size: 14px;
}

/* FLOATING BUTTON */
.floating-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(45deg, #ff7a00, #ffb300);
  text-align: center;
  padding: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  z-index: 999;
}

/* SPACING FIX */
section {
  margin-bottom: 60px;
}

/* MOBILE OPTIMIZATION */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .bonus-section h2 {
    font-size: 26px;
  }
}