:root {
  --header-height: 72px;
  --sidebar-width: 300px;
  --accent: #2f9e44;
  --accent-strong: #237a35;
  --accent-soft: #eaf7ed;
  --page: #f6f8f5;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --text: #243129;
  --text-muted: #66736b;
  --heading: #17241b;
  --border: #dce4dd;
  --code: #f1f5f1;
  --shadow: 0 18px 60px rgba(31, 54, 37, 0.16);
  --cover-background:
    radial-gradient(circle at 18% 18%, rgba(255, 235, 128, 0.42), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(93, 224, 167, 0.34), transparent 38rem),
    linear-gradient(135deg, #f7f6d8 0%, #e5f5dc 48%, #d9f5e7 100%);
  --cover-text: #17351f;
  --cover-muted: #365c40;
  --cover-button: #247f39;
  --cover-button-hover: #1c672e;
  --theme-color: var(--accent);
  color-scheme: light;
}

:root[data-theme="dark"] {
  --accent: #69db7c;
  --accent-strong: #8ce99a;
  --accent-soft: #183c22;
  --page: #101612;
  --surface: #151d18;
  --surface-raised: #1b251e;
  --text: #d8e3db;
  --text-muted: #97a69b;
  --heading: #f0f7f2;
  --border: #2d3a31;
  --code: #202a23;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
  --cover-background:
    radial-gradient(circle at 18% 18%, rgba(127, 109, 35, 0.2), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(43, 139, 93, 0.22), transparent 38rem),
    linear-gradient(135deg, #172019 0%, #13251a 48%, #10231d 100%);
  --cover-text: #f0f7f2;
  --cover-muted: #bfd0c3;
  --cover-button: #69db7c;
  --cover-button-hover: #8ce99a;
  color-scheme: dark;
}

html {
  background: var(--page);
}

body {
  background:
    radial-gradient(circle at 85% 5%, rgba(105, 219, 124, 0.08), transparent 28rem),
    var(--page);
  color: var(--text);
  font-family: "Segoe UI", "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  transition: background-color 180ms ease, color 180ms ease;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border-bottom: 1px solid var(--border);
  display: flex;
  height: var(--header-height);
  left: 0;
  gap: 24px;
  padding: 0 28px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.site-brand {
  align-items: center;
  color: var(--heading);
  display: inline-flex;
  font-size: 18px;
  justify-self: start;
  font-weight: 700;
  gap: 11px;
  letter-spacing: 0.01em;
  min-width: 0;
  order: 1;
  text-decoration: none;
}

.brand-logo {
  display: inline-block;
  height: 42px;
  overflow: hidden;
  position: relative;
  width: 42px;
}

.brand-logo img {
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(1.48);
  transform-origin: 50% 0;
  width: 42px;
}

.site-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  justify-self: end;
  order: 3;
}

.header-nav {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  max-width: 100%;
  min-width: 0;
  order: 2;
  overflow: hidden;
  position: static;
  right: auto;
  text-align: initial;
  z-index: auto;
}

.site-header .header-nav > .header-nav-link {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-muted);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  margin: 0;
  min-height: 38px;
  padding: 0 15px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.site-header .header-nav > .header-nav-link:hover {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 20%, transparent);
  color: var(--accent-strong);
}

.site-header .header-nav > .header-nav-link.is-active {
  background: color-mix(in srgb, var(--accent) 14%, var(--surface-raised));
  border-color: color-mix(in srgb, var(--accent) 38%, var(--border));
  box-shadow: 0 3px 10px rgba(47, 158, 68, 0.1);
  color: var(--accent-strong);
}

.site-header .header-nav > .header-nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header-button {
  align-items: center;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 42px;
  justify-content: center;
  padding: 0 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-button:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(47, 158, 68, 0.12);
  transform: translateY(-1px);
}

.header-button svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 19px;
}

.header-button kbd,
.search-hint kbd {
  background: var(--code);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 11px !important;
  line-height: 1;
  margin: 0;
  padding: 4px 6px;
}

.icon-button {
  padding: 0;
  width: 42px;
}

[data-theme="light"] .theme-icon-sun,
[data-theme="dark"] .theme-icon-moon {
  display: none;
}

body.docs-page main {
  padding-top: var(--header-height);
}

body.docs-page .sidebar {
  background: var(--surface);
  border-color: var(--border);
  bottom: 0;
  color: var(--text);
  padding-top: 24px;
  position: fixed;
  top: var(--header-height);
}

body.docs-page .content {
  background: transparent;
  bottom: auto;
  box-sizing: border-box;
  left: auto;
  margin-left: var(--sidebar-width);
  min-height: calc(100vh - var(--header-height));
  min-width: 0;
  overflow-x: clip;
  padding-top: 30px;
  position: relative;
  right: auto;
  top: auto;
  width: calc(100% - var(--sidebar-width));
}

