/* Shared styles for the static content pages (about / contact / privacy). */
body {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.35) 100%), linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(/game/bg-tile.png) repeat, #070708;
  color: #dfdfdf;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 24px;
}
.container {
  max-width: 700px;
  margin: 40px auto;
  background: #0c0c0c;
  border: 1px solid #38322a;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}
h1 {
  font-family: 'Georgia', serif;
  color: #e2b33c;
  border-bottom: 1px solid #38322a;
  padding-bottom: 12px;
  margin-top: 0;
}
h2 {
  font-family: 'Georgia', serif;
  color: #dfdfdf;
  margin-top: 24px;
}
p {
  color: #e0e0e0; /* Improved contrast for accessibility compliance */
}
a {
  color: #e2b33c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #38322a;
  text-align: center;
  font-size: 12px;
  color: #88888c;
}
footer a {
  margin: 0 8px;
}
ul {
  padding-left: 20px;
  color: #e0e0e0;
}
li {
  margin-bottom: 12px;
}
