:root {
  --bg: #131417;
  --bg-2: #1c2024;
  --panel: #f8f4ee;
  --panel-2: #e8eee9;
  --text: #24282a;
  --muted: #68706d;
  --light: #fffaf2;
  --line: rgba(44, 62, 58, .18);
  --gold: #d5a340;
  --red: #a6323c;
  --teal: #277d74;
  --ink: #141619;
  --shadow: 0 22px 70px rgba(17, 22, 24, .22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--panel);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  color: var(--red);
  font-size: clamp(1.45rem, 2.45vw, 2.2rem);
}

h3 {
  font-size: 1.12rem;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--light);
  background: rgba(21, 17, 15, .82);
  border-bottom: 1px solid rgba(255, 248, 239, .12);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 239, .28);
  border-radius: 6px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.06);
  border-color: rgba(247, 210, 122, .6);
  box-shadow: 0 8px 22px rgba(247, 210, 122, .22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 248, 239, .82);
  border-radius: 999px;
  font-size: .95rem;
  text-decoration: none;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  transition: color .2s ease, background .2s ease, text-decoration-color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f7d27a;
  background: rgba(255, 248, 239, .14);
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  outline: none;
}

.site-nav .nav-download {
  gap: 8px;
  color: #1f140f;
  background: var(--gold);
  font-weight: 900;
}

.site-nav .nav-download::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  clip-path: polygon(43% 0, 57% 0, 57% 48%, 76% 30%, 86% 40%, 50% 76%, 14% 40%, 24% 30%, 43% 48%);
  box-shadow: 0 6px 0 currentColor;
}

.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible {
  color: #142027;
  background: #e4b95f;
  text-decoration-line: underline;
  text-decoration-color: currentColor;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 248, 239, .22);
  border-radius: 6px;
  background: rgba(255, 248, 239, .08);
}

.nav-toggle::after {
  content: "×";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--light);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  transform: scale(.72);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--light);
  transform: translateX(-50%);
  transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 20px;
}

.nav-toggle span:nth-child(3) {
  top: 26px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 74px 0 56px;
  color: var(--light);
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 17, 15, .97) 0%, rgba(21, 17, 15, .82) 42%, rgba(21, 17, 15, .28) 100%),
    linear-gradient(0deg, rgba(21, 17, 15, .88), rgba(21, 17, 15, .1) 45%, rgba(21, 17, 15, .72)),
    url("img/cover.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--panel), rgba(255, 250, 243, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .76fr);
  align-items: center;
  gap: 46px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  color: #f7d27a;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 900;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  color: #8fe2d4;
  font-size: .52em;
  margin-top: 8px;
}

.lead {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 248, 239, .86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
}

.btn[data-icon="download"]::before {
  clip-path: polygon(43% 0, 57% 0, 57% 48%, 76% 30%, 86% 40%, 50% 76%, 14% 40%, 24% 30%, 43% 48%);
  box-shadow: 0 7px 0 currentColor;
}

.btn[data-icon="guide"]::before {
  border: 2px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(currentColor 0 0) 5px 5px / 8px 2px no-repeat,
    linear-gradient(currentColor 0 0) 5px 10px / 10px 2px no-repeat,
    linear-gradient(currentColor 0 0) 5px 15px / 6px 2px no-repeat;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn.primary {
  color: #1f140f;
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(216, 166, 74, .26);
}

.btn.primary:hover {
  background: #e4b95f;
}

.btn.ghost {
  color: var(--light);
  border-color: rgba(255, 248, 239, .34);
  background: rgba(255, 248, 239, .08);
}

.btn.dark {
  color: var(--light);
  background: var(--red);
  box-shadow: none;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 34px 0 0;
}

.hero-meta div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 248, 239, .14);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, .07);
}

.hero-meta dt {
  color: rgba(255, 248, 239, .62);
  font-size: .78rem;
}