body.docs-page.close .content {
  margin-left: 0;
  width: 100%;
}

body.docs-page .sidebar-toggle {
  bottom: 18px;
  position: fixed;
}

.sidebar,
.sidebar ul li a,
.anchor span,
.markdown-section,
.markdown-section h1,
.markdown-section h2,
.markdown-section h3,
.markdown-section h4,
.markdown-section strong {
  color: var(--text);
}

.markdown-section {
  box-sizing: border-box;
  max-width: 980px;
  overflow-wrap: anywhere;
  padding-bottom: 0;
  width: calc(100% - 48px);
  word-break: break-word;
}

.markdown-section > :not(pre),
.markdown-section font,
.markdown-section strong {
  max-width: 100%;
  white-space: normal;
}

.markdown-section img,
.markdown-section video,
.markdown-section iframe {
  height: auto;
  max-width: 100%;
}

.markdown-section pre,
.markdown-section table {
  max-width: 100%;
}

.markdown-section h1,
.markdown-section h2,
.markdown-section h3,
.markdown-section h4,
.markdown-section h5 {
  color: var(--heading);
}

:root[data-theme="dark"] .markdown-section font[color="black"],
:root[data-theme="dark"] .markdown-section [color="black"] {
  color: var(--text) !important;
}

.markdown-section a,
.sidebar ul li.active > a,
.search .search-keyword {
  color: var(--accent);
}

.markdown-section code,
.markdown-section pre,
.markdown-section p.tip code {
  background: var(--code);
}

.markdown-section code,
.markdown-section pre > code {
  color: var(--text);
}

.markdown-section .code-block {
  border: 1px solid color-mix(in srgb, var(--border) 82%, var(--accent));
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 54, 37, 0.08);
  margin: 1.5em 0;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.markdown-section .code-block pre {
  background: var(--code);
  border-radius: 0;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  padding: 1.35rem 1.4rem 4.2rem;
  scrollbar-color: color-mix(in srgb, var(--text-muted) 45%, transparent) transparent;
  scrollbar-width: thin;
  tab-size: 4;
  white-space: pre;
  word-break: normal;
  word-wrap: normal;
}

.markdown-section .code-block pre > code,
.markdown-section .code-block pre > code * {
  overflow-wrap: normal;
  tab-size: inherit;
  white-space: pre;
  word-break: normal;
}

.markdown-section .code-block pre > code {
  background: transparent;
  color: var(--text);
  display: block;
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
  min-width: max-content;
  overflow: visible;
  padding: 0;
}

.markdown-section .code-block pre::after {
  background: color-mix(in srgb, var(--code) 90%, transparent);
  border-bottom-left-radius: 7px;
  color: var(--text-muted);
  padding: 6px 10px;
  right: 0;
  top: 0;
}

.code-copy-button {
  align-items: center;
  background: color-mix(in srgb, var(--surface-raised) 92%, transparent);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  min-width: 54px;
  padding: 8px 10px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  z-index: 2;
}

.code-copy-button:hover,
.code-copy-button:focus-visible {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 48%, var(--border));
  color: var(--accent-strong);
}

