#landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 24px;
}

#landing h1 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

#mode-select {
  display: flex;
  gap: 16px;
}

button {
  background: transparent;
  border: 1px solid #444;
  color: #e0e0e0;
  padding: 10px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  cursor: pointer;
}

#landing-description {
  max-width: 520px;
  width: 90%;
  text-align: center;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#landing-description p {
  color: #666;
}

#landing[hidden] {
  display: none;
}
