/* Shared by the privacy policy and terms pages.
   These were inline <style> blocks, which the site CSP (style-src 'self', no
   'unsafe-inline') silently blocked — leaving the App Store's privacy_url
   rendering as unstyled Times with no dark mode. Same rules, external file. */
body {
  font-family: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 1em;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #fff;
    background: #000;
  }

  a {
    color: #fff;
    border-bottom: 1px solid #fff;
  }
}
