/* ============================================================
   我们的日子 - 移动单页版
   ============================================================ */

/* ============ Design Tokens ============ */
:root {
  --c-bg: #FAF7F2;
  --c-bg-elevated: #FFFFFF;
  --c-bg-muted: #F0E9DE;
  --c-ink: #1A1310;
  --c-ink-soft: #4A3F38;
  --c-ink-muted: #80766C;
  --c-ink-faint: #B5AB9E;
  --c-line: #E5DDD0;
  --c-line-soft: #F0E9DE;
  --c-accent: #F06595;
  --c-accent-deep: #D6336C;
  --c-accent-soft: #FFB3D1;
  --c-accent-glow: #FFD6E2;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  --fs-display: clamp(32px, 8vw, 48px);
  --fs-h1: clamp(24px, 6vw, 32px);
  --fs-h2: clamp(20px, 5vw, 24px);
  --fs-h3: 18px;
  --fs-body: 15px;
  --fs-body-lg: 17px;
  --fs-small: 13px;
  --fs-caption: 11px;
  --fs-eyebrow: 10px;

  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --container-max: 600px;
  --gutter: clamp(16px, 4vw, 24px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 500ms;

  --shadow-sm: 0 1px 2px rgba(26, 19, 16, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 19, 16, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 19, 16, 0.16);
  --shadow-fab: 0 6px 20px color-mix(in oklab, var(--c-accent) 40%, transparent);

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --font-sans:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC",
    "Noto Sans SC", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif:
    ui-serif, Georgia, "Songti SC", "Source Han Serif SC",
    "Noto Serif CJK SC", "Noto Serif SC", "Times New Roman", serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-bg: #1A1310;
    --c-bg-elevated: #221A16;
    --c-bg-muted: #2D231E;
    --c-ink: #F4EDE3;
    --c-ink-soft: #D4C7B8;
    --c-ink-muted: #9B8E80;
    --c-ink-faint: #5C544B;
    --c-line: #3A2E27;
    --c-line-soft: #2D231E;
    --c-accent: #FF7BAB;
    --c-accent-deep: #F06595;
    --c-accent-soft: #FFC9D8;
    --c-accent-glow: #3A2230;
  }
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  overflow-x: hidden;
  /* 防止橡皮筋效果影响体验 */
  overscroll-behavior-y: contain;
}
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--c-accent); color: #FFFFFF; }

/* ============ Topbar ============ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--c-bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--c-line-soft);
  padding-top: var(--safe-top);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  height: 52px;
  padding-inline: var(--gutter);
}
.topbar__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-muted);
  transition: all var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}
.topbar__icon-btn:hover {
  color: var(--c-accent-deep);
  background: var(--c-accent-glow);
}
.topbar__icon-btn:active {
  transform: scale(0.92);
}
.topbar__icon-btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--dur-fast) var(--ease-spring);
}
.topbar__icon-btn:active svg { transform: scale(1.2); }
.topbar__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  font-style: italic;
  color: var(--c-ink-soft);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.topbar__spacer { width: 40px; flex-shrink: 0; }

/* ============ Main ============ */
.main {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 var(--gutter) calc(80px + var(--safe-bottom));
}

/* ============ Hero ============ */
.hero {
  text-align: center;
  padding-block: var(--s-6) var(--s-5);
}
.hero--compact {
  padding-block: var(--s-4) var(--s-3);
}
.hero__pixel-girl {
  width: clamp(64px, 16vw, 96px);
  height: clamp(64px, 16vw, 96px);
  margin: 0 auto var(--s-3);
  position: relative;
  animation: breathe 3.2s ease-in-out infinite;
}
.hero--compact .hero__pixel-girl { display: none; }
.hero__pixel-girl svg {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 6px 16px color-mix(in oklab, var(--c-accent) 30%, transparent));
}
@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}
.hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  line-height: var(--lh-tight);
  margin-bottom: var(--s-2);
}
.hero__title em {
  font-style: italic;
  color: var(--c-accent-deep);
}
.hero__subtitle {
  font-size: var(--fs-body);
  color: var(--c-ink-muted);
  margin-bottom: var(--s-5);
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  background: var(--c-ink);
  color: var(--c-bg);
  border-radius: 999px;
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  transition: transform var(--dur-fast) var(--ease-spring), background var(--dur-fast) var(--ease-out);
}
.hero__cta:hover { background: var(--c-accent-deep); }
.hero__cta:active { transform: scale(0.96); }

