body {
  min-height: 100vh;
  background:
    radial-gradient(1000px 420px at 4% -2%, #dbe9ff 0%, rgba(219, 233, 255, 0) 58%),
    radial-gradient(900px 380px at 98% 0%, #ddfff1 0%, rgba(221, 255, 241, 0) 54%),
    linear-gradient(180deg, #f5f8ff 0%, #eef3fb 100%);
}

.docs-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #d6e0ef;
  backdrop-filter: blur(11px);
  background: rgba(245, 248, 255, 0.9);
}

.docs-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.docs-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #405673;
  font-weight: 700;
  font-size: 0.9rem;
}

.docs-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.docs-main {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 0 2rem;
}

.docs-hero h1 {
  margin-top: 0.55rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.docs-hero .subtle {
  margin-top: 0.45rem;
}

.base-url-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.base-url-grid article {
  border: 1px solid #d7e2f5;
  border-radius: 12px;
  padding: 0.66rem;
  background: #ffffff;
}

.label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.71rem;
  color: #627896;
  font-weight: 800;
}

.base-url-grid code {
  display: block;
  margin-top: 0.3rem;
}

.steps {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
  color: #2f4665;
  display: grid;
  gap: 0.34rem;
}

.endpoint-grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.endpoint-card {
  border: 1px solid #d7e2f5;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.72rem;
}

.endpoint-card p {
  margin: 0;
  color: #405774;
}

.endpoint-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.28rem;
  color: #2f496b;
  font-size: 0.9rem;
}

.method {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #0f3d7c;
}

.example-grid {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.code-card {
  margin-top: 0.7rem;
  border: 1px solid #d8e2f2;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.52rem 0.62rem;
  border-bottom: 1px solid #e2eaf8;
  background: #f8fbff;
}

.code-head p {
  margin: 0;
  font-size: 0.84rem;
  color: #405a7d;
  font-weight: 700;
}

.code-card pre {
  margin: 0;
  padding: 0.8rem;
  overflow: auto;
  background: #111c34;
  color: #d4e2ff;
  font-size: 0.8rem;
  line-height: 1.5;
}

.docs-footer {
  border-top: 1px solid #d5dff0;
  background: #f3f7ff;
}

.docs-footer-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  color: #4b607f;
}

.docs-footer-inner div {
  display: inline-flex;
  gap: 1rem;
}

@media (max-width: 960px) {
  .docs-header-inner {
    min-height: auto;
    padding: 0.7rem 0;
    flex-wrap: wrap;
  }

  .docs-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
  }

  .docs-header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .base-url-grid,
  .endpoint-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }
}
