:root {
  --bg:     #0f0f11;
  --text:   #e8e8f0;
  --muted:  #7a7a8c;
  --accent: #7c6aff;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 480px;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}

a:hover {
  text-decoration: underline;
}
