:root {
  color-scheme: light;
  --bg: #0f172a;
  --surface: #111827;
  --text: #e2e8f0;
  --accent: #6366f1;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.3), transparent), var(--bg);
  color: var(--text);
}

.install {
  padding: 3rem;
}

.code-snippet {
  margin: 0;
  padding: 1.5rem 2rem;
  background: var(--surface);
  color: var(--text);
  border-radius: 18px;
  font-family: Menlo, Consolas, 'Liberation Mono', monospace;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.code-snippet code {
  display: block;
  white-space: pre;
}
