/* ============================================================
   LEYU 乐鱼 — 共享样式 /assets/site.css
   设计基因：技术蓝图网格 + 数据竞技场控制台
   ============================================================ */

/* ---------- 变量 ---------- */
:root {
  --deep-blue: #0A2540;
  --orange: #FF6B35;
  --green: #00E676;
  --indigo: #3D2B56;
  --teal: #005C53;
  --wine: #7B1E3B;
  --light: #F0F4F8;
  --ink: #101820;
  --gray: #5A6B7B;
  --white: #FFFFFF;

  --font-heading: "Montserrat", "Impact", "Arial Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-data: "Roboto Mono", "SF Mono", "Cascadia Code", "Liberation Mono", Consolas, monospace;

  --container-max: 1280px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --radius-cut: 12px 2px 12px 2px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
  flex: 1 0 auto;
  width: 100%;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--deep-blue);
  letter-spacing: -0.01em;
  margin-bottom: 0.45em;
}

h1 { font-size: clamp(30px, 4vw, 44px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: clamp(19px, 2vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
  margin-bottom: 1em;
}

ul,
ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}

a {
  color: var(--deep-blue);
  text-underline-offset: 3px;
}

strong,
b {
  font-weight: 700;
}

code,
pre,
kbd,
samp {
  font-family: var(--font-data);
}

::selection {
  background: var(--green);
  color: var(--deep-blue);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* ---------- 容器与基础布局 ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.content-section {
  padding: 64px 0;
}

@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(22px, 3vw, 32px);
}

.section-title::before {
  content: attr(data-index);
  font-family: var(--font-data);
  font-size: 0.5em;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
}

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

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

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.tech-grid {
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-cut);
  cursor: pointer;
  transition:
    background-color 0.22s var(--ease),
    color 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 0 rgba(16, 24, 32, 0.12);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #E85B26;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(10, 37, 64, 0.28);
  color: var(--deep-blue);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--deep-blue);
  background: rgba(10, 37, 64, 0.05);
}

.btn-light {
  background: var(--white);
  color: var(--deep-blue);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ---------- 面包屑 ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--deep-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--orange);
}

.breadcrumb-sep {
  color: rgba(90, 107, 123, 0.5);
  user-select: none;
}

.breadcrumb-current {
  color: var(--gray);
}

/* ---------- 内页头部 ---------- */
.page-head {
  position: relative;
  padding: 48px 0 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.page-head-title {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.page-head-meta {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.page-lead {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray);
}

/* ---------- 卡片 ---------- */
.card {
  position: relative;
  display: block;
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-top: 3px solid var(--deep-blue);
  border-radius: 0 0 4px 4px;
  padding: 24px;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.card:hover {
  border-top-color: var(--orange);
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.08);
  transform: translateY(-2px);
}

.card-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.card-meta {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.cut-corner {
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

/* ---------- 状态面板 ---------- */
.status-panel {
  background-color: var(--deep-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  border-left: 4px solid var(--green);
  padding: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-data);
  font-size: 13px;
  line-height: 1.9;
}

.status-panel-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

/* ---------- 数据徽标 ---------- */
.data-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 2px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: #008C48;
}

.data-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.data-badge[data-state="warn"] {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.32);
  color: #D94E1E;
}

.data-badge[data-state="danger"] {
  background: rgba(123, 30, 59, 0.1);
  border-color: rgba(123, 30, 59, 0.3);
  color: var(--wine);
}

/* ---------- 数据进度条 ---------- */
.data-bar {
  display: block;
  width: 100%;
  height: 6px;
  overflow: hidden;
  position: relative;
  background: rgba(10, 37, 64, 0.08);
}

.data-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transition: width 0.8s var(--ease);
}

/* ---------- 标签 ---------- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--deep-blue);
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.14);
  border-radius: 2px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.tag:hover,
.tag:focus-visible {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: var(--white);
}

/* ---------- 图片占位框 ---------- */
.media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: var(--indigo);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 58%, rgba(255, 107, 53, 0.12) 58%, rgba(255, 107, 53, 0.12) 100%);
  pointer-events: none;
}

.media-frame::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 3px;
  background: var(--green);
}

.media-frame-label {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

/* ============================================================
   页头
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--deep-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 3000;
  padding: 12px 20px;
  background: var(--green);
  color: var(--deep-blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 0;
}

.header-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  z-index: 2;
  pointer-events: none;
}

.scroll-progress {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--green) 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
  padding-top: 3px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A4C 100%);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--deep-blue);
  clip-path: polygon(30% 0, 100% 0, 100% 62%, 62% 100%, 0 100%, 0 30%);
}

.brand-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.brand-cn {
  display: inline-block;
  font-size: 20px;
}

.brand-en {
  color: var(--orange);
  font-size: 0.72em;
  letter-spacing: 0.08em;
}

.brand-tag {
  display: block;
  flex-basis: 100%;
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: var(--orange);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: relative;
}

@media (min-width: 901px) {
  .site-nav {
    margin-left: auto;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  position: relative;
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link[aria-current="page"]::after {
  background: var(--green);
}

.header-meta {
  height: 34px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.header-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.coord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.coord-index {
  color: var(--green);
  letter-spacing: 0.1em;
}

.coord-tick {
  display: inline-block;
  width: 92px;
  height: 6px;
  position: relative;
  background: repeating-linear-gradient(90deg, rgba(0, 230, 118, 0.55) 0 2px, transparent 2px 10px);
}

.coord-label {
  letter-spacing: 0.1em;
}

.section-label {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex: 1 1 100%;
    order: 3;
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav[data-open] {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0 12px;
  }

  .nav-link {
    padding: 13px 4px;
    font-size: 15px;
    white-space: normal;
  }

  .nav-link::after {
    left: 4px;
    right: auto;
    width: 36px;
    bottom: 0;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .header-meta {
    height: 30px;
  }

  .coord-label {
    display: none;
  }

  .coord-tick {
    width: 48px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

/* ============================================================
   页脚
   ============================================================ */
.site-footer {
  position: relative;
  margin-top: 72px;
  background-color: var(--deep-blue);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.site-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg,
    var(--orange) 0%, var(--orange) 14%,
    var(--wine) 14%, var(--wine) 26%,
    var(--green) 26%, var(--green) 48%,
    var(--teal) 48%, var(--teal) 68%,
    var(--indigo) 68%, var(--indigo) 86%,
    rgba(255, 255, 255, 0.06) 86%, rgba(255, 255, 255, 0.06) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.7fr 1.2fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer-brand {
  position: relative;
}

.footer-logo {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--white);
}

.footer-logo span {
  color: var(--orange);
}

.footer-trust {
  margin-top: 14px;
  max-width: 340px;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
}

.footer-support {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 12px;
  font-family: var(--font-data);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 230, 118, 0.06);
  border-left: 3px solid var(--green);
}

.footer-col {
  min-width: 0;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-heading::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.7;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border: 1px solid var(--green);
  vertical-align: middle;
  opacity: 0.6;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--orange);
}

.footer-list a:hover::before,
.footer-list a:focus-visible::before {
  background: var(--green);
  opacity: 1;
}

.footer-label {
  display: inline-block;
  min-width: 40px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.footer-value {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
}

.footer-icp {
  color: rgba(255, 255, 255, 0.4);
}

.footer-mail {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- 动效与无障碍 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html {
    scroll-behavior: auto !important;
  }
}
