/* Shared minimal styles matching the extension's look */
html, body { height: 100%; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 24px;
  color: #111;
}

.container {
  max-width: 860px;
  margin: 0 auto;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 12px; }
p { margin: 0 0 12px; }
ul { padding-left: 20px; margin: 0 0 12px; }
code { background: #f5f5f5; padding: 0 4px; border-radius: 4px; }
.muted { color: #666; }

.header { text-align: center; margin: 24px 0 32px; }
.logo { width: 72px; height: 72px; border-radius: 16px; }
.tagline { font-size: 1.05rem; color: #333; }

.cta { margin-top: 16px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.button {
  background: #1e90ff;
  color: white;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid transparent;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
  min-width: 140px;
  text-align: center;
}
.button:hover { background: #1876d1; }

.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.25);
}

.button--secondary {
  background: transparent;
  color: #1e90ff;
  border-color: #1e90ff;
}

.button--secondary:hover {
  background: rgba(30, 144, 255, 0.08);
}

.link { color: #1e90ff; text-decoration: none; }
.link:hover { text-decoration: underline; }

.footer { margin-top: 40px; text-align: center; font-size: 0.9rem; }

