
body {
  margin: 0;
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #111;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.nav {
  border-bottom: 1px solid #eee;
  background: white;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a {
  margin-left: 15px;
}

.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  color: #555;
}

.buttons {
  margin: 20px 0;
}

.btn {
  border: 1px solid #111;
  padding: 10px 16px;
  margin: 5px;
  display: inline-block;
  border-radius: 6px;
}

.primary {
  background: #111;
  color: white;
}

pre {
  background: #f5f5f5;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  text-align: left;
}

.features {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.card {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

/* Docs */

.docs-wrapper {
  display: flex;
  flex-direction: column;
}

.sidebar {
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.sidebar a {
  display: block;
  margin: 6px 0;
  color: #555;
}

.docs {
  padding: 20px;
}

/* Desktop */

@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .docs-wrapper {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    height: 100vh;
    border-right: 1px solid #eee;
    border-bottom: none;
  }

  .docs {
    flex: 1;
    padding: 40px;
  }
}
