* {
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  display: flex;
  height: 100vh;
  background: #0b0f1a;
  color: #e6e8ef;
}

.sidebar {
  width: 240px;
  padding: 24px;
  background: #0f1424;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar h1 {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 700;
}

.sidebar nav a {
  display: block;
  margin-bottom: 12px;
  color: #aeb3ff;
  text-decoration: none;
  font-size: 14px;
}

.sidebar nav a:hover {
  color: #ffffff;
}

.content {
  flex: 1;
  padding: 40px 56px;
  overflow-y: auto;
}

section {
  max-width: 760px;
  margin-bottom: 48px;
}

h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  line-height: 1.6;
  opacity: 0.9;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

pre {
  background: #0f1424;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 13px;
}
