:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-subtle: #f7f9fc;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --text: #141827;
  --text-soft: #4e586d;
  --muted: #7b8497;
  --line: #e4e8f0;
  --line-strong: #d4dae6;
  --brand: #5b55ee;
  --brand-strong: #443dd8;
  --brand-soft: #efefff;
  --cyan: #10b9d5;
  --success: #0b9f6e;
  --success-soft: #e8f8f2;
  --warning: #b56808;
  --warning-soft: #fff5df;
  --danger: #d64052;
  --danger-soft: #fff0f2;
  --code-bg: #111522;
  --code-text: #e7eaf3;
  --header-height: 66px;
  --sidebar-width: 276px;
  --toc-width: 220px;
  --content-width: 780px;
  --shadow-sm: 0 1px 2px rgb(16 24 40 / 5%);
  --shadow-lg: 0 18px 48px rgb(35 42 70 / 14%);
}

html[data-theme='dark'] {
  color-scheme: dark;
  --bg: #0c0f18;
  --bg-subtle: #111622;
  --surface: #111622;
  --surface-raised: #171d2b;
  --text: #f2f4fa;
  --text-soft: #bdc4d5;
  --muted: #8b94a9;
  --line: #242b3c;
  --line-strong: #333c51;
  --brand: #8d82ff;
  --brand-strong: #a49cff;
  --brand-soft: #242044;
  --cyan: #37cce3;
  --success: #43d7a5;
  --success-soft: #12352d;
  --warning: #f0b85b;
  --warning-soft: #352a17;
  --danger: #ff7786;
  --danger-soft: #391c25;
  --code-bg: #080b12;
  --code-text: #e8ebf4;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 20%);
  --shadow-lg: 0 20px 56px rgb(0 0 0 / 35%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -48px;
  z-index: 1000;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  padding: 8px 14px;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 10px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(260px, 540px) 1fr;
  align-items: center;
  height: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 0;
  color: var(--text);
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgb(46 67 170 / 18%);
}

.brand-name {
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-name span {
  background: linear-gradient(90deg, #0fbdd6, #5e64ef 60%, #8f4ce8);
  background-clip: text;
  color: transparent;
}

.brand-divider {
  width: 1px;
  height: 20px;
  margin: 0 11px;
  background: var(--line-strong);
}

.brand-docs {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.top-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 39px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--bg-subtle);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.top-search:focus-within {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent);
}

.search-icon {
  margin-left: 13px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1;
}

.top-search input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0 12px 0 9px;
}

.top-search input::placeholder {
  color: var(--muted);
}

kbd {
  margin-right: 8px;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  padding: 1px 7px;
  font-family: inherit;
  font-size: 11px;
  line-height: 20px;
  white-space: nowrap;
}

.search-results {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-lg);
  padding: 6px;
}

.search-result,
.search-empty {
  display: block;
  border-radius: 9px;
  padding: 10px 12px;
}

.search-result:hover,
.search-result:focus {
  background: var(--brand-soft);
  outline: 0;
}

.search-result strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.search-result span,
.search-empty {
  color: var(--muted);
  font-size: 12px;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.top-link {
  border-radius: 8px;
  color: var(--text-soft);
  padding: 7px 9px;
  font-size: 13px;
  font-weight: 550;
}

.top-link:hover {
  background: var(--bg-subtle);
  color: var(--text);
}

.console-button {
  border: 1px solid var(--text);
  border-radius: 9px;
  background: var(--text);
  color: var(--bg);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 650;
}

.console-button:hover {
  opacity: 0.88;
}

.console-button span {
  margin-left: 3px;
  opacity: 0.68;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 18px;
}

.icon-button:hover {
  background: var(--bg-subtle);
  color: var(--text);
}

.mobile-menu {
  display: none;
}

.docs-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, var(--content-width)) var(--toc-width);
  justify-content: center;
  gap: 44px;
  max-width: 1530px;
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 28px) 28px 80px;
}

.sidebar,
.toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  overflow: auto;
  max-height: calc(100vh - var(--header-height) - 48px);
}

.sidebar {
  padding-right: 23px;
  scrollbar-width: thin;
}

.nav-group + .nav-group {
  margin-top: 27px;
}

