html,
.docs-page,
.docs-managed-nav,
.docs-code-block pre,
.docs-filetree-block pre {
  scrollbar-width: thin;
  scrollbar-color: rgba(172, 92, 255, .78) rgba(5, 11, 25, .72);
}

html::-webkit-scrollbar,
.docs-page::-webkit-scrollbar,
.docs-managed-nav::-webkit-scrollbar,
.docs-code-block pre::-webkit-scrollbar,
.docs-filetree-block pre::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
.docs-page::-webkit-scrollbar-track,
.docs-managed-nav::-webkit-scrollbar-track,
.docs-code-block pre::-webkit-scrollbar-track,
.docs-filetree-block pre::-webkit-scrollbar-track {
  background: rgba(5, 11, 25, .72);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb,
.docs-page::-webkit-scrollbar-thumb,
.docs-managed-nav::-webkit-scrollbar-thumb,
.docs-code-block pre::-webkit-scrollbar-thumb,
.docs-filetree-block pre::-webkit-scrollbar-thumb {
  min-height: 38px;
  border: 2px solid rgba(5, 11, 25, .72);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(172, 92, 255, .96), rgba(84, 190, 255, .82));
}

html::-webkit-scrollbar-thumb:hover,
.docs-page::-webkit-scrollbar-thumb:hover,
.docs-managed-nav::-webkit-scrollbar-thumb:hover,
.docs-code-block pre::-webkit-scrollbar-thumb:hover,
.docs-filetree-block pre::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c17aff, #60d8ff);
}

html::-webkit-scrollbar-corner,
.docs-page::-webkit-scrollbar-corner,
.docs-managed-nav::-webkit-scrollbar-corner,
.docs-code-block pre::-webkit-scrollbar-corner,
.docs-filetree-block pre::-webkit-scrollbar-corner {
  background: rgba(5, 11, 25, .9);
}

.docs-page .site-header {
  background: rgba(2, 7, 18, .72);
}

.docs-hero {
  position: relative;
  padding: 94px 0 48px;
  overflow: hidden;
}

.docs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 45%, rgba(124, 60, 255, .28), transparent 34%),
    linear-gradient(90deg, rgba(2, 7, 18, .96), rgba(2, 7, 18, .64) 50%, rgba(2, 7, 18, .18));
  pointer-events: none;
}

.docs-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(480px, 1.16fr);
  gap: 52px;
  align-items: center;
}

.docs-kicker {
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.docs-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: -.05em;
}

.docs-hero h1 span {
  display: block;
  color: var(--purple-2);
}

.docs-hero p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(247, 248, 255, .78);
  font-size: 17px;
  line-height: 1.75;
}

.docs-search {
  width: min(520px, 100%);
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(5, 13, 29, .84);
  border: 1px solid rgba(255, 255, 255, .12);
}

.docs-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}

.docs-hero-art {
  position: relative;
  min-height: 340px;
}

.docs-rings {
  position: absolute;
  left: 12%;
  right: 0;
  bottom: 16px;
  height: 130px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at center, rgba(124, 60, 255, .28) 0 2px, transparent 2px 24px),
    radial-gradient(ellipse at center, rgba(124, 60, 255, .34), transparent 66%);
  transform: perspective(700px) rotateX(64deg);
}

.docs-book {
  position: absolute;
  left: 36%;
  top: 34px;
  width: 170px;
  height: 230px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #bda7ff;
  transform: perspective(800px) rotateY(-14deg) rotateX(5deg);
  background:
    linear-gradient(135deg, rgba(181, 76, 255, .42), rgba(8, 16, 34, .86)),
    rgba(8, 16, 34, .86);
  border: 1px solid rgba(181, 76, 255, .5);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42), 0 0 58px rgba(124, 60, 255, .32);
}

.docs-book svg {
  width: 82px;
  height: 82px;
}

.docs-float {
  position: absolute;
  width: 210px;
  height: 112px;
  border-radius: 14px;
  background: rgba(8, 16, 34, .68);
  border: 1px solid rgba(124, 60, 255, .28);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .28);
}

.docs-float::before,
.docs-float::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  height: 7px;
  border-radius: 999px;
  background: rgba(124, 60, 255, .6);
}