/* ============ Entry Card ============ */
.entry {
  background: var(--c-bg-elevated);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--s-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line-soft);
}
.entry__photos {
  display: grid;
  gap: 1px;
  background: var(--c-line-soft);
}
.entry__photos--1 { grid-template-columns: 1fr; }
.entry__photos--2 {
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 8 / 5;
}
.entry__photos--2 .entry__photo { aspect-ratio: auto; }
.entry__photos--3 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 4 / 3;
}
.entry__photos--3 .entry__photo:first-child { grid-row: span 2; }

.entry__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg-muted);
  cursor: zoom-in;
  display: block;
}
.entry__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.entry__photo:active img { transform: scale(0.97); }

.entry__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.entry__meta {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-wrap: wrap;
  font-size: var(--fs-small);
}
.entry__date {
  font-weight: var(--fw-semibold);
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
}
.entry__divider {
  width: 3px;
  height: 3px;
  background: var(--c-ink-faint);
  border-radius: 50%;
}
.entry__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-small);
  color: var(--c-ink-soft);
}
.entry__chip-emoji { font-size: 14px; line-height: 1; }
.entry__chip-location {
  color: var(--c-ink-muted);
  font-size: var(--fs-small);
}
.entry__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--s-1);
}
.entry__delete {
  font-size: var(--fs-caption);
  color: var(--c-ink-faint);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all var(--dur-fast) var(--ease-out);
}
.entry__delete:active {
  color: var(--c-accent-deep);
  background: var(--c-accent-glow);
}

/* ============ Empty State ============ */
.empty {
  padding: var(--s-6) var(--s-4);
  text-align: center;
  color: var(--c-ink-muted);
}
.empty__hint {
  font-size: var(--fs-small);
  margin-top: var(--s-2);
}

/* ============ Loading ============ */
.loading {
  padding: var(--s-7);
  text-align: center;
  color: var(--c-ink-faint);
  font-size: var(--fs-small);
}

/* ============ FAB ============ */
.fab {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  right: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-fab);
  transition: transform var(--dur-fast) var(--ease-spring), background var(--dur-fast) var(--ease-out);
}
.fab:hover { background: var(--c-accent-deep); }
.fab:active { transform: scale(0.9); }
.fab svg {
  width: 28px;
  height: 28px;
}

