/* ===== Stile base per Privacy e ToS ===== */
:root {
  color-scheme: dark;
  --bg: #0d0d0d;
  --text: #dcdcdc;
  --accent: #4ea1ff;
  --card-bg: #161616;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

main {
  max-width: 850px;
  margin: 60px auto;
  padding: 0 24px 100px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

h1, h2 {
  color: white;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  text-align: center;
}

h2 {
  margin-top: 1.8em;
  font-size: 1.2rem;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: disc;
  padding-left: 30px;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: 40px;
}