.docs-float::before {
  top: 32px;
}

.docs-float::after {
  top: 58px;
  right: 64px;
}

.docs-float.one {
  right: 36px;
  top: 18px;
  transform: rotate(-7deg);
}

.docs-float.two {
  right: 0;
  top: 160px;
  width: 170px;
  transform: rotate(4deg);
}

.docs-layout-section {
  padding: 18px 0 42px;
}

.docs-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 18px;
}

.docs-side-card,
.docs-help-card,
.docs-panel,
.docs-stats {
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent),
    rgba(7, 15, 32, .76);
  border: 1px solid rgba(160, 130, 255, .15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.docs-side-card {
  padding: 20px;
}

.docs-side-card h3,
.docs-side-card h4 {
  margin: 0 0 14px;
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.docs-side-card h4 {
  margin-top: 34px;
  color: rgba(247, 248, 255, .72);
}

.docs-nav-item,
.docs-side-card a {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: rgba(247, 248, 255, .82);
  background: transparent;
  text-align: left;
  font-weight: 750;
}

.docs-nav-item svg,
.docs-side-card a svg {
  color: rgba(247, 248, 255, .72);
}

.docs-nav-item em,
.docs-nav-item small {
  color: rgba(247, 248, 255, .62);
  font-style: normal;
}

.docs-nav-item.active,
.docs-nav-item:hover,
.docs-side-card a:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 60, 255, .45), rgba(77, 25, 216, .22));
}

.docs-tree {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.docs-tree-section,
.docs-tree-child {
  position: relative;
}

.docs-tree-section::before,
.docs-tree-child::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 38px;
  bottom: 0;
  width: 1px;
  background: rgba(155, 168, 199, .18);
}

.docs-tree-child::before {
  left: 18px;
}

.docs-tree-head,
.docs-tree-child-head {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: 24px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  color: rgba(247, 248, 255, .82);
  background: transparent;
  text-align: left;
  font-weight: 900;
}

.docs-tree-child-head {
  min-height: 36px;
  grid-template-columns: 22px 1fr 18px;
  color: var(--muted);
  font-weight: 800;
}

.docs-tree-head:hover,
.docs-tree-child-head:hover,
.docs-tree-child.open > .docs-tree-child-head,
.docs-tree-child.is-current > .docs-tree-child-head {
  color: #fff;
  background: rgba(124, 60, 255, .12);
}

.docs-tree-child.is-current > .docs-tree-child-head svg:first-child {
  color: #fff;
}

.docs-tree-head svg:first-child,
.docs-tree-child-head svg:first-child {
  color: rgba(247, 248, 255, .72);
}

.docs-tree-head svg:last-child,
.docs-tree-child-head svg:last-child {
  transition: transform .2s ease;
}

.docs-tree-section.open > .docs-tree-head svg:last-child,
.docs-tree-child.open > .docs-tree-child-head svg:last-child {
  transform: rotate(180deg);
}

.docs-tree-children,
.docs-tree-pages {
  display: none;
}

.docs-tree-section.open > .docs-tree-children,
.docs-tree-child.open > .docs-tree-pages {
  display: grid;
}

.docs-tree-children {
  gap: 2px;
  padding-left: 20px;
}

.docs-tree-pages {
  gap: 2px;
  padding: 4px 0 8px 42px;
}

.docs-page-link {
  width: 100%;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-weight: 750;
}

.docs-page-link:hover,
.docs-page-link.active {
  color: #fff;
  background: rgba(124, 60, 255, .16);
}

.docs-tree-pages .docs-page-link.active {
  background: rgba(124, 60, 255, .2);
  box-shadow: inset 2px 0 0 var(--purple-2);
}

.docs-managed-nav {
  max-height: calc(100vh - 150px);
  overflow: auto;
  scrollbar-gutter: stable;
}

.docs-managed-nav-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.docs-managed-nav-head h3 {
  margin: 3px 0 0;
}

.docs-managed-nav-head > strong {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(172, 92, 255, .3);
  border-radius: 8px;
  color: #fff;
  background: rgba(124, 60, 255, .18);
}

.docs-managed-tree,
.docs-managed-children {
  display: grid;
  gap: 6px;
}