.nav-group-title {
  margin: 0 0 8px 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 36px;
  margin: 2px 0;
  border-radius: 9px;
  color: var(--text-soft);
  padding: 7px 10px;
  font-size: 13.5px;
  font-weight: 530;
  transition: background 0.12s ease, color 0.12s ease;
}

.nav-item:hover {
  background: var(--bg-subtle);
  color: var(--text);
}

.nav-item.active {
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 680;
}

.nav-item .nav-dot {
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
}

.nav-item.active .nav-dot {
  opacity: 1;
}

.doc-content {
  min-width: 0;
  outline: 0;
}

.doc-loading {
  color: var(--muted);
  padding-top: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--brand));
}

.doc-header {
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.doc-header h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.doc-header p {
  max-width: 690px;
  margin: 15px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.doc-section {
  margin-top: 42px;
}

.doc-section h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.doc-section h3 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
}

.doc-section p,
.doc-section li {
  color: var(--text-soft);
}

.doc-section a:not(.button-link) {
  color: var(--brand-strong);
  font-weight: 580;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--brand) 35%, transparent);
  text-underline-offset: 3px;
}

.doc-section ul,
.doc-section ol {
  margin: 14px 0;
  padding-left: 22px;
}

.doc-section li + li {
  margin-top: 7px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  margin: 28px 0 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 4%, color-mix(in srgb, var(--cyan) 14%, transparent), transparent 35%),
    radial-gradient(circle at 4% 100%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 38%),
    var(--bg-subtle);
  padding: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--surface);
  color: var(--text);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 650;
}

.hero-action.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.hero-action:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.endpoint-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  padding: 14px 15px;
}

.endpoint-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.endpoint-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.endpoint-value code {
  overflow: hidden;
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-copy {
  flex: 0 0 auto;
  margin-left: auto;
  border: 0;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  padding: 3px 7px;
  cursor: pointer;
  font-size: 11px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin: 22px 0 8px;
}

.quick-card {
  display: block;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 17px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.quick-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--line));
  box-shadow: 0 12px 34px rgb(46 57 100 / 9%);
}

.quick-card-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 13px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 14px;
}

.quick-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 14px;
}

.quick-card span {
  color: var(--muted);
  font-size: 12px;
}

.steps {
  margin: 22px 0;
  counter-reset: steps;
}

.step {
  position: relative;
  margin-left: 18px;
  border-left: 1px solid var(--line-strong);
  padding: 0 0 28px 34px;
  counter-increment: steps;
}

.step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.step::before {
  content: counter(steps);
  position: absolute;
  top: -2px;
  left: -15px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--brand) 40%, var(--line));
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 750;
}

.step h3 {
  margin-top: 0;
}

.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 11px;
  background: var(--brand-soft);
  padding: 14px 16px;
}

.callout.success {
  border-left-color: var(--success);
  background: var(--success-soft);
}

.callout.warning {
  border-left-color: var(--warning);
  background: var(--warning-soft);
}

.callout.danger {
  border-left-color: var(--danger);
  background: var(--danger-soft);
}

.callout-icon {
  color: var(--brand-strong);
  font-weight: 800;
}

.callout.success .callout-icon { color: var(--success); }
.callout.warning .callout-icon { color: var(--warning); }
.callout.danger .callout-icon { color: var(--danger); }

.callout strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 13px;
}