.code-copy-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.code-copy-button.is-success {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.code-copy-button.is-error {
  color: #c92a2a;
}

.markdown-section .token.comment,
.markdown-section .token.prolog,
.markdown-section .token.doctype,
.markdown-section .token.cdata {
  color: #6f7f74;
  font-style: italic;
}

.markdown-section .token.keyword,
.markdown-section .token.control,
.markdown-section .token.directive,
.markdown-section .token.atrule {
  color: #b42318;
  font-weight: 600;
}

.markdown-section .token.string,
.markdown-section .token.char,
.markdown-section .token.attr-value,
.markdown-section .token.regex {
  color: #16794b;
}

.markdown-section .token.number,
.markdown-section .token.boolean,
.markdown-section .token.constant {
  color: #9a4d00;
}

.markdown-section .token.function,
.markdown-section .token.method {
  color: #185abc;
}

.markdown-section .token.class-name,
.markdown-section .token.builtin,
.markdown-section .token.type {
  color: #7856b3;
}

.markdown-section .token.operator,
.markdown-section .token.punctuation {
  color: #4d5d52;
}

.markdown-section .token.variable,
.markdown-section .token.property,
.markdown-section .token.parameter {
  color: #8a3c78;
}

:root[data-theme="dark"] .markdown-section .code-block {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .markdown-section .token.comment,
:root[data-theme="dark"] .markdown-section .token.prolog,
:root[data-theme="dark"] .markdown-section .token.doctype,
:root[data-theme="dark"] .markdown-section .token.cdata {
  color: #91a398;
}

:root[data-theme="dark"] .markdown-section .token.keyword,
:root[data-theme="dark"] .markdown-section .token.control,
:root[data-theme="dark"] .markdown-section .token.directive,
:root[data-theme="dark"] .markdown-section .token.atrule {
  color: #ff8e86;
}

:root[data-theme="dark"] .markdown-section .token.string,
:root[data-theme="dark"] .markdown-section .token.char,
:root[data-theme="dark"] .markdown-section .token.attr-value,
:root[data-theme="dark"] .markdown-section .token.regex {
  color: #8ce99a;
}

:root[data-theme="dark"] .markdown-section .token.number,
:root[data-theme="dark"] .markdown-section .token.boolean,
:root[data-theme="dark"] .markdown-section .token.constant {
  color: #ffc078;
}

:root[data-theme="dark"] .markdown-section .token.function,
:root[data-theme="dark"] .markdown-section .token.method {
  color: #74c0fc;
}

:root[data-theme="dark"] .markdown-section .token.class-name,
:root[data-theme="dark"] .markdown-section .token.builtin,
:root[data-theme="dark"] .markdown-section .token.type {
  color: #d0bfff;
}

:root[data-theme="dark"] .markdown-section .token.operator,
:root[data-theme="dark"] .markdown-section .token.punctuation {
  color: #c8d5cc;
}

:root[data-theme="dark"] .markdown-section .token.variable,
:root[data-theme="dark"] .markdown-section .token.property,
:root[data-theme="dark"] .markdown-section .token.parameter {
  color: #f0a6dc;
}

.markdown-section blockquote {
  color: var(--text-muted);
}

.markdown-section hr,
.markdown-section td,
.markdown-section th,
.markdown-section tr {
  border-color: var(--border);
}

.markdown-section p.tip,
.markdown-section tr:nth-child(2n) {
  background: var(--surface-raised);
}

.sidebar-toggle {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.sidebar-toggle span {
  background: var(--accent);
}

section.cover {
  background: var(--cover-background) !important;
  color: var(--cover-text);
  isolation: isolate;
}

section.cover.show {
  flex-direction: column;
}

section.cover.has-mask .mask {
  background: transparent;
  opacity: 1;
  z-index: 0;
}

section.cover .cover-main {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 44px 16px 32px;
  z-index: 1;
  width: calc(100% - 32px);
}

section.cover .project-badges {
  align-items: center;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: center;
}

section.cover .project-badges a,
section.cover .project-badges img {
  display: block;
}

section.cover h1 {
  color: var(--cover-text);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin-bottom: 1.75rem;
  max-width: 1100px;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  width: 100%;
}

section.cover h1 small {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(36, 127, 57, 0.2);
  border-radius: 999px;
  bottom: auto;
  color: var(--cover-muted);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 12px;
  padding: 5px 10px;
  position: static;
  vertical-align: middle;
}

:root[data-theme="dark"] section.cover h1 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

:root[data-theme="dark"] section.cover h1 small {
  background: rgba(16, 35, 29, 0.76);
  border-color: rgba(105, 219, 124, 0.28);
}

:root[data-theme="dark"] section.cover .cover-main > p:last-child a {
  background: rgba(16, 35, 29, 0.74);
}

section.cover blockquote {
  color: var(--cover-text);
  font-size: clamp(1.12rem, 1.65vw, 1.45rem);
  font-weight: 600;
  line-height: 1.65;
  margin: 0 auto 1.5rem;
  max-width: 1100px;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  width: 100%;
}

section.cover ul {
  color: var(--cover-muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  max-width: 760px;
  overflow-wrap: anywhere;
  width: 100%;
}

section.cover .cover-main > p:last-child a {
  background: rgba(255, 255, 255, 0.42);
  border-color: var(--cover-button);
  color: var(--cover-button);
  font-weight: 700;
  min-width: 150px;
}

section.cover .cover-main > p:last-child a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--cover-button-hover);
}

section.cover .cover-main > p:last-child a:last-child {
  background: var(--cover-button);
  border-color: var(--cover-button);
  color: #ffffff;
}

section.cover .cover-main > p:last-child a:last-child:hover {
  background: var(--cover-button-hover);
  border-color: var(--cover-button-hover);
  color: #ffffff;
}

.search-dialog {
  align-items: flex-start;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: min(11vh, 100px) 20px 30px;
  position: fixed;
  z-index: 1000;
}

.search-backdrop {
  backdrop-filter: blur(7px);
  background: rgba(8, 16, 10, 0.58);
  border: 0;
  cursor: default;
  inset: 0;
  padding: 0;
  position: absolute;
}

.search-card {
  animation: search-card-in 180ms ease-out both;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-height: min(76vh, 720px);
  max-width: 760px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@keyframes search-card-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }
}

.search-card-header {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 22px 24px 18px;
}

.search-card-header h2 {
  color: var(--heading);
  font-size: 21px;
  margin: 2px 0 0;
}

.search-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.dialog-close {
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 38px;
}

.dialog-close svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 18px;
}

