/* style-dark.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

h2, h3, h4 {
  color: #f5f5f5;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

p, ul, ol {
  margin: 1rem 0;
}

a {
  color: #80cbc4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code, pre {
  background-color: #2c2c2c;
  color: #f8f8f2;
  padding: 2px 4px;
  border-radius: 4px;
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 0.95em;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

@media (max-width: 600px) {
  .container {
    margin: 1rem;
    padding: 1rem;
  }
}
