/* Custom Research Style for AI Alignment aesthetic */

/* Override Skeleton defaults */
body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
  color: #333;
}

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

.container {
  max-width: 800px;
  text-align: left; /* Override center alignment */
  padding-top: 4rem;
}

/* Privacy page specific */
.container-left {
  max-width: 800px;
  padding-top: 4rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  display: block;
}

@media (prefers-color-scheme: dark) {
  .subtitle { color: #888; }
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

section {
  margin-bottom: 3rem;
}

a {
  color: #0056b3;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  border-bottom-color: #0056b3;
}

@media (prefers-color-scheme: dark) {
  a { color: #58a6ff; }
  a:hover { border-bottom-color: #58a6ff; }
}

ul.clean-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

ul.clean-list li {
  margin-bottom: 0.5rem;
}

.footer {
  border-top: 1px solid #eaeaea;
  padding-top: 2rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #777;
}

@media (prefers-color-scheme: dark) {
  .footer { border-top-color: #333; color: #888; }
}

/* Hide the old button styles if any remain */
.button { display: none; }