.docs-managed-children {
  position: relative;
  margin: 7px 0 4px calc(18px + (var(--doc-depth, 0) * 3px));
  padding-left: 16px;
}

.docs-managed-children::before {
  position: absolute;
  top: -3px;
  bottom: 8px;
  left: 5px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(172, 92, 255, .55), rgba(0, 213, 255, .12));
}

.docs-managed-node {
  position: relative;
}

.docs-managed-children > .docs-managed-node::before {
  position: absolute;
  top: 23px;
  left: -11px;
  width: 11px;
  height: 1px;
  content: "";
  background: rgba(172, 92, 255, .38);
}

.docs-managed-children > .docs-managed-node::after {
  position: absolute;
  top: 19px;
  left: -13px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: rgba(7, 15, 32, .98);
  border: 1px solid rgba(172, 92, 255, .5);
}

.docs-managed-link {
  width: 100%;
  min-height: 48px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  text-align: left;
}

.docs-managed-folder {
  grid-template-columns: 30px minmax(0, 1fr) 18px;
}

.docs-managed-link:hover,
.docs-managed-link.active {
  color: #fff;
  background: rgba(124, 60, 255, .16);
  box-shadow: inset 2px 0 0 var(--purple-2);
}

.docs-managed-link svg {
  width: 18px;
  height: 18px;
  color: var(--purple-2);
}

.docs-managed-link strong,
.docs-managed-link small {
  display: block;
}

.docs-managed-link strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-managed-link small {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(247, 248, 255, .5);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-managed-folder {
  position: relative;
  cursor: pointer;
  color: rgba(247, 248, 255, .92);
  background: linear-gradient(90deg, rgba(124, 60, 255, .16), rgba(124, 60, 255, .07));
  border: 1px solid rgba(172, 92, 255, .16);
}

.docs-managed-folder:hover {
  color: rgba(247, 248, 255, .92);
  background: linear-gradient(90deg, rgba(124, 60, 255, .2), rgba(124, 60, 255, .08));
  box-shadow: none;
}

.docs-managed-folder::after {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  content: "−";
  border-radius: 6px;
  color: var(--purple-2);
  background: rgba(124, 60, 255, .16);
  font-size: 14px;
  font-weight: 950;
}

.docs-managed-node.collapsed > .docs-managed-folder::after {
  content: "+";
}

.docs-managed-node.collapsed > .docs-managed-children {
  display: none;
}

.docs-managed-node.is-page .docs-managed-link {
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .055);
}

.docs-managed-node.is-page .docs-managed-link:hover,
.docs-managed-node.is-page .docs-managed-link.active {
  border-color: rgba(172, 92, 255, .28);
}

.docs-managed-divider {
  min-height: 30px;
  margin: 10px 0 3px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 248, 255, .48);
  background: transparent;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.docs-managed-divider::after {
  height: 1px;
  flex: 1;
  content: "";
  background: linear-gradient(90deg, rgba(172, 92, 255, .38), rgba(255, 255, 255, .06));
}

.docs-managed-divider:hover {
  color: rgba(247, 248, 255, .48);
  background: transparent;
  box-shadow: none;
}

.docs-managed-empty,
.docs-public-empty {
  padding: 28px 18px;
  border: 1px dashed rgba(172, 92, 255, .28);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  background: rgba(124, 60, 255, .06);
}

.docs-managed-empty svg,
.docs-public-empty > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  color: var(--purple-2);
}

.docs-managed-empty strong,
.docs-managed-empty span {
  display: block;
}

.docs-managed-empty span {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.55;
}

.docs-managed-search-empty {
  padding: 18px 8px 4px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.docs-reader-head p,
.docs-reader-grid p,
.docs-content-text,
.docs-content-box p {
  white-space: pre-wrap;
}

.docs-reader-grid.single {
  grid-template-columns: 1fr;
}

.docs-side-card > .docs-page-link {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  color: #00d5ff;
  font-weight: 900;
}

.docs-side-card > .docs-page-link.active {
  background: transparent;
  color: #00d5ff;
}

.docs-help-card {
  padding: 24px;
  background:
    radial-gradient(circle at 14% 14%, rgba(124, 60, 255, .34), transparent 34%),
    rgba(12, 16, 44, .84);
}

.docs-help-card > div {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--purple-2);
  background: rgba(124, 60, 255, .16);
}

