/* TomorrowSkies Studio — Minimal Dark Theme
   Used by https://privacy.tomorrowskies.com/
   Last updated: October 2025
*/

body {
  background-color: #1a1a1a;
  color: #e6e6e6;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  margin: 2rem auto;
  padding: 0 1.25rem;
  max-width: 750px;
}

h1, h2, h3 {
  color: #00c8a1; /* Spectral teal accent */
  font-weight: 600;
  margin-top: 2rem;
}

a {
  color: #00c8a1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #27e5bd;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 2.5rem 0;
}

footer {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 3rem;
  line-height: 1.4;
}

footer a {
  color: #00c8a1;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #27e5bd;
}

code, pre {
  background-color: #222;
  color: #9ef7d9;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.95em;
}

@media (max-width: 600px) {
  body {
    padding: 0 1rem;
    font-size: 0.95rem;
  }
  h1 {
    font-size: 1.6rem;
  }
}

@media print {
  body {
    background: white !important;
    color: black !important;
  }
  a {
    color: black !important;
    text-decoration: underline;
  }
}