:root {
  --bg: #f7f4ef;
  --ink: #1f2623;
  --muted: #69746d;
  --line: rgba(31, 38, 35, 0.13);
  --paper: rgba(255, 253, 247, 0.88);
  --paper-solid: #fffdf7;
  --gold: #b98445;
  --jade: #2f7c70;
  --cinnabar: #b84e3d;
  --blue: #366f90;
  --shadow: 0 24px 80px rgba(31, 38, 35, 0.11);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    "Inter", "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial,
    sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 124, 112, 0.11), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(184, 78, 61, 0.11), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 44%),
    var(--bg);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

#app {
  min-height: 100vh;
}

#shareCanvas {
  display: none;
}

.shell {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    conic-gradient(from 30deg, var(--jade), var(--gold), var(--cinnabar), var(--blue), var(--jade));
  box-shadow: inset 0 0 0 8px var(--paper-solid);
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fffdf7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(31, 38, 35, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(31, 38, 35, 0.2);
}

.button.secondary {
  background: rgba(255, 253, 247, 0.62);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 32px;
  align-items: stretch;
  min-height: calc(100vh - 120px);
  perspective: 1200px;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0;
  animation: riseIn 620ms ease both;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 0.98;
  font-weight: 850;
}

.lead {
  max-width: 600px;
  margin-top: 24px;
  color: #48534d;
  font-size: 18px;
  line-height: 1.85;
  animation: riseIn 720ms 80ms ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
  animation: riseIn 760ms 140ms ease both;
}

.method-panel {
  max-width: 720px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(31, 38, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.75);
  box-shadow: 0 18px 52px rgba(31, 38, 35, 0.08);
  animation: panelReveal 260ms ease both;
}

.method-panel h2 {
  font-size: 24px;
  line-height: 1.25;
}

.method-panel p {
  margin-top: 10px;
  color: #4d5852;
  font-size: 15px;
  line-height: 1.75;
}

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

.method-grid div {
  padding: 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 253, 247, 0.68);
}

.method-grid b,
.method-grid span {
  display: block;
}

.method-grid b {
  font-size: 14px;
}

.method-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
  animation: riseIn 780ms 200ms ease both;
}

.meta-item {
  min-height: 86px;
  padding: 15px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 253, 247, 0.5);
}

.meta-item strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.meta-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.oracle-panel {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 18%, rgba(47, 124, 112, 0.13), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(184, 78, 61, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(247, 241, 228, 0.88));
  box-shadow: var(--shadow);
  user-select: none;
  animation: floatPanel 6.5s ease-in-out infinite;
}

.oracle-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(31, 38, 35, 0.08);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.fate-aura {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 118px, rgba(184, 132, 69, 0.16) 119px 120px, transparent 121px 204px, rgba(47, 124, 112, 0.12) 205px 206px, transparent 207px),
    conic-gradient(from 20deg, rgba(47, 124, 112, 0.1), rgba(184, 132, 69, 0.16), rgba(184, 78, 61, 0.08), rgba(47, 124, 112, 0.1));
  opacity: 0.78;
}

.fate-card {
  position: relative;
  z-index: 2;
  width: min(390px, 100%);
  min-height: 470px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(31, 38, 35, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 253, 247, 0.86)),
    radial-gradient(circle at 84% 14%, rgba(184, 132, 69, 0.16), transparent 30%),
    radial-gradient(circle at 16% 88%, rgba(47, 124, 112, 0.13), transparent 34%);
  box-shadow: 0 30px 90px rgba(31, 38, 35, 0.16);
}

.fate-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 132, 69, 0.24);
  border-radius: 6px;
  pointer-events: none;
}

.fate-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.fate-card-head i {
  color: var(--gold);
  font-style: normal;
}

