:root {
  --bg: #141414;
  --text: #E2E8F0;
  --accent: #2F9C95;
  --highlight: #A3E635;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  font-size: 2.5rem;
}

.tagline {
  color: var(--highlight);
  font-style: italic;
}

.coming-soon {
  margin-top: 2rem;
  font-size: 1.2rem;
  opacity: 0.8;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.5;
}
