body {
  font-family: 'Manrope', sans-serif;
  background: linear-gradient(to right, #040404, #1f133a, #040404);
  color: white;
  margin: 0;
  padding: 0;
}

.bonus-hero {
  background: linear-gradient(black, #100a1f, black);
  box-shadow: 0px 0px 20px #3c266e;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 120px 20px 40px 20px;
}

.bonus-content {
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-title {
  font-size: 60px;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.bonus-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: white;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-steps {
  background: rgb(15, 15, 15);
  border: 2px solid #3c266e;
  border-radius: 10px;
  padding: 20px;
  margin: 40px 0;
  box-shadow: 0px 0px 20px #3c266e;
  color: white;
}

.bonus-list {
  background: rgb(15, 15, 15);
  border: 2px solid #3c266e;
  border-radius: 10px;
  padding: 20px;
  margin: 40px 0;
  box-shadow: 0px 0px 20px #3c266e;
  color: white;
}

.bonus-list h2, .bonus-steps h2 {
  font-size: 20px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
}

.bonus-list ul {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  padding: 10px 0;
  border-bottom: 1px solid #3c266e;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.bonus-list li::before {
  content: "🎁 ";
  margin-right: 10px;
}

.bonus-list li:last-child {
  border-bottom: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.step-item {
  background: black;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #3c266e;
  color: white;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.step-item h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}

.step-number {
  background: white;
  color: black;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.why-trust {
  background: rgb(15, 15, 15);
  border: 2px solid #3c266e;
  border-radius: 10px;
  padding: 20px;
  margin: 40px 0;
  box-shadow: 0px 0px 20px #3c266e;
  text-align: center;
  color: white;
}

.why-trust h2 {
  font-size: 20px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: white;
}

.why-trust p {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.cta-section {
  text-align: center;
  margin: 50px 0;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
  font-family: inherit;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: #1279da;
  color: white;
}

.hinweis {
  font-size: 14px;
  color: white;
  text-align: center;
  margin-top: 30px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.time-highlight {
  background: linear-gradient(135deg, #3c266e, #5a3f8f);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  font-weight: bold;
  color: white;
}

@media only screen and (max-width: 1200px) {
  .bonus-title {
    font-size: 40px;
  }
  .bonus-subtitle {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.container {
  padding: 60px 20px;
}

.bonus-container {
  max-width: 1000px;
  margin: auto;
  background: #100a1f;
  border: 2px solid #3c266e;
  box-shadow: 0 0 40px #3c266e;
  padding: 50px 40px;
  border-radius: 20px;
}

h1, h2 {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

p {
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

ul li::before {
  content: "✅ ";
  color: #10B981;
}

.cta {
  margin-top: 40px;
  text-align: center;
}

.cta a {
  background: white;
  color: black;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.cta a:hover {
  background: #1279da;
  color: white;
}

.hinweis {
  font-size: 13px;
  color: #ccc;
  text-align: center;
  margin-top: 30px;
}

.bonus-list, .why-trust {
  margin-top: 30px;
}