/* CepLive yasal sayfaları — tek dosya, harici bağımlılık yok. */
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #0f1f3d;
  --muted: #5b6b85;
  --line: #d9e0ea;
  --accent: #0f9d58;
  --danger: #c62828;
  --warn-bg: #fff6e5;
  --warn-line: #f0c36d;
  --max: 760px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1422;
    --surface: #161e2e;
    --text: #eef2f8;
    --muted: #9aa8bf;
    --line: #2a3446;
    --accent: #3ddc84;
    --danger: #ff6b6b;
    --warn-bg: #2b2413;
    --warn-line: #7a5a15;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
header.site {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
header.site .inner, main, footer.site .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
}
header.site .inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
header.site a.brand { font-weight: 800; text-decoration: none; color: var(--text); font-size: 18px; }
header.site nav a { color: var(--muted); text-decoration: none; margin-left: 14px; font-size: 14px; }
header.site nav a:hover { color: var(--text); }
main { padding-top: 28px; padding-bottom: 48px; }
h1 { font-size: 30px; line-height: 1.2; margin: 0 0 6px; }
h2 { font-size: 20px; margin: 32px 0 10px; }
h3 { font-size: 16px; margin: 22px 0 6px; }
p.lede { color: var(--muted); margin-top: 0; }
p.meta { color: var(--muted); font-size: 14px; }
table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: 15px; }
th, td { text-align: left; vertical-align: top; padding: 8px 10px; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; font-size: 13px; letter-spacing: .02em; }
ul, ol { padding-left: 22px; }
li { margin: 4px 0; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 16px 0;
}
.note {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
}
.placeholder { background: rgba(255, 200, 0, .25); border-radius: 4px; padding: 0 4px; }
a { color: var(--accent); }
label { display: block; font-weight: 600; margin: 14px 0 6px; }
input[type="email"], input[type="text"] {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
}
button {
  font: inherit;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  margin-top: 14px;
  color: #fff;
  background: var(--accent);
}
button.danger { background: var(--danger); }
button[disabled] { opacity: .6; cursor: default; }
.status { margin-top: 14px; font-size: 15px; }
.status.error { color: var(--danger); }
.status.ok { color: var(--accent); }
footer.site { border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer.site a { color: var(--muted); }
.links { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 20px; }
.links a.card { display: block; text-decoration: none; color: var(--text); }
.links a.card small { display: block; color: var(--muted); margin-top: 4px; }