.hero-meta dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 248, 239, .2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 248, 239, .08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.hero-media img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.hero-media::after,
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(247, 210, 122, .22), transparent 42%),
    linear-gradient(315deg, rgba(143, 226, 212, .18), transparent 48%);
  opacity: 0;
  transition: opacity .32s ease;
}

.section {
  padding: 88px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: start;
}

.intro-section p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.02rem;
}

.info-panel,
.feature-card,
.version-card,
.notice,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 36px rgba(84, 50, 28, .08);
}

.info-panel {
  padding: 26px;
  position: sticky;
  top: 98px;
}

.info-panel h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.spec-list,
.platform-list,
.update-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spec-list li,
.platform-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.spec-list li:first-child,
.platform-list li:first-child {
  border-top: 0;
}

.spec-list span,
.platform-list span {
  color: var(--muted);
}

.spec-list strong,
.platform-list em {
  text-align: right;
  font-style: normal;
  color: var(--text);
}

.update-list {
  margin: 18px 0 12px;
  display: grid;
  gap: 10px;
}

.update-list li {
  position: relative;
  padding-left: 20px;
  color: #4d5653;
}

.update-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.feature-section,
.notice-section {
  background:
    linear-gradient(180deg, rgba(232, 238, 233, .78), rgba(248, 244, 238, .98)),
    repeating-linear-gradient(135deg, rgba(39, 125, 116, .06) 0 1px, transparent 1px 18px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 700px;
}

.section-head p:not(.section-kicker) {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
  min-height: 270px;
}

.feature-card h3 {
  margin-top: 16px;
}

.feature-card p {
  color: var(--muted);
  margin-top: 12px;
  font-size: .96rem;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-block;
  border-radius: 6px;
  border: 1px solid rgba(43, 33, 29, .18);
  background-color: var(--bg);
  background-image: linear-gradient(135deg, rgba(216, 166, 74, .95), rgba(167, 53, 53, .9));
  position: relative;
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.card-icon.blade::before {
  width: 4px;
  height: 30px;
  background: #fff7e7;
  transform: rotate(45deg);
  border-radius: 4px;
}

.card-icon.crest::before {
  width: 24px;
  height: 24px;
  border: 3px solid #fff7e7;
  border-radius: 50%;
}

.card-icon.choice::before {
  width: 22px;
  height: 4px;
  background: #fff7e7;
  box-shadow: 0 9px 0 #fff7e7, 0 -9px 0 #fff7e7;
}

.card-icon.ember::before {
  width: 18px;
  height: 26px;
  background: #fff7e7;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-35deg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.shot.large {
  grid-row: auto;
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: start;
}

.guide-section {
  color: var(--light);
  background:
    linear-gradient(120deg, rgba(12, 44, 54, .98), rgba(18, 72, 76, .94) 48%, rgba(20, 38, 62, .96)),
    url("img/tu4.webp") center / cover no-repeat;
}

.guide-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(255, 250, 242, .82);
  font-size: 1.02rem;
}

.guide-title {
  display: block;
  max-width: 680px;
  margin-bottom: 22px;
  color: #9cffdf;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.guide-title span {
  display: block;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.timeline article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 250, 242, .16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.timeline span {
  width: 54px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #9cffdf;
  background: rgba(255, 250, 242, .16);
  border-radius: 999px;
  font-weight: 900;
  font-size: .95rem;
}

.timeline h3 {
  color: #fff7ef;
  font-size: 1.45rem;
}

.timeline p {
  color: rgba(255, 250, 242, .78);
  margin: 12px 0 0;
  font-size: 1rem;
}

.guide-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guide-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.update-section {
  color: var(--light);
  background:
    linear-gradient(135deg, rgba(21, 17, 15, .97), rgba(54, 32, 26, .95)),
    url("img/tu2.webp") center / cover no-repeat;
}

.update-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 50px;
  align-items: center;
}

.update-grid p {
  color: rgba(255, 248, 239, .78);
}

.update-grid h2 {
  color: #f7d27a;
}

.version-card {
  padding: 28px;
  color: var(--text);
  background: rgba(255, 250, 243, .94);
}

.version-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.version-top span {
  color: var(--muted);
  font-weight: 800;
}

.version-top strong {
  color: var(--red);
  font-size: 2.1rem;
}

.version-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.download-band {
  padding: 48px 0;
  color: var(--light);
  background: linear-gradient(120deg, #071b36, #0b2e5a 58%, #102447);
}

.download-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.download-inner h2 {
  color: #8fe2d4;
  font-size: clamp(1.35rem, 2.45vw, 2rem);
}

.download-inner p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 248, 239, .82);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.hero-media,
.info-panel,
.feature-card,
.shot,
.timeline article,
.version-card,
.faq-list details {
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease,
    filter .24s ease;
}

.hero-media:hover,
.hero-media:focus-within,
.info-panel:hover,
.feature-card:hover,
.shot:hover,
.timeline article:hover,
.version-card:hover,
.faq-list details:hover,
.faq-list details[open] {
  transform: translateY(-5px);
  border-color: rgba(216, 166, 74, .46);
  box-shadow: 0 24px 70px rgba(18, 32, 36, .18);
}

.hero-media img,
.shot img {
  transition: transform .42s ease, filter .42s ease;
}

.hero-media:hover img,
.shot:hover img {
  transform: scale(1.055);
  filter: saturate(1.14) contrast(1.07) brightness(1.04);
}

.hero-media:hover::after,
.hero-media:focus-within::after,
.shot:hover::after,
.shot:focus-within::after {
  opacity: 1;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(216, 166, 74, .16), rgba(39, 125, 116, .1));
  opacity: 0;
  transition: opacity .24s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.card-icon,
.timeline span {
  transition: transform .24s ease, box-shadow .24s ease;
}

.feature-card:hover .card-icon,
.timeline article:hover span {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.timeline article:hover {
  background: rgba(255, 250, 242, .18);
}

.version-card:hover .version-top strong {
  color: var(--teal);
}

.faq-list details[open] {
  background: rgba(255, 255, 255, .82);
}

.faq-list summary:hover {
  color: var(--red);
}

.notice {
  padding: 28px;
}

.notice p {
  color: var(--muted);
  margin: 12px 0 0;
}

.site-footer {
  color: rgba(255, 248, 239, .78);
  background: var(--bg);
}

.friend-section {
  color: var(--text);
  background: #f5f6f8;
}

.friend-links {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 52px 0;
}

.friend-links h2 {
  color: #202327;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 900;
}

.friend-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
}

.friend-list a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #202327;
  border: 1px solid rgba(21, 28, 36, .08);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(25, 31, 38, .08);
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.friend-list a:hover,
.friend-list a:focus-visible {
  color: #0b2e5a;
  border-color: rgba(11, 46, 90, .18);
  background: #f7d27a;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(25, 31, 38, .14);
  outline: none;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .guide-layout,
  .update-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .guide-visual {
    max-width: 720px;
  }

  .info-panel {
    position: static;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shot.large {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 64px;
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 248, 239, .14);
    border-radius: var(--radius);
    background: rgba(21, 17, 15, .98);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"]::after {
    opacity: 1;
    transform: scale(1);
  }

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

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

  .hero {
    padding: 52px 0 42px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(21, 17, 15, .94), rgba(21, 17, 15, .78) 50%, rgba(21, 17, 15, .94)),
      url("img/cover.webp") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .feature-grid,
  .gallery-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .shot.large {
    grid-column: auto;
  }

  .download-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline article {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2rem;
  }

  .feature-card,
  .info-panel,
  .version-card,
  .notice {
    padding: 20px;
  }

  .spec-list li,
  .platform-list li {
    flex-direction: column;
    gap: 4px;
  }

  .spec-list strong,
  .platform-list em {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    transform: none !important;
  }
}
