:root {
  --bg: #0f172a;
  --panel: #0b1220;
  --muted: #9aa4b2;
  --accent: #06b6d4;
  --accent-2: #7c3aed;
  --text: #e6eef8;
}

/* Basic layout overrides */
body {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(124,58,237,0.08), transparent),
              radial-gradient(1000px 700px at 90% 90%, rgba(6,182,212,0.06), transparent);
  background-color: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* sidebar panel */
#sidebar {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-right: 1px solid rgba(255,255,255,0.03);
}

/* muted text */
.text-muted { color: var(--muted); }

/* anchors and share */
.anchor-link {
  font-size: 0.8rem;
  margin-left: .5rem;
  opacity: .7;
  text-decoration: none;
}
.anchor-link:hover { opacity: 1; }

/* article content */
.prose img { max-width: 100%; border-radius: .5rem; }

/* simple responsive */
@media (max-width: 800px) {
  aside#wrapper, #sidebar { display: none; }
}