body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #18151a;
  color: #f3e9dc;
}

.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 21, 26, 0.7);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'UnifrakturCook', cursive;
  font-size: 4rem;
  margin: 0 0 1rem 0;
  color: #e0c97f;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #000;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #f3e9dc;
  text-shadow: 0 1px 8px #000;
}

.cta {
  display: inline-block;
  padding: 0.8em 2em;
  background: linear-gradient(90deg, #a18cd1 0%, #fbc2eb 100%);
  color: #18151a;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px #0006;
  transition: background 0.3s, color 0.3s;
}
.cta:hover {
  background: linear-gradient(90deg, #fbc2eb 0%, #a18cd1 100%);
  color: #18151a;
}

section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(34, 30, 38, 0.95);
  border-radius: 18px;
  box-shadow: 0 2px 16px #0004;
}

h2 {
  font-family: 'UnifrakturCook', cursive;
  color: #e0c97f;
  margin-top: 0;
  font-size: 2.2rem;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features li {
  font-size: 1.1rem;
  margin: 0.7em 0;
  padding-left: 1.2em;
  position: relative;
}
.features li:before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #a18cd1;
}

.media-placeholder {
  background: #2d2533;
  color: #a18cd1;
  border: 2px dashed #a18cd1;
  border-radius: 12px;
  padding: 2.5em 0;
  font-size: 1.3rem;
  text-align: center;
}

.signup form {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1em;
}
.signup input[type="email"] {
  flex: 1 1 200px;
  padding: 0.7em;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}
.signup button {
  padding: 0.7em 1.5em;
  border-radius: 6px;
  border: none;
  background: #a18cd1;
  color: #18151a;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.signup button:hover {
  background: #e0c97f;
  color: #18151a;
}
.privacy {
  font-size: 0.95rem;
  color: #b8b0a8;
}

footer {
  text-align: center;
  padding: 2em 1em 1em 1em;
  color: #b8b0a8;
  font-size: 1rem;
}
footer a {
  color: #a18cd1;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .tagline {
    font-size: 1rem;
  }
  section {
    padding: 1rem;
  }
}