.docs-help-card h3 {
  margin: 18px 0 8px;
}

.docs-help-card p {
  margin: 0 0 18px;
  color: rgba(247, 248, 255, .76);
  line-height: 1.7;
}

.docs-content {
  display: grid;
  gap: 22px;
}

.docs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px 18px;
}

.docs-stats article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.docs-stats article:last-child {
  border-right: 0;
}

.docs-stats svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  color: var(--purple-2);
  background: rgba(124, 60, 255, .18);
}

.docs-stats strong,
.docs-stats span,
.docs-stats small {
  display: block;
}

.docs-stats strong {
  font-size: 22px;
}

.docs-stats small {
  color: var(--muted);
  margin-top: 6px;
}

.docs-panel {
  padding: 24px;
}

.docs-reader {
  padding: 26px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 0% 0%, rgba(124, 60, 255, .18), transparent 32%),
    rgba(7, 15, 32, .78);
  border: 1px solid rgba(160, 130, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 0 36px rgba(124, 60, 255, .08);
}

.docs-reader-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.docs-reader-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--purple-2);
  background: rgba(124, 60, 255, .18);
}

.docs-reader-icon svg {
  width: 30px;
  height: 30px;
}

.docs-reader-head span {
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.docs-reader-head h2 {
  margin: 8px 0 10px;
  font-size: 34px;
  letter-spacing: -.04em;
}

.docs-reader-head p,
.docs-reader-grid p,
.docs-reader-grid li {
  color: var(--muted);
  line-height: 1.75;
}

.docs-reader-meta {
  margin: 8px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.docs-reader-meta small {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: rgba(247, 248, 255, .64);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 850;
}

.docs-reader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.docs-reader-grid article {
  padding: 20px;
  border-radius: 9px;
  background: rgba(3, 10, 24, .46);
  border: 1px solid rgba(255, 255, 255, .08);
}

.docs-reader-grid h3 {
  margin: 0 0 10px;
}

.docs-reader-grid ul {
  margin: 0;
  padding-left: 18px;
}

.docs-content-blocks {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.docs-content-block {
  grid-column: span 12;
  color: inherit;
}

.docs-content-block.width-half {
  grid-column: span 6;
}

.docs-content-block.width-third {
  grid-column: span 4;
}

.docs-content-block.width-two-third {
  grid-column: span 8;
}

a.docs-content-block:hover .docs-content-box,
a.docs-content-block:hover .docs-code-block,
a.docs-content-block:hover .docs-content-image,
a.docs-content-block:hover .docs-content-text {
  border-color: rgba(181, 76, 255, .42);
  transform: translateY(-1px);
}

.docs-content-text {
  margin: 0;
  min-height: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(3, 10, 24, .34);
  color: rgba(247, 248, 255, .76);
  line-height: 1.8;
  white-space: pre-wrap;
  transition: border-color .16s ease, transform .16s ease;
}

.docs-content-heading {
  margin: 16px 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(181, 76, 255, .2);
  color: #fff;
  font-size: 22px;
}

.docs-content-box {
  --box-accent: #00d5ff;
  min-height: 100%;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  border: 1px solid rgba(0, 213, 255, .22);
  border-left: 3px solid #00d5ff;
  border-radius: 8px;
  background: rgba(0, 213, 255, .07);
  color: var(--box-accent);
  transition: border-color .16s ease, transform .16s ease;
}

.docs-content-box-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #06101d;
  background: var(--box-accent);
  font-size: 16px;
  font-weight: 950;
}

.docs-content-box-icon svg {
  width: 18px;
  height: 18px;
  color: #06101d;
}

.docs-content-box strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.docs-content-box p {
  margin: 0;
  color: rgba(247, 248, 255, .75);
  line-height: 1.7;
  white-space: pre-wrap;
}

.docs-content-box.tone-success {
  --box-accent: #38dc96;
  border-color: rgba(56, 220, 150, .24);
  border-left-color: #38dc96;
  background: rgba(56, 220, 150, .07);
}

.docs-content-box.tone-warning {
  --box-accent: #ffbf48;
  border-color: rgba(255, 191, 72, .28);
  border-left-color: #ffbf48;
  background: rgba(255, 191, 72, .07);
}

.docs-content-box.tone-danger {
  --box-accent: #ff5b7e;
  border-color: rgba(255, 91, 126, .28);
  border-left-color: #ff5b7e;
  background: rgba(255, 91, 126, .07);
}

.docs-content-box.tone-tip {
  --box-accent: #b54cff;
  border-color: rgba(181, 76, 255, .3);
  border-left-color: #b54cff;
  background: rgba(181, 76, 255, .08);
}

.docs-content-box.tone-important {
  --box-accent: #ff8d4d;
  border-color: rgba(255, 141, 77, .3);
  border-left-color: #ff8d4d;
  background: rgba(255, 141, 77, .08);
}

.docs-content-box.tone-deprecated {
  --box-accent: #9aa6c1;
  border-color: rgba(154, 166, 193, .28);
  border-left-color: #9aa6c1;
  background: rgba(154, 166, 193, .08);
}

.docs-content-box.tone-beta {
  --box-accent: #7cdaff;
  border-color: rgba(124, 218, 255, .28);
  border-left-color: #7cdaff;
  background: rgba(124, 218, 255, .08);
}

.docs-content-box.tone-security {
  --box-accent: #59f0bd;
  border-color: rgba(89, 240, 189, .3);
  border-left-color: #59f0bd;
  background: rgba(89, 240, 189, .08);
}

.docs-code-block {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(125, 145, 190, .22);
  border-radius: 9px;
  background: #050914;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  transition: border-color .16s ease, transform .16s ease;
}

.docs-code-block header {
  min-height: 42px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: #0a1020;
}

.docs-code-block header button {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0, 213, 255, .22);
  border-radius: 7px;
  color: #00d5ff;
  background: rgba(0, 213, 255, .08);
  font-size: 11px;
  font-weight: 900;
}

.docs-code-block header span {
  display: flex;
  gap: 6px;
}

.docs-code-block header i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5b6b;
}

