/* Rechtliche Seiten (Impressum, Datenschutz) — Dark-Theme wie die App */
:root {
  --bg: #1C1C1E; --bg-panel: #2C2C2E; --bg-card: #3A3A3C; --bg-input: #48484A;
  --text: #FFFFFF; --text-muted: #AEAEB2; --text-hint: #6D6D72;
  --accent: #0A84FF; --accent-h: #409CFF;
  --border: #48484A; --radius: 12px;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }
a:hover { color: var(--accent-h); }
.wrap { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 22px; }

/* Kopfzeile */
.site-head {
  position: sticky; top: 0; z-index: 10;
  background: rgba(28,28,30,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-head .wrap { display: flex; align-items: center; gap: 14px; height: 60px; }
.brand { font-weight: 650; font-size: 17px; text-decoration: none; color: var(--text); flex: 1; }
.brand .accent { color: var(--accent); }
.btn {
  display: inline-block; background: var(--bg-card); color: var(--text);
  border-radius: 10px; padding: 9px 17px; font-size: 15px; font-weight: 550;
  text-decoration: none; transition: background .15s;
}
.btn:hover { background: var(--bg-input); color: var(--text); }

/* Inhalt */
main { padding: 48px 0 64px; }
h1 { font-size: 32px; font-weight: 650; line-height: 1.25; margin: 0 0 6px; }
.stand { color: var(--text-hint); font-size: 14px; margin: 0 0 40px; }
h2 {
  font-size: 20px; font-weight: 650; margin: 40px 0 12px;
  padding-top: 26px; border-top: 1px solid var(--border);
}
h2:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
h3 { font-size: 16px; font-weight: 650; margin: 24px 0 8px; }
p { margin: 0 0 14px; color: var(--text-muted); }
p strong, li strong { color: var(--text); font-weight: 600; }
ul { margin: 0 0 16px; padding-left: 22px; color: var(--text-muted); }
li { margin-bottom: 7px; }
code {
  background: var(--bg-card); padding: 1px 6px; border-radius: 5px;
  font-size: .88em; color: var(--text);
}

/* Adressblock */
.addr {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px; margin: 0 0 20px;
  color: var(--text); line-height: 1.8;
}
.addr .name { font-weight: 650; }

/* Hinweiskasten */
.note {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius); padding: 16px 20px; margin: 0 0 18px;
}
.note p:last-child { margin-bottom: 0; }

/* Fusszeile */
.site-foot {
  border-top: 1px solid var(--border); padding: 26px 0 44px;
  color: var(--text-hint); font-size: 14px;
}
.site-foot .wrap { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; }
.site-foot .spacer { flex: 1; }

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  main { padding: 34px 0 48px; }
  h1 { font-size: 26px; }
  h2 { font-size: 18.5px; }
}
