:root {
  color-scheme: dark;
  --bg: #0b1220;
  --bg-soft: #121a2b;
  --text: #e6edf3;
  --text-muted: #a5b0c0;
  --accent: #4da3ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hero,
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero h1 {
  margin: 0;
  font-size: 2.5rem;
}

.hero p {
  color: var(--text-muted);
}

.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.downloads a {
  background: var(--accent);
  color: #001022;
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
}

section {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

a {
  color: #84c0ff;
}