.callout p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.code-block {
  overflow: hidden;
  margin: 18px 0 24px;
  border: 1px solid color-mix(in srgb, #8290aa 28%, transparent);
  border-radius: 13px;
  background: var(--code-bg);
  box-shadow: 0 8px 28px rgb(7 10 19 / 12%);
}

.code-header {
  display: flex;
  align-items: center;
  min-height: 39px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  padding: 0 11px 0 15px;
}

.code-header span {
  color: #9aa5bb;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.copy-code {
  margin-left: auto;
  border: 0;
  border-radius: 6px;
  background: rgb(255 255 255 / 7%);
  color: #bec6d7;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 11px;
}

.copy-code:hover {
  background: rgb(255 255 255 / 12%);
  color: white;
}

.code-block pre {
  overflow: auto;
  margin: 0;
  padding: 18px;
  scrollbar-width: thin;
}

.code-block code {
  color: var(--code-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12.5px;
  line-height: 1.75;
  tab-size: 2;
}

.inline-code {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg-subtle);
  color: var(--text);
  padding: 1px 5px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.88em;
}

.method {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.method.get {
  background: var(--success-soft);
  color: var(--success);
}

.method.post {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.endpoint-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--bg-subtle);
  padding: 12px 14px;
}

.endpoint-heading code {
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.param-table {
  overflow-x: auto;
  margin: 18px 0 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.param-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.param-table th,
.param-table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}

.param-table tr:last-child td {
  border-bottom: 0;
}

.param-table th {
  background: var(--bg-subtle);
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.param-table td {
  color: var(--text-soft);
}

.param-table td:first-child {
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.required {
  margin-left: 5px;
  color: var(--danger);
  font-family: inherit;
  font-size: 10px;
}

.status-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.status-code,
.status-description {
  border-bottom: 1px solid var(--line);
  padding: 11px 13px;
}

.status-grid > :nth-last-child(-n + 2) {
  border-bottom: 0;
}

.status-code {
  background: var(--bg-subtle);
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 750;
}

.status-description {
  color: var(--text-soft);
  font-size: 13px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  padding: 17px 32px 17px 0;
  font-weight: 650;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 15px;
  right: 5px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: -2px 0 18px;
}

.page-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.page-footer a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 14px;
}

.page-footer a:last-child {
  text-align: right;
}

.page-footer a:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: var(--bg-subtle);
}

.page-footer small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.page-footer strong {
  color: var(--text);
  font-size: 13px;
}

.toc {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.toc-title {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  border-left: 1px solid transparent;
  color: var(--muted);
  padding: 5px 0;
  font-size: 12px;
  line-height: 1.45;
}

.toc a:hover,
.toc a.active {
  color: var(--brand-strong);
}

.toc a.toc-h3 {
  padding-left: 11px;
  font-size: 11.5px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  transform: translateY(16px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  padding: 9px 13px;
  opacity: 0;
  pointer-events: none;
  font-size: 12px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.sidebar-backdrop {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --sidebar-width: 250px;
  }

  .docs-shell {
    grid-template-columns: var(--sidebar-width) minmax(0, var(--content-width));
    gap: 36px;
  }

  .toc {
    display: none;
  }

  .topbar-inner {
    grid-template-columns: var(--sidebar-width) minmax(220px, 500px) 1fr;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    display: flex;
    padding: 0 18px;
    gap: 12px;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    padding: 7px;
    cursor: pointer;
  }

  .mobile-menu:hover {
    background: var(--bg-subtle);
  }

  .mobile-menu span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
  }

  .brand-divider,
  .brand-docs,
  .top-link {
    display: none;
  }

  .top-search {
    flex: 1;
    margin-left: auto;
  }

  .top-actions {
    flex: 0 0 auto;
  }

  .console-button {
    display: none;
  }

  .docs-shell {
    display: block;
    padding: calc(var(--header-height) + 25px) 22px 70px;
  }

  .sidebar {
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    z-index: 90;
    width: min(320px, 86vw);
    max-height: none;
    transform: translateX(-105%);
    border-right: 1px solid var(--line);
    background: var(--surface);
    padding: 22px;
    transition: transform 0.2s ease;
  }

  body.menu-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 80;
    background: rgb(7 11 22 / 38%);
    backdrop-filter: blur(2px);
  }

  body.menu-open .sidebar-backdrop {
    display: block;
  }

  .doc-content {
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .topbar-inner {
    padding: 0 12px;
  }

  .brand-name {
    display: none;
  }

  .brand-mark {
    margin-right: 0;
  }

  .top-search kbd,
  .icon-button {
    display: none;
  }

  .docs-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .doc-header h1 {
    font-size: 33px;
  }

  .doc-header p {
    font-size: 15px;
  }

  .hero-panel {
    padding: 17px;
  }

  .hero-grid,
  .quick-links,
  .page-footer {
    grid-template-columns: 1fr;
  }

  .page-footer a:last-child {
    text-align: left;
  }

  .param-table {
    margin-right: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
