body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 2em;
}

p a,
li a,
.content a,
.richtext a,
.entry-content a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
  color: #009ecc;
}
p a:hover, p a:focus,
li a:hover, li a:focus,
.content a:hover, .content a:focus,
.richtext a:hover, .richtext a:focus,
.entry-content a:hover, .entry-content a:focus {
  text-decoration-thickness: from-font;
}

h1 {
  font-size: 3.5em;
  margin-bottom: 0.3em;
}

.lead {
  font-size: 1.3em;
  max-width: 600px;
  margin: 0 auto 2em;
}

.cta {
  margin: 1.5em 0;
}

.button {
  display: inline-block;
  margin: 0.5em 0.5em;
  padding: 0.8em 1.5em;
  background: #00c6ff;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.button.outline {
  background: none;
  border: 2px solid #00c6ff;
  color: #00c6ff;
}

.button:hover {
  background: #00a6dd;
  color: white;
}

hr {
  border: 0;
  height: 1px;
  background: #444;
  margin: 3em auto;
  width: 80%;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
}

.steps pre {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 5px;
  margin-top: 0.5em;
}

.roadmap {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.roadmap li {
  margin: 0.5em 0;
}

.form-container {
  max-width: 400px;
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: left;
}

.form-container label {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.form-input {
  padding: 0.5em;
  border: 1px solid #444;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.form-button {
  padding: 0.8em 1.5em;
  background: #00c6ff;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.form-button:hover {
  background: #00a6dd;
  color: white;
}

.form-error {
  color: #ff4d4d;
  margin-bottom: 1em;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
  .form-container {
    width: 90%;
    max-width: none;
  }

  .form-input,
  .form-button {
    width: 100%;
    box-sizing: border-box;
  }
}