.docs-code-block header i:nth-child(2) {
  background: #ffbf48;
}

.docs-code-block header i:nth-child(3) {
  background: #38dc96;
}

.docs-code-block header strong,
.docs-code-block header small {
  overflow: hidden;
  color: rgba(247, 248, 255, .72);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-code-block header small {
  color: #8da2d1;
  text-transform: uppercase;
}

.docs-code-block pre {
  overflow: auto;
  max-height: 620px;
  margin: 0;
  padding: 18px;
}

.docs-code-block code {
  display: grid;
  min-width: max-content;
  color: #d8e3ff;
  font: 13px/1.7 Consolas, "Courier New", monospace;
  tab-size: 2;
  counter-reset: code-line;
}

.docs-code-block code span {
  display: block;
  min-height: 1.7em;
  white-space: pre;
  counter-increment: code-line;
}

.docs-code-block code span::before {
  width: 34px;
  margin-right: 18px;
  display: inline-block;
  color: #526181;
  content: counter(code-line);
  text-align: right;
  user-select: none;
}

.docs-content-image {
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(125, 145, 190, .22);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  transition: border-color .16s ease, transform .16s ease;
}

.docs-content-image img {
  width: 100%;
  min-height: 160px;
  max-height: 560px;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, .04);
}

.docs-content-image figcaption {
  padding: 12px 14px;
  color: rgba(247, 248, 255, .68);
  font-size: 13px;
  line-height: 1.55;
}

.docs-accordion-block,
.docs-filetree-block,
.docs-linkcards-block {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(3, 10, 24, .34);
}

.docs-accordion-block h3,
.docs-filetree-block h3,
.docs-linkcards-block h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
}

.docs-accordion-block details {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 0;
}

.docs-accordion-block summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.docs-accordion-block p {
  margin: 9px 0 0;
  color: rgba(247, 248, 255, .74);
  line-height: 1.7;
  white-space: pre-wrap;
}

.docs-filetree-block pre {
  overflow: auto;
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  color: #d8e3ff;
  background: #050913;
  font: 13px/1.65 Consolas, "Courier New", monospace;
}

