/* Shared, lightweight stylesheet for the static content pages (About,
   Privacy Policy, Terms, Contact) — deliberately separate from styles.css.
   Those pages are simple text content, and styles.css has 3000+ rules of
   accumulated app-specific overrides; a small dedicated sheet keeps these
   pages fast and free of unrelated specificity conflicts. */
:root {
  --bg: #06060f;
  --bg2: #030308;
  --surface: #0d0d1e;
  --surface2: #12122a;
  --border: #26355a;
  --text: #e7ecf5;
  --muted: #8fa3c8;
  --accent: #f4a261;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
}
.legal-header {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(5,9,20,.82);
}
.legal-header a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .3px;
}
.legal-header .mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.legal-wrap h1 {
  font-size: 30px;
  margin: 0 0 8px;
}
.legal-updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 36px;
}
.legal-wrap h2 {
  font-size: 18px;
  margin: 32px 0 10px;
  color: #fff;
}
.legal-wrap p {
  color: #c3cee4;
  font-size: 14.5px;
  margin: 0 0 14px;
}
.legal-wrap ul {
  color: #c3cee4;
  font-size: 14.5px;
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal-wrap li {
  margin-bottom: 6px;
}
.legal-wrap a {
  color: var(--accent);
}
.legal-note {
  background: rgba(244,162,97,.08);
  border: 1px solid rgba(244,162,97,.3);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 20px;
  font-size: 13.5px;
  color: #d6def2;
}
.dr-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px 34px;
  text-align: center;
  background: var(--bg2);
}
.dr-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
}
.dr-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.dr-footer-links a:hover {
  color: var(--accent);
}
.dr-footer-meta {
  color: #5f7086;
  font-size: 11.5px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