/* ============ 底部抽屉（Sheet）============ */
.sheet-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.sheet-root.is-open { pointer-events: auto; }
.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.sheet-root.is-open .sheet-backdrop { opacity: 1; }
.sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-bg-elevated);
  border-radius: 20px 20px 0 0;
  max-height: 92dvh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform var(--dur-base) var(--ease-out);
  padding-bottom: var(--safe-bottom);
  box-shadow: var(--shadow-lg);
}
.sheet-root.is-open .sheet { transform: translateY(0); }
.sheet__handle {
  width: 36px;
  height: 4px;
  background: var(--c-line);
  border-radius: 999px;
  margin: 8px auto 0;
  flex-shrink: 0;
}
.sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) var(--s-4) var(--s-2);
  flex-shrink: 0;
}
.sheet__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
}
.sheet__close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-muted);
  color: var(--c-ink-soft);
  font-size: 18px;
}
.sheet__body {
  padding: var(--s-3) var(--s-4);
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.sheet__footer {
  padding: var(--s-3) var(--s-4) var(--s-4);
  border-top: 1px solid var(--c-line-soft);
  flex-shrink: 0;
  display: flex;
  gap: var(--s-3);
}

/* ============ Form ============ */
.field { margin-bottom: var(--s-4); }
.field__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--c-ink-soft);
  margin-bottom: var(--s-2);
}
.input {
  width: 100%;
  padding: var(--s-3);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-size: var(--fs-body);
  color: var(--c-ink);
  transition: border-color var(--dur-fast) var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.input:focus {
  outline: none;
  border-color: var(--c-accent);
}

/* 心情/天气 chip 选择 */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.chip {
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-bg);
  font-size: var(--fs-small);
  transition: all var(--dur-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
.chip:active { transform: scale(0.95); }
.chip[aria-pressed="true"] {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.chip__emoji { font-size: 16px; line-height: 1; }

/* 照片上传 - 3 格 */
.photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
}
.photo-slot {
  position: relative;
  aspect-ratio: 1;
  border: 2px dashed var(--c-line);
  border-radius: 8px;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.photo-slot input { display: none; }
.photo-slot__hint {
  font-size: var(--fs-caption);
  color: var(--c-ink-faint);
  text-align: center;
  pointer-events: none;
}
.photo-slot__icon { font-size: 28px; line-height: 1; margin-bottom: 4px; }
.photo-slot--filled {
  border-style: solid;
  border-color: transparent;
  cursor: default;
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slot__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  border-radius: 999px;
  transition: all var(--dur-fast) var(--ease-out);
  user-select: none;
  min-height: 44px;
}
.btn--primary { background: var(--c-ink); color: var(--c-bg); flex: 1; }
.btn--primary:hover { background: var(--c-accent-deep); color: #fff; }
.btn--primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn--ghost { background: transparent; color: var(--c-ink-muted); border: 1px solid var(--c-line); }
.btn--ghost:hover { color: var(--c-ink); }
.btn--danger { color: var(--c-accent-deep); }
.btn--danger:hover { background: var(--c-accent-glow); }

/* ============ Lightbox ============ */
.lightbox-root {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.lightbox-root.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100dvh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: calc(20px + var(--safe-top));
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1;
}
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }
.lightbox__counter {
  position: absolute;
  bottom: calc(20px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-small);
  font-variant-numeric: tabular-nums;
}

/* ============ Modal (情书) ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--c-bg-elevated);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 80dvh;
  overflow: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--dur-base) var(--ease-spring);
}
.modal-backdrop.is-open .modal { transform: scale(1); }
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--c-bg-muted);
  color: var(--c-ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 1;
}
.letter-modal__header {
  text-align: center;
  padding: var(--s-6) var(--s-5) var(--s-4);
  background: linear-gradient(180deg, var(--c-accent-glow), transparent);
}
.letter-modal__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--s-2);
  color: var(--c-accent-deep);
  animation: heartbeat 1.6s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  20%, 60% { transform: scale(1.15); }
  40%, 80% { transform: scale(0.95); }
}
.letter-modal__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-style: italic;
  color: var(--c-accent-deep);
}
.letter-modal__body {
  padding: var(--s-5);
  font-family: var(--font-serif);
  font-size: var(--fs-body-lg);
  line-height: 1.9;
  color: var(--c-ink-soft);
  white-space: pre-wrap;
  word-wrap: break-word;
}
.letter-modal__body--empty {
  text-align: center;
  color: var(--c-ink-muted);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  padding-block: var(--s-6);
}
.letter-modal__editor {
  width: 100%;
  min-height: 200px;
  font-family: var(--font-serif);
  font-size: var(--fs-body-lg);
  line-height: 1.8;
  padding: var(--s-4);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  resize: vertical;
  background: var(--c-bg);
}
.letter-modal__editor:focus {
  outline: none;
  border-color: var(--c-accent);
}
.letter-modal__footer {
  padding: var(--s-3) var(--s-5) var(--s-5);
  display: flex;
  justify-content: flex-end;
  gap: var(--s-3);
  border-top: 1px solid var(--c-line-soft);
}

/* ============ Toast ============ */
.toast-root {
  position: fixed;
  bottom: calc(96px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 32px);
}
.toast {
  padding: var(--s-3) var(--s-5);
  background: var(--c-ink);
  color: var(--c-bg);
  border-radius: 999px;
  font-size: var(--fs-small);
  box-shadow: var(--shadow-lg);
  animation: rise var(--dur-base) var(--ease-out);
  pointer-events: auto;
  white-space: nowrap;
}
.toast--err { background: var(--c-accent-deep); color: #fff; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============ Pixel Girl (角落彩蛋) ============ */
.pixel-girl {
  position: fixed;
  bottom: calc(90px + var(--safe-bottom));
  left: 16px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-2);
  pointer-events: none;
}
.pixel-girl__doll {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast) var(--ease-spring);
}
.pixel-girl__doll:active { transform: scale(0.92) rotate(-8deg); }
.pixel-girl__doll svg {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}
.pixel-girl__qualities {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-2);
  max-width: 220px;
}
.quality {
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: var(--fs-small);
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  animation: rise var(--dur-base) var(--ease-spring);
}
.quality--greedy {
  background: var(--c-accent);
  color: #fff;
  border-color: transparent;
  font-weight: var(--fw-medium);
}
.quality--fadeout {
  animation: fade-out 1s ease forwards;
}
@keyframes fade-out { to { opacity: 0; transform: translateY(-6px); } }

/* ============ Animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise var(--dur-slow) var(--ease-out) forwards;
}
.reveal[data-delay="1"] { animation-delay: 80ms; }
.reveal[data-delay="2"] { animation-delay: 160ms; }

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