:root {
  --bg: #0b1020;
  --panel: #0f172a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border-subtle: rgba(148,163,184,0.35);
  --accent-a: #8b5cf6;
  --accent-b: #06b6d4;
  --accent: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  --card: rgba(15,23,42,0.9);
  --card-soft: rgba(15,23,42,0.65);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(15,23,42,0.55);
  --code-bg: #020617;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 0%, rgba(56,189,248,0.08), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(129,140,248,0.16), transparent 55%),
              #020617;
  color: var(--text);
  display: flex;
  flex-direction: column;
}


/* Docs global link style */
a {
  color: var(--text);
  text-decoration: none;
}
a:visited {
  color: var(--text);
}
a:hover {
  color: #ffffff;
}
