body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #f4f4f4;
  text-align: center;
  line-height: 1.6;
}

.hero {
  background-image: url('starstile.jpg'); /* repeating tile */
  background-repeat: repeat; /* repeat horizontally and vertically */
  background-color: #0c0f1a; /* fallback color */
  color: #f4f4f4;
  padding: 6rem 1rem 4rem;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.tagline {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #ccc;
}

.signup-form {
  margin-top: 1rem;
}

input[type="email"] {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  width: 260px;
  font-size: 1rem;
  margin-right: 0.5rem;
}

button {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 6px;
  background: #e63946;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #f95f67;
}

.content {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #ddd;
}

.images img {
  width: 90%;
  max-width: 400px;
  margin: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.cta {
  background: #1b2238;
  padding: 3rem 1rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
