:root {
  --bg: #0d1117;
  --surface: #161b22;
  --border: #30363d;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --accent: #58a6ff;
  --accent-subtle: #1f6feb22;
  --green: #3fb950;
  --purple: #bc8cff;
  --orange: #d29922;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding: 3rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

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

ul, ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

li {
  color: var(--text-muted);
  padding: 0.3rem 0;
}

li::marker {
  color: var(--accent);
}

li strong {
  color: var(--text);
}

em {
  color: var(--text-muted);
  font-style: italic;
}

code {
  font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
  background: #1c2330;
  color: var(--orange);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.88em;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

thead th {
  background: #1c2330;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--surface);
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: #1c2330;
}

tbody td strong {
  color: var(--text);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
