body {
  background: #0e0b16;
  color: #f0eefc;
  font-family: "Poppins", sans-serif;
  margin: 0;
}
a { color: #b084f2; text-decoration: none; }
a:hover { text-decoration: underline; }
header, footer { background: #1a1325; padding: 1rem; text-align: center; }
.container { max-width: 900px; margin: auto; padding: 1rem; }
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { width: 28px; vertical-align: middle; }
.logo span { margin-left: 6px; font-weight: 600; color: #d3b6ff; }
.hero { padding: 6rem 1rem; text-align: center; }
.button {
  background: #b084f2;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  color: #0e0b16;
  font-weight: 600;
  cursor: pointer;
}
.button:hover { background: #c7a3ff; }
.card {
  background: #1a1325;
  border: 1px solid #35284b;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.price { font-size: 1.5rem; color: #c7a3ff; }
textarea, input {
  width: 100%; padding: 0.75rem; margin: 0.5rem 0;
  background: #1a1325; border: 1px solid #35284b; color: #f0eefc; border-radius: 8px;
}
footer p { font-size: 0.9rem; color: #b8a9cc; }
.center { text-align: center; }
