/* Geteiltes Stylesheet für Rechtstexte (Impressum, AGB, Datenschutz).
   Tokens identisch zu index.html (zambly_design_system_v2, Dark Mode). */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --border: #2a2a2a;
  --text: #ffffff;
  --text-secondary: #a8a8a8;
  --text-muted: #6d6d6d;
  --mint: #00e683;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px;
}

header a.back {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
header a.back:hover { color: var(--text); }

main {
  flex: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

main h1 {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

main .stand {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

main h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 12px;
}

main h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

main p, main li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

main p { margin-bottom: 16px; }

main ul { margin: 0 0 16px 20px; }
main li { margin-bottom: 8px; }

main strong { color: var(--text); font-weight: 600; }

main a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }
main a:hover { opacity: 0.85; }

main address { font-style: normal; }

footer {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
footer .brand { font-weight: 700; letter-spacing: -0.02em; color: var(--text-secondary); }
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--text-secondary); }

@media (max-width: 480px) {
  footer { flex-direction: column; align-items: center; gap: 6px; text-align: center; }
}
