:root {
  --bg: #0f172a;
  --card: #111827;
  --fg: #e5e7eb;
  --muted: #9ca3af;
  --accent: #60a5fa;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
}

.container {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 16px;
}

.search-box {
  position: relative;
}

input#q {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #293041;
  background: var(--card);
  color: var(--fg);
  outline: none;
  font-size: 16px;
}

.suggestions {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid #293041;
}

.suggestion {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #1f2937;
}
.suggestion:last-child { border-bottom: 0; }
.suggestion:hover { background: #0b1222; }
.suggestion .title { font-weight: 600; }
.suggestion .meta { color: var(--muted); font-size: 12px; margin-top: 3px; }

.result {
  margin-top: 20px;
  background: var(--card);
  border: 1px solid #293041;
  border-radius: 10px;
  padding: 12px;
}

pre {
  overflow: auto;
  white-space: pre-wrap;
}

h1, h2 { color: var(--fg); }

a { color: var(--accent); }