.search-host {
  max-height: calc(min(76vh, 720px) - 144px);
  overflow-y: auto;
}

.search-host .search {
  border: 0;
  margin: 0;
  padding: 20px 24px 6px;
}

.search-host .search .input-wrap {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 3px 10px;
}

.search-host .search input {
  background: transparent;
  color: var(--text);
  font-size: 16px;
  min-height: 46px;
}

.search-host .search input:focus {
  border-color: transparent;
  box-shadow: none;
}

.search-host .search .results-panel {
  padding-top: 10px;
}

.search-host .search .matching-post {
  border-color: var(--border);
  border-radius: 12px;
  margin: 4px 0;
  padding: 4px 12px;
  transition: background-color 150ms ease;
}

.search-host .search .matching-post:hover {
  background: var(--accent-soft);
}

.search-host .search h2 {
  color: var(--heading);
  font-size: 16px;
}

.search-host .search p {
  color: var(--text-muted);
  line-height: 1.55;
}

.search-host .search p.empty {
  padding: 38px 0;
}

.search-hint {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  font-size: 12px;
  gap: 7px;
  margin: 0;
  padding: 12px 24px;
}

.search-hint span {
  flex: 1;
}

body.search-open {
  overflow: hidden;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  font-size: 13px;
  gap: 24px;
  justify-content: space-between;
  margin-top: 72px;
  padding: 24px 4px 28px;
  width: 100%;
}

section.cover .site-footer {
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  margin-top: 0;
  padding-left: 28px;
  padding-right: 28px;
  position: relative;
  z-index: 2;
}

.footer-mark,
.footer-links {
  align-items: center;
  display: flex;
  gap: 12px;
}

.footer-mark img {
  height: 18px;
  object-fit: contain;
  width: 18px;
}

.site-footer a {
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    gap: 8px;
    padding: 0 12px 0 58px;
  }

  .site-brand {
    display: none;
  }

  .brand-logo {
    height: 34px;
    width: 34px;
  }

  .brand-logo img {
    width: 34px;
  }

  .header-nav {
    flex: 1 1 auto;
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
  }

  .site-header .header-nav > .header-nav-link {
    min-height: 36px;
    padding: 0 12px;
  }

  .search-trigger span,
  .search-trigger kbd {
    display: none;
  }

  .header-button {
    padding: 0;
    width: 40px;
  }

  .site-actions {
    margin-left: auto;
  }

  body.docs-page main {
    padding-top: var(--header-height);
  }

  body.docs-page .content {
    margin-left: 0;
    max-width: 100vw;
    min-height: calc(100vh - var(--header-height));
    overflow-x: hidden;
    padding-top: 28px;
    transform: none;
    width: 100%;
  }

  body.docs-page .sidebar {
    bottom: 0;
    top: var(--header-height);
  }

  body.docs-page .sidebar-toggle {
    bottom: auto;
    left: 10px;
    padding: 23px 12px;
    top: 0;
    z-index: 110;
  }

  body.close .sidebar-toggle {
    background: var(--surface);
    padding: 20px 18px;
  }

  .markdown-section {
    max-width: 100%;
    padding: 24px 20px 0;
    width: 100%;
  }

  .search-dialog {
    padding: 14px;
  }

  section.cover .cover-main {
    padding: 28px 12px 24px;
  }

  section.cover h1 {
    font-size: 1.9rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
  }

  section.cover h1 small {
    display: table;
    margin: 10px auto 0;
  }

  section.cover blockquote {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  section.cover ul {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  section.cover .cover-main > p:last-child {
    box-sizing: border-box;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
    padding: 0;
    width: 100%;
  }

  section.cover .cover-main > p:last-child a {
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    padding: 0.72em 0.8rem;
    width: 100%;
  }

  .search-card {
    border-radius: 16px;
    max-height: calc(100vh - 28px);
  }

  .search-card-header {
    padding: 18px;
  }

  .search-host {
    max-height: calc(100vh - 174px);
  }

  .search-host .search {
    padding: 16px 18px 4px;
  }

  .search-hint {
    padding: 11px 18px;
  }

  .site-footer,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    gap: 14px;
    margin-top: 54px;
    padding-bottom: 24px;
  }

  .footer-links {
    gap: 8px;
  }
}

@media print {
  .site-header,
  .search-dialog,
  .site-footer,
  .code-copy-button {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