.docs-linkcards-block > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.docs-link-card {
  min-height: 92px;
  padding: 13px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: start;
  border: 1px solid rgba(181, 76, 255, .2);
  border-radius: 8px;
  color: inherit;
  background: rgba(124, 60, 255, .08);
}

.docs-link-card svg,
.docs-link-card > span:first-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #00d5ff;
  background: rgba(0, 213, 255, .1);
  grid-row: span 2;
}

.docs-link-card strong {
  color: #fff;
}

.docs-link-card small {
  color: rgba(247, 248, 255, .66);
  line-height: 1.5;
}

.docs-search-hit {
  padding: 0 2px;
  border-radius: 3px;
  color: #07101f;
  background: #ffbf48;
}

.docs-reader-feedback {
  margin-top: 20px;
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.docs-reader-feedback strong {
  margin-right: auto;
  color: #fff;
}

.docs-reader-feedback button {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(181, 76, 255, .22);
  border-radius: 7px;
  color: #fff;
  background: rgba(124, 60, 255, .12);
  font-weight: 900;
}

.docs-reader-feedback span {
  color: rgba(247, 248, 255, .68);
  font-size: 13px;
}

.docs-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.docs-panel > p,
.docs-panel-head p {
  margin: 0;
  color: var(--muted);
}

.docs-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.docs-guide-card {
  min-height: 136px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 9px;
  background: rgba(3, 10, 24, .48);
  border: 1px solid rgba(255, 255, 255, .08);
}

.docs-guide-card > svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 9px;
  color: var(--purple-2);
  background: rgba(124, 60, 255, .18);
}

.docs-guide-card strong,
.docs-guide-card small,
.docs-guide-card em {
  display: block;
}

.docs-guide-card small {
  margin: 8px 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.docs-guide-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple-2);
  font-style: normal;
  font-weight: 850;
}

.docs-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.docs-sort {
  width: 170px;
}

.docs-script-list {
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.docs-script-item {
  background: rgba(3, 10, 24, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .075);
}

.docs-script-item:last-child {
  border-bottom: 0;
}

.docs-script-toggle {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 36px 1fr auto 18px;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border: 0;
  color: #fff;
  background: transparent;
  text-align: left;
}

.docs-script-toggle > svg:first-child {
  width: 28px;
  height: 28px;
  color: var(--purple-2);
}

.docs-script-toggle strong,
.docs-script-toggle small {
  display: block;
}

.docs-script-toggle small {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 500;
}

.docs-script-toggle em {
  margin-left: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--purple-2);
  background: rgba(124, 60, 255, .2);
  font-size: 10px;
  font-style: normal;
}

.docs-script-toggle b {
  color: rgba(247, 248, 255, .75);
  font-size: 13px;
}

.docs-script-toggle > svg:last-child {
  transition: transform .2s ease;
}

.docs-script-toggle[aria-expanded="true"] > svg:last-child {
  transform: rotate(180deg);
}

.docs-article-list {
  padding: 0 20px 16px 68px;
}

.docs-article-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 10px 0;
  color: rgba(247, 248, 255, .88);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.docs-article-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.docs-article-list em {
  color: var(--muted);
  font-style: normal;
}

.docs-script-item.is-hidden {
  display: none;
}

@media (max-width: 1100px) {
  .docs-hero-grid,
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: static;
  }

  .docs-managed-nav {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .docs-hero {
    padding-top: 74px;
  }

  .docs-stats,
  .docs-guide-grid,
  .docs-panel-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .docs-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 14px 4px;
  }

  .docs-stats article:last-child {
    border-bottom: 0;
  }

  .docs-sort {
    width: 100%;
  }

  .docs-script-toggle {
    grid-template-columns: 30px 1fr 18px;
  }

  .docs-script-toggle b {
    grid-column: 2;
  }

  .docs-reader-head,
  .docs-reader-grid {
    grid-template-columns: 1fr;
  }

  .docs-content-block,
  .docs-content-block.width-half,
  .docs-content-block.width-third,
  .docs-content-block.width-two-third {
    grid-column: span 12;
  }

  .docs-linkcards-block > div {
    grid-template-columns: 1fr;
  }

  .docs-article-list {
    padding-left: 20px;
  }
}
