/* Small stylesheet for index.html */
:root {
  --bg: #0f172a;
  --accent: #f97316;
  --text: #e6eef8;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(135deg, #071024 0%, var(--bg) 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  max-width: 720px;
  margin: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
}

h1 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  color: var(--accent);
}

p {
  margin: 0;
  color: rgba(230,238,248,0.9);
  line-height: 1.5;
}

@media (max-width: 480px) {
  main { padding: 18px; margin: 18px; }
}