.fate-watermark {
  position: absolute;
  right: 24px;
  top: 58px;
  color: rgba(184, 78, 61, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 156px;
  font-weight: 900;
  line-height: 1;
}

.fate-card-body {
  position: relative;
  z-index: 1;
  align-self: center;
}

.fate-card-body em,
.fate-card-body strong,
.fate-card-body p {
  display: block;
}

.fate-card-body em {
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.fate-card-body strong {
  margin-top: 14px;
  color: var(--ink);
  font-size: 64px;
  line-height: 0.96;
  font-weight: 900;
}

.fate-card-body p {
  max-width: 280px;
  margin-top: 24px;
  color: #445049;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.68;
}

.fate-card-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fate-card-foot span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(184, 78, 61, 0.22);
  color: #9f4638;
  font-size: 13px;
  font-weight: 900;
}

.fate-note {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 34px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.fate-note b {
  color: var(--ink);
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.quiz-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 18px;
}

.side-panel,
.question-card,
.result-card,
.module {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.side-panel {
  position: sticky;
  top: 24px;
  padding: 22px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.progress {
  height: 8px;
  margin: 14px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 38, 35, 0.08);
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--jade), var(--gold), var(--cinnabar));
  transition: width 220ms ease;
}

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

.phase-list {
  display: grid;
  gap: 10px;
}

.phase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 13px 14px;
  border: 1px solid rgba(31, 38, 35, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.58);
}

.phase.active {
  border-color: rgba(47, 124, 112, 0.34);
  background: rgba(47, 124, 112, 0.08);
}

.phase b {
  font-size: 14px;
  line-height: 1.2;
}

.phase span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.phase i {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.axis {
  display: grid;
  gap: 7px;
}

.axis-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #39423e;
  font-size: 12px;
  font-weight: 800;
}

.axis-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(31, 38, 35, 0.08);
}

.axis-track span {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: inherit;
  background: var(--jade);
  transition: width 220ms ease;
}

.question-card {
  padding: 34px;
}

.question-kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.question-title {
  max-width: 780px;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 850;
}

.options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.option {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.76);
  color: var(--ink);
  text-align: left;
  box-shadow: none;
}

.option:hover,
.option.selected {
  border-color: rgba(47, 124, 112, 0.52);
  background: rgba(47, 124, 112, 0.08);
}

.option b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 38, 35, 0.08);
  color: var(--jade);
  font-size: 14px;
}

.option span {
  min-width: 0;
  font-size: 17px;
  line-height: 1.55;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.result-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 18px;
}

.result-card {
  overflow: hidden;
}

.result-main {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(47, 124, 112, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(184, 132, 69, 0.12), transparent 42%),
    var(--paper-solid);
}

.result-name {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  font-weight: 900;
}

.result-sub {
  margin-top: 14px;
  color: #4a554f;
  font-size: 20px;
  line-height: 1.65;
}

.quote {
  margin-top: 30px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: #2b332f;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  padding: 8px 11px;
  border: 1px solid rgba(31, 38, 35, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: #37413c;
  font-size: 13px;
  font-weight: 800;
}

.share-line {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(31, 38, 35, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.72);
}

.share-line b,
.share-line span {
  display: block;
}

.share-line b {
  color: var(--gold);
  font-size: 13px;
}

.share-line span {
  margin-top: 7px;
  color: #26302b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 34px 28px;
  background: rgba(255, 253, 247, 0.66);
}

.share-preview {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #1f2623;
  color: #fffdf7;
  box-shadow: var(--shadow);
}

.share-preview::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 50%;
}

.share-preview::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 84px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--jade), var(--gold), var(--cinnabar), var(--blue), var(--jade));
  opacity: 0.88;
  filter: blur(0.2px);
}

