* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f5f3ff;
  color: #1d2129;
  line-height: 1.5;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px 16px;
}

.wrapper {
  max-width: 480px;
  width: 100%;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.headline-text2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.headline-text2 span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #6d28d9;
  margin-bottom: 10px;
}

.message-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 24px;
}

.decorative-image {
  width: 90px;
  height: auto;
  margin: 16px auto;
}

.call-to-action {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.button-section {
  flex: 1 1 45%;
}

.button {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.button.pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.button-text {
  font-size: 20px;
}

.footer-text {
  font-size: 14px;
  color: #666;
  margin-top: 32px;
}

.footer-text a {
  color: #6d28d9;
  text-decoration: none;
}

@media (max-width: 480px) {
  .button-section {
    flex: 1 1 100%;
  }
}
