/* Dark Theme Reset & Body Styles */
body {
  margin: 0;
  padding: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.7;
  background-color: #1a1a1d;
  color: #c5c6c7;
  font-size: 16px;
}

.site-wrapper {
  padding: 25px 15px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #2c2f33;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.site-header {
  text-align: center;
  padding: 40px 20px;
  background-color: #23272a;
  border-bottom: 1px solid #4f545c;
}

.site-header h1 {
  margin: 0 0 10px 0;
  color: #ffffff;
  font-size: 2.8em;
  font-weight: 600;
  letter-spacing: 1px;
}

.site-header p {
  margin: 0;
  color: #99aab5;
  font-size: 1.2em;
}

.site-content {
  padding: 30px 25px;
}

.feature-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #40444b;
}

.feature-section:last-child {
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: none;
}

.site-content h2 {
  color: #7289da;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #7289da;
  padding-bottom: 8px;
  display: inline-block;
  font-size: 1.8em;
  font-weight: 500;
}

.site-content p {
  margin-bottom: 15px;
  color: #b9bbbe;
}

.site-content ul {
  list-style: none;
  padding-left: 0;
}

.site-content li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.site-content li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 1px;
  color: #7289da;
  /* Accent color */
  font-weight: bold;
  font-size: 0.9em;
}

strong {
  color: #ffffff;
  font-weight: 600;
}

em {
  color: #b9bbbe;
  font-style: italic;
}

code {
  background-color: #1e2124;
  padding: 4px 8px;
  border-radius: 5px;
  font-family:
    "Fira Code", Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  color: #839496;
  border: 1px solid #40444b;
}

.card {
  background-color: #23272a;
  border: 1px solid #4f545c;
  padding: 20px;
  margin-top: 15px;
  border-radius: 6px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.card code {
  background-color: #2c2f33;
  border: 1px solid #5a5e63;
}

.site-content img {
  border: 1px solid #4f545c;
  margin-top: 15px;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.site-footer {
  text-align: center;
  padding: 25px 20px;
  border-top: 1px solid #4f545c;
  font-size: 0.95em;
  color: #99aab5;
  background-color: #23272a;
}

.site-footer p {
  margin: 5px 0;
  color: #99aab5;
}

a {
  color: #7289da;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}
