/* Shared styling for content-heavy pages (FAQ, guides, legal). */

:root {
  --bg: #f9f9f9;
  --text: #333;
  --brand: #1165ed;
  --link: #0066cc;
  --card: #fff;
  --muted: #666;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 24px;
  max-width: 980px;
  margin: auto;
  background-color: var(--bg);
  color: var(--text);
}

header {
  box-sizing: border-box;
  padding: 16px;
  font-size: 20px;
  background-color: var(--brand);
  color: white;
  border-radius: 10px;
}

.subnav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subnav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.subnav a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  color: #111;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  margin-top: 16px;
}

.muted {
  color: var(--muted);
}

pre {
  overflow: auto;
  background: #0b1020;
  color: #e8e8e8;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

footer {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 600px) {
  body {
    padding: 14px;
  }
  header {
    border-radius: 0;
  }
}

