:root {
  --bg: #09090d;
  --panel: rgba(22, 22, 29, 0.78);
  --panel-strong: #17171e;
  --line: rgba(240, 220, 166, 0.17);
  --line-strong: rgba(240, 220, 166, 0.38);
  --text: #f2efe7;
  --muted: #aaa6a0;
  --gold: #d9c28c;
  --gold-bright: #f0dba7;
  --danger: #d8a3a3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --safe-bottom: max(18px, env(safe-area-inset-bottom));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(91, 78, 127, 0.22), transparent 34%),
    linear-gradient(180deg, #0e0e14 0%, var(--bg) 56%, #08080b 100%);
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.65) 0 1px, transparent 1.6px),
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 56%, rgba(255,255,255,.38) 0 1px, transparent 1.4px),
    radial-gradient(circle at 28% 72%, rgba(255,255,255,.34) 0 1px, transparent 1.4px);
  background-size: 210px 210px, 270px 270px, 330px 330px, 390px 390px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 64px;
  padding: max(12px, env(safe-area-inset-top)) 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(9,9,13,.95), rgba(9,9,13,.68), transparent);
  backdrop-filter: blur(12px);
}
.brand, .icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: .12em;
}
.brand i { color: var(--gold); font-style: normal; font-size: 11px; margin-left: 4px; }
.brand-mark { color: var(--gold-bright); }
.icon-button {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}
.icon-button:hover { border-color: var(--line-strong); color: var(--text); }

