body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #334155;
  background: #ffffff;
  line-height: 1.6;
}
.docs-layout {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 280px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 2rem;
  flex-shrink: 0;
}
.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}
.logo-area {
  margin-bottom: 2.5rem;
}
.docs-nav {
  display: flex;
  flex-direction: column;
}
.nav-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #94a3b8;
  margin: 1.5rem 0 0.5rem 0;
  letter-spacing: 0.5px;
}
.docs-nav a {
  text-decoration: none;
  color: #475569;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.docs-nav a:hover, .docs-nav a.active {
  color: #0f172a;
  font-weight: 600;
}
.docs-main {
  flex-grow: 1;
  padding: 4rem 5rem;
  max-width: 800px;
}
.docs-article h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
}
.docs-article h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 2.5rem 0 1rem 0;
}
code {
  font-family: 'JetBrains Mono', monospace;
  background: #f1f5f9;
  color: #0f172a;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.875rem;
}
pre {
  background: #0f172a;
  color: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}
strong {
  color: #0f172a;
}