.share-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.share-inner small {
  color: rgba(255, 253, 247, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.share-inner strong {
  display: block;
  margin-top: 10px;
  font-size: 58px;
  line-height: 1;
}

.share-inner p {
  margin-top: 14px;
  color: rgba(255, 253, 247, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.share-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.share-pairs span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 999px;
  color: rgba(255, 253, 247, 0.82);
  font-size: 12px;
  font-weight: 800;
}

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

.module {
  padding: 24px;
  box-shadow: none;
}

.module h3 {
  font-size: 18px;
  line-height: 1.3;
}

.module p,
.module li {
  color: #4d5852;
  font-size: 15px;
  line-height: 1.75;
}

.module p {
  margin-top: 12px;
}

.module ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.story-module {
  grid-column: 1 / -1;
  padding: 34px 38px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(255, 253, 247, 0.8)),
    radial-gradient(circle at 100% 0, rgba(47, 124, 112, 0.11), transparent 34%);
}

.story-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.story-module h3 {
  max-width: 840px;
  margin-top: 9px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
  font-weight: 900;
}

.story-copy {
  max-width: 900px;
  margin-top: 22px;
  columns: 2;
  column-gap: 42px;
}

.story-copy p {
  break-inside: avoid;
  margin: 0 0 17px;
  color: #3f4a44;
  font-size: 17px;
  line-height: 1.95;
}

.axis-module {
  grid-column: 1 / -1;
}

.axis-insights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.axis-insight {
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(31, 38, 35, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.62);
}

.axis-insight b {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

.axis-insight span {
  display: block;
  margin-top: 10px;
  color: #56615b;
  font-size: 13px;
  line-height: 1.65;
}

.loading-screen {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  text-align: center;
}

.loading-ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--bg) 44%, transparent 45%),
    conic-gradient(var(--jade), var(--gold), var(--cinnabar), var(--blue), var(--jade));
  animation: spin 1.4s linear infinite;
}

.loading-count {
  margin-top: -138px;
  margin-bottom: 58px;
  color: var(--ink);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.loading-screen h1 {
  max-width: 720px;
  font-size: clamp(34px, 5.2vw, 70px);
}

.loading-screen p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPanel {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(1.1deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes auraSweep {
  0%, 100% {
    transform: translateX(-8%) translateY(0);
  }
  50% {
    transform: translateX(8%) translateY(-2%);
  }
}

.pair-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.pair {
  padding: 13px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 253, 247, 0.64);
}

.pair b {
  display: block;
  font-size: 14px;
}

.pair span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 20;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fffdf7;
  font-size: 14px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 22px, 680px);
    padding-top: 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand span,
  .top-actions .secondary {
    display: none;
  }

  .hero-grid,
  .quiz-layout,
  .result-hero,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    padding-top: 12px;
  }

  h1 {
    font-size: 50px;
  }

  .lead {
    font-size: 16px;
  }

  .meta-row {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

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

  .oracle-panel {
    min-height: 520px;
    padding: 28px;
  }

  .fate-card {
    min-height: 380px;
    padding: 24px;
  }

  .fate-card-head {
    font-size: 11px;
  }

  .fate-watermark {
    right: 18px;
    top: 58px;
    font-size: 112px;
  }

  .fate-card-body strong {
    font-size: 44px;
  }

  .fate-card-body p {
    max-width: 230px;
    font-size: 15px;
  }

  .fate-card-foot {
    gap: 7px;
  }

  .fate-card-foot span {
    min-height: 40px;
    font-size: 11px;
  }

  .fate-note {
    display: none;
  }

  .side-panel {
    position: static;
  }

  .question-card,
  .result-main {
    padding: 24px;
  }

  .question-title {
    font-size: 28px;
  }

  .option {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 15px;
  }

  .option b {
    width: 30px;
    height: 30px;
  }

  .option span {
    font-size: 15px;
  }

  .quiz-nav,
  .result-actions,
  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 auto;
  }

  .result-name {
    font-size: 56px;
  }

  .result-sub,
  .quote {
    font-size: 18px;
  }

  .share-preview,
  .share-inner {
    min-height: 430px;
  }

  .share-inner {
    padding: 24px;
  }

  .share-inner strong {
    font-size: 46px;
  }

  .story-module {
    padding: 26px 22px;
  }

  .story-copy {
    columns: 1;
    column-gap: 0;
  }

  .story-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .axis-insights {
    grid-template-columns: 1fr;
  }

  .axis-insight {
    min-height: auto;
  }
}

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