/* Reset and base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}
/* Container for content */
.container {
  max-width: 42rem;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #222;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #222;
}
p {
  margin-bottom: 1.25rem;
  color: #555;
}
/* Simple list styling */
ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}
li {
  margin-bottom: 0.5rem;
  color: #444;
}
/* Link styling */
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Responsive tweaks */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .container {
    padding: 1.5rem;
  }
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
  html {
    background: #121212;
    color: #e0e0e0;
  }
  .container {
    background: #1e1e1e;
    box-shadow: 0;
  }
  h1, p, li, h2 {
    color: #e0e0e0;
  }
  a {
    color: #66aaff;
  }
}