.app {
  position: relative;
  width: min(100%, 740px);
  margin: 0 auto;
  padding: 14px 18px calc(36px + var(--safe-bottom));
}
.screen { animation: rise .45s cubic-bezier(.2,.8,.2,1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.hero {
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 0 40px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}
.hero h1, .screen-title {
  margin: 0;
  font-family: Georgia, "Songti SC", "Noto Serif CJK SC", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(46px, 15vw, 78px); line-height: .98; }
.hero h1 em { display: block; color: var(--gold-bright); font-style: normal; }
.hero-copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: #c6c2bb;
  font-size: 16px;
  line-height: 1.75;
}
.hero-orbit {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 28px auto 38px;
  display: grid;
  place-items: center;
}
.hero-orbit::before, .hero-orbit::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.hero-orbit::after {
  inset: 33px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 24s;
}
@keyframes spin { to { transform: rotate(360deg); } }
.moon {
  width: 102px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f3e5bd, #c8a96a 62%, #6d5735 100%);
  box-shadow: 0 0 60px rgba(217,194,140,.18), inset -18px -12px 25px rgba(64,45,23,.35);
}
.orbit-star { position: absolute; color: var(--gold); font-size: 14px; }
.orbit-star.one { top: 5px; left: 48%; }
.orbit-star.two { right: 13px; bottom: 38px; }
.orbit-star.three { left: 8px; bottom: 68px; }

.actions { display: grid; gap: 12px; }
.primary, .secondary, .ghost, .chip, .spread-option, .category-option {
  border: 0;
  cursor: pointer;
}
.primary, .secondary {
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 750;
  letter-spacing: .02em;
}
.primary {
  color: #17130a;
  background: linear-gradient(135deg, #ead8a8, #bfa36a);
  box-shadow: 0 12px 34px rgba(189,157,91,.17);
}
.primary:hover { filter: brightness(1.06); }
.primary:disabled { opacity: .42; cursor: not-allowed; filter: none; }
.secondary { color: var(--text); background: rgba(255,255,255,.055); border: 1px solid var(--line); }
.ghost { padding: 10px 2px; color: var(--muted); background: transparent; text-decoration: underline; text-underline-offset: 4px; }
.full { width: 100%; }
.small { min-height: 42px; padding: 10px 14px; border-radius: 13px; font-size: 13px; }

.step-head { padding: 18px 0 24px; }
.step-count { color: var(--gold); font-size: 12px; letter-spacing: .14em; }
.screen-title { margin-top: 9px; font-size: clamp(32px, 10vw, 48px); line-height: 1.12; }
.screen-subtitle { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }

.field-label { display: block; margin: 22px 0 9px; color: #d7d2c8; font-weight: 650; }
.textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255,255,255,.035);
  line-height: 1.6;
}
.textarea::placeholder { color: #716e69; }
.helper { margin: 8px 2px 0; color: #7f7b75; font-size: 12px; line-height: 1.55; }

.category-grid, .spread-grid {
  display: grid;
  gap: 11px;
}
.category-grid { grid-template-columns: repeat(2, 1fr); }
.category-option {
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 15px;
  text-align: left;
  color: #d8d4cc;
  background: rgba(255,255,255,.035);
  border: 1px solid transparent;
}
.category-option.selected, .spread-option.selected {
  color: var(--text);
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(217,194,140,.12), rgba(255,255,255,.035));
}
.spread-option {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  text-align: left;
  color: var(--text);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
}
.spread-option h3 { margin: 0 0 7px; font-size: 17px; }
.spread-option p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.spread-preview { display: flex; gap: 5px; align-items: end; margin-bottom: 16px; height: 36px; }
.mini-card { width: 20px; height: 34px; border: 1px solid var(--line-strong); border-radius: 4px; background: #101017; }
.mini-card.tilt-l { transform: rotate(-9deg); }
.mini-card.tilt-r { transform: rotate(9deg); }

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}
.settings-row strong { display: block; margin-bottom: 4px; }
.settings-row span { color: var(--muted); font-size: 12px; }
.switch { position: relative; width: 50px; height: 28px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; cursor: pointer; border-radius: 999px; background: #32323b; transition: .25s; }
.slider::before { content: ""; position: absolute; width: 22px; height: 22px; left: 3px; top: 3px; border-radius: 50%; background: #d7d2c8; transition: .25s; }
.switch input:checked + .slider { background: #9a8254; }
.switch input:checked + .slider::before { transform: translateX(22px); background: #fff4d3; }

.draw-stage { padding-bottom: 112px; }
.draw-summary {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 8px 0 18px;
}
.draw-summary strong { font-family: Georgia, serif; font-size: 29px; font-weight: 500; }
.draw-summary span { color: var(--muted); font-size: 12px; }
.selected-slots {
  display: grid;
  grid-template-columns: repeat(var(--slot-count, 3), minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
}
.selected-slot {
  position: relative;
  aspect-ratio: 0.58;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(217,194,140,.3);
  border-radius: 12px;
  color: #77736b;
  font-size: 11px;
  text-align: center;
  overflow: hidden;
  background: rgba(255,255,255,.018);
  contain: layout paint;
  transition: border-color .24s ease, background .24s ease, transform .32s cubic-bezier(.2,.8,.2,1);
}
.selected-slot.filled { border-style: solid; border-color: var(--line-strong); background: rgba(217,194,140,.035); }
.selected-slot.arrived { animation: slotReceive .5s cubic-bezier(.2,.8,.2,1); }
.slot-index { transition: opacity .18s ease, transform .18s ease; }
.slot-fill {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .2s ease, transform .38s cubic-bezier(.2,.8,.2,1);
}
.slot-fill .card-back { box-shadow: none; }
.selected-slot.filled .slot-index { opacity: 0; transform: scale(.7); }
.selected-slot.filled .slot-fill { opacity: 1; transform: scale(1); }
.selected-slot .slot-label { position: absolute; z-index: 2; inset: auto 4px 5px; padding: 3px; border-radius: 5px; background: rgba(0,0,0,.68); color: #d8d2c6; font-size: 9px; }
@keyframes slotReceive {
  0% { transform: scale(.96); box-shadow: 0 0 0 rgba(217,194,140,0); }
  48% { transform: scale(1.045); box-shadow: 0 0 28px rgba(217,194,140,.2); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(217,194,140,0); }
}

.deck-hint { margin: 0 0 10px; color: var(--muted); font-size: 12px; text-align: center; }
.deck-scroll {
  position: relative;
  width: calc(100% + 36px);
  margin-left: -18px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 22px 32px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.deck-scroll::-webkit-scrollbar { display: none; }
.deck {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 250px;
  padding-right: 38px;
}
.deck-card {
  position: relative;
  width: 104px;
  aspect-ratio: .58;
  margin-right: -61px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transform: translate3d(0,var(--lift, 0px),0) rotate(var(--tilt, 0deg));
  transform-origin: 50% 110%;
  transition: transform .24s cubic-bezier(.2,.8,.2,1), opacity .18s ease;
  scroll-snap-align: center;
  contain: layout paint;
  touch-action: manipulation;
}
.deck-card .card-back { box-shadow: 0 10px 22px rgba(0,0,0,.34); }
.deck-card:hover, .deck-card:focus-visible { --lift: -16px; z-index: 5; }
.deck-card.chosen { opacity: 0; pointer-events: none; transform: translate3d(0,-58px,0) scale(.82); }
.flying-card {
  position: fixed;
  z-index: 120;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  pointer-events: none;
  transform-origin: top left;
  will-change: transform, opacity;
  contain: strict;
}
.flying-card .card-back { box-shadow: 0 18px 42px rgba(0,0,0,.52); }

.card-back {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(235,217,168,.6);
  border-radius: inherit;
  overflow: hidden;
  background:
    radial-gradient(circle at center, transparent 0 19px, rgba(225,202,143,.45) 20px 21px, transparent 22px),
    conic-gradient(from 45deg, rgba(217,194,140,.14), transparent 20%, rgba(217,194,140,.12) 30%, transparent 48%, rgba(217,194,140,.12) 62%, transparent 80%),
    linear-gradient(135deg, #171624, #0d0d15 60%, #1d1926);
  box-shadow: 0 17px 35px rgba(0,0,0,.45);
}
.card-back::before, .card-back::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(235,217,168,.29);
  border-radius: 8px;
}
.card-back::after {
  inset: 22% 25%;
  transform: rotate(45deg);
  border-radius: 50% 10%;
  background: radial-gradient(circle, #dbc486 0 3px, transparent 4px);
}
.draw-actions {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 0;
  width: min(100%, 740px);
  transform: translateX(-50%);
  padding: 12px 18px var(--safe-bottom);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  background: linear-gradient(180deg, transparent, rgba(9,9,13,.95) 22%, rgba(9,9,13,.99));
}

.reveal-screen { min-height: calc(100vh - 110px); }
.reveal-heading { min-height: 128px; }
.reveal-layout { display: grid; gap: 14px; }
.reveal-card-wrap {
  position: relative;
  perspective: 1500px;
  isolation: isolate;
}
.reveal-card-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(72vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .28;
  transform: translate(-50%,-50%) scale(.72);
  background: radial-gradient(circle, rgba(240,219,167,.26), rgba(95,73,130,.11) 44%, transparent 70%);
  transition: opacity .5s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal-card-wrap.is-activating::before,
.reveal-card-wrap.is-revealed::before { opacity: .72; transform: translate(-50%,-50%) scale(1); }
.reveal-card {
  position: relative;
  width: min(62vw, 258px);
  aspect-ratio: .58;
  margin: 0 auto;
  transform-style: preserve-3d;
  transform: translate3d(0,0,0) rotateY(0deg);
  cursor: pointer;
  touch-action: manipulation;
  will-change: transform;
  contain: layout paint style;
  -webkit-tap-highlight-color: transparent;
}
.reveal-card:not(.revealed):not(.flipping) { animation: cardBreathe 3.2s ease-in-out infinite; }
.reveal-card.flipping { animation: tarotFlip .88s cubic-bezier(.2,.72,.12,1) both; }
.reveal-card.revealed { transform: translate3d(0,0,0) rotateY(180deg); }
.reveal-card-face {
  position: absolute;
  inset: 0;
  border-radius: 17px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.52);
  transform: translateZ(.1px);
}
.reveal-card-face.back { border: 1px solid var(--line-strong); }
.reveal-card-face.front {
  transform: rotateY(180deg) translateZ(.1px);
  background: linear-gradient(145deg, #d8cba8, #bda976);
}
.reveal-card-face.front::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 22%, rgba(255,255,255,.18) 43%, transparent 60%);
  transform: translateX(-120%);
}
.reveal-card-wrap.is-revealed .reveal-card-face.front::after { animation: revealSheen .72s .08s ease-out; }
.reveal-card-face.front img { width: 100%; height: 100%; object-fit: cover; display: block; transform: translateZ(0); }
.reveal-card-face.front img.reversed { transform: rotate(180deg) translateZ(0); }
.reveal-copy { transition: opacity .34s ease, transform .34s ease; }
.reveal-copy.is-visible { animation: copySettle .42s cubic-bezier(.2,.8,.2,1); }
.reveal-progress { margin: 17px 0 7px; text-align: center; color: var(--muted); font-size: 13px; }
@keyframes tarotFlip {
  0% { transform: translate3d(0,0,0) rotateY(0deg) rotateZ(0deg) scale(1); }
  38% { transform: translate3d(0,-12px,0) rotateY(78deg) rotateZ(-1.1deg) scale(1.045); }
  56% { transform: translate3d(0,-10px,0) rotateY(112deg) rotateZ(.8deg) scale(1.045); }
  100% { transform: translate3d(0,0,0) rotateY(180deg) rotateZ(0deg) scale(1); }
}
@keyframes cardBreathe {
  0%,100% { transform: translate3d(0,0,0) rotateY(0deg); }
  50% { transform: translate3d(0,-5px,0) rotateY(0deg); }
}
@keyframes revealSheen {
  from { transform: translateX(-120%); }
  to { transform: translateX(125%); }
}
@keyframes copySettle {
  from { opacity: .2; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-header { padding-bottom: 8px; }
.question-card {
  margin: 18px 0 24px;
  padding: 16px;
  border-left: 2px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.028);
}
.question-card small { color: var(--gold); }
.question-card p { margin: 7px 0 0; color: #ddd8cf; line-height: 1.55; }
.result-cards { display: grid; gap: 15px; }
.result-card {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 15px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
}
.result-image { position: relative; align-self: start; }
.result-image img { width: 100%; aspect-ratio: .58; object-fit: cover; border-radius: 10px; display: block; }
.result-image img.reversed { transform: rotate(180deg); }
.orientation-badge { position: absolute; left: 6px; bottom: 6px; padding: 4px 6px; border-radius: 6px; background: rgba(0,0,0,.76); color: #f0e7d0; font-size: 10px; }
.position-label { margin: 0 0 5px; color: var(--gold); font-size: 11px; letter-spacing: .08em; }
.card-title { margin: 0; font-family: Georgia, "Songti SC", serif; font-weight: 500; font-size: 20px; }
.card-en { margin: 3px 0 10px; color: #87827a; font-size: 11px; }
.keyword-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 11px; }
.keyword { padding: 4px 7px; border-radius: 999px; color: #d4c9ae; background: rgba(217,194,140,.08); border: 1px solid rgba(217,194,140,.14); font-size: 10px; }
.card-reading { margin: 0; color: #c9c4bb; font-size: 13px; line-height: 1.68; }

.synthesis {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(217,194,140,.085), rgba(255,255,255,.025));
}
.synthesis h2 { margin: 0 0 13px; font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.synthesis h3 { margin: 18px 0 7px; color: #e2d8c0; font-size: 14px; }
.synthesis p { margin: 0; color: #c5c0b7; line-height: 1.75; font-size: 14px; }
.result-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.session-meta { margin-top: 14px; color: #74706a; font-size: 11px; text-align: center; line-height: 1.7; }

.history-list { display: grid; gap: 12px; }
.history-item {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: left;
  color: var(--text);
  background: rgba(255,255,255,.03);
  cursor: pointer;
}
.history-item-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.history-item h3 { margin: 0; font-size: 15px; }
.history-item time { color: #77736d; font-size: 10px; white-space: nowrap; }
.history-item p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.history-cards { display: flex; gap: 5px; margin-top: 12px; }
.history-thumb { width: 28px; aspect-ratio: .58; object-fit: cover; border-radius: 3px; filter: saturate(.7); }
.empty {
  padding: 48px 20px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  text-align: center;
  color: var(--muted);
}
.danger-link { color: var(--danger); }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + var(--safe-bottom));
  z-index: 100;
  transform: translate(-50%, 16px);
  max-width: calc(100% - 36px);
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f3ede0;
  background: rgba(18,18,23,.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
  font-size: 12px;
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.dialog {
  width: min(calc(100% - 28px), 560px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  color: var(--text);
  background: #121218;
  box-shadow: var(--shadow);
}
.dialog::backdrop { background: rgba(0,0,0,.68); backdrop-filter: blur(7px); }
.dialog-card { padding: 22px; }
.dialog-head { display: flex; align-items: start; justify-content: space-between; gap: 15px; }
.dialog-head h2 { margin: 0; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.dialog-close { border: 0; background: transparent; color: var(--muted); font-size: 28px; cursor: pointer; }
.dialog-content { color: #c4bfb6; font-size: 14px; line-height: 1.72; }
.dialog-content code { color: var(--gold-bright); }

@media (min-width: 620px) {
  .app { padding-left: 24px; padding-right: 24px; }
  .hero { min-height: 720px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .spread-grid { grid-template-columns: repeat(3, 1fr); }
  .result-cards { grid-template-columns: repeat(2, 1fr); }
  .result-card { grid-template-columns: 118px 1fr; }
}

@media (max-width: 380px) {
  .result-card { grid-template-columns: 92px 1fr; gap: 12px; }
  .selected-slots { gap: 5px; }
  .draw-actions { grid-template-columns: 1fr 1.2fr; }
}

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