/* ════════════════════════════════════════════════════════════════════
   USDKAMU.MY.ID — desain sistem. Gaya: komiku-style dark, aksen ungu.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0e1014;
  --bg-elev: #14171d;
  --surface: #1a1e26;
  --surface-2: #21262f;
  --surface-3: #282e39;

  --border: rgb(255 255 255 / .07);
  --border-strong: rgb(255 255 255 / .15);

  --text: #eef0f4;
  --text-muted: #9aa3b2;
  --text-faint: #697080;

  --accent: #a855f7;                 /* ungu */
  --accent-strong: #9333ea;          /* ungu tua */
  --accent-soft: rgb(168 85 247 / .14);
  --on-accent: #fff;

  --amber: #ffb020;
  --green: #2dd4a7;
  --blue: #5aa9ff;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-pill: 999px;

  --shadow-1: 0 2px 10px rgb(0 0 0 / .35);
  --shadow-2: 0 14px 34px rgb(0 0 0 / .5);
  --shadow-accent: 0 8px 24px rgb(168 85 247 / .35);

  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;

  --header-h: 62px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgb(168 85 247 / .07), transparent 60%),
    radial-gradient(900px 420px at -10% 0%, rgb(147 51 234 / .05), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
code { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: .9em; }

.txt-accent { color: var(--accent); }

.app {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px 72px;
  min-height: calc(100vh - var(--header-h) - 180px);
}

/* ── Header sticky ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgb(14 16 20 / .82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  box-shadow: var(--shadow-accent);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .2px;
}

.main-nav { display: flex; align-items: center; gap: 2px; margin-left: 4px; }

.main-nav a {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  transition: color .18s, background .18s;
}

.main-nav a:hover { color: var(--text); background: rgb(255 255 255 / .05); }
.main-nav a.is-active { color: var(--accent); background: var(--accent-soft); }

/* ── Search ────────────────────────────────────────────────────── */

.search-form {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 6px 5px 16px;
  width: 280px;
  transition: border-color .18s, box-shadow .18s;
}

.search-form:focus-within {
  border-color: rgb(168 85 247 / .55);
  box-shadow: 0 0 0 3px rgb(168 85 247 / .14);
}

.search-form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: 0;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.search-form input::placeholder { color: var(--text-faint); }

.search-form button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background .18s, transform .12s;
}

.search-form button:hover { background: var(--accent-strong); }
.search-form button:active { transform: scale(.93); }

/* ── Footer ────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 30px 18px 42px;
}

.footer-inner { max-width: var(--maxw); margin: 0 auto; }

.logo--small { margin-bottom: 12px; }
.logo--small .logo-mark { width: 26px; height: 26px; font-size: 15px; border-radius: 8px; }
.logo--small .logo-text { font-size: 15px; }

.foot-note {
  margin: 0;
  color: var(--text-faint);
  font-size: 12.5px;
  line-height: 1.7;
}
.foot-note code { color: var(--text-muted); }

/* ── Toast ─────────────────────────────────────────────────────── */

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  font-size: 13.5px;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s, opacity .22s;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.is-error { border-color: rgb(168 85 247 / .5); }
.toast.is-error .toast-title { color: var(--accent); }
.toast-title { font-weight: 700; margin-bottom: 2px; }

/* ── Tombol & chip ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  cursor: pointer;
  transition: transform .14s, background .18s, box-shadow .18s, color .18s;
}

.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-strong); }

.btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--surface-3); }

.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}

.chip--accent { color: var(--accent); border-color: rgb(168 85 247 / .35); }
.chip--amber { color: var(--amber); border-color: rgb(255 176 32 / .35); }
.chip--green { color: var(--green); border-color: rgb(45 212 167 / .4); }
.chip--muted { color: var(--text-faint); }

/* ── Section & tab ─────────────────────────────────────────────── */

.section-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 18px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .2px;
}

.section-title::before {
  content: "";
  width: 5px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 12px rgb(168 85 247 / .6);
}

.tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab {
  border: 0;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s, background .18s;
}

.tab:hover { color: var(--text); }
.tab.is-active { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }

/* ── Grid cover kartu ──────────────────────────────────────────── */

.cover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 20px 16px;
}

.manga-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  transition: transform .22s cubic-bezier(.2,.7,.3,1.2);
}

.manga-card:hover { transform: translateY(-5px); }

.card-figure {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgb(255 255 255 / .03), transparent 45%),
    var(--surface-2);
  box-shadow: var(--shadow-1);
}

.card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}

.manga-card:hover .card-figure img { transform: scale(1.07); }

.card-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgb(0 0 0 / .62));
  opacity: 0;
  transition: opacity .25s;
}

.manga-card:hover .card-figure::after { opacity: 1; }

.card-type {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  background: rgb(10 12 16 / .72);
  border: 1px solid rgb(255 255 255 / .16);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.card-chapter {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgb(14 16 20 / .7);
  border: 1px solid rgb(255 255 255 / .14);
  backdrop-filter: blur(6px);
  transform: translateY(6px);
  opacity: 0;
  transition: transform .25s, opacity .25s;
}

.manga-card:hover .card-chapter { transform: translateY(0); opacity: 1; }

.card-chapter .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.card-title {
  margin: 10px 2px 0;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .18s;
}

.manga-card:hover .card-title { color: var(--accent); }

/* ── Skeleton ──────────────────────────────────────────────────── */

.sk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 20px 16px;
}

.sk-card { border-radius: var(--radius); }

.sk-card .sk-figure {
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
}

.sk-figure, .sk-line {
  background: linear-gradient(100deg, var(--surface) 40%, var(--surface-3) 50%, var(--surface) 60%);
  background-size: 200% 100%;
  animation: shimmer 1.3s linear infinite;
}

.sk-line { height: 12px; border-radius: 6px; margin-top: 10px; }
.sk-line--short { width: 65%; }

@keyframes shimmer {
  from { background-position: 130% 0; }
  to { background-position: -70% 0; }
}

/* ── Tombol muat lebih ─────────────────────────────────────────── */

.load-more-wrap { display: flex; justify-content: center; margin-top: 30px; }

/* ── Detail manga ──────────────────────────────────────────────── */

.crumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 22px 0 14px;
  font-size: 12.5px;
  color: var(--text-faint);
}

.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { opacity: .6; }
.crumbs .cur { color: var(--text); font-weight: 600; max-width: 60vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.detail-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(14 16 20 / .72), rgb(14 16 20 / .95)),
    radial-gradient(700px 300px at 20% 0%, rgb(168 85 247 / .1), transparent 60%);
}

.hero-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: blur(42px) saturate(1.2);
  opacity: .35;
  transform: scale(1.15);
  pointer-events: none;
}

.detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  padding: 26px;
}

.detail-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border-strong);
}

.detail-cover img { width: 100%; height: 100%; object-fit: cover; }

.detail-body { min-width: 0; }

.detail-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.25;
}

.detail-alt {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 13px;
}

.detail-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 16px; }

.rating-num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-weight: 800;
  font-size: 15px;
}

.rating-num svg { flex-shrink: 0; }

.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }

.synopsis-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.synopsis-box h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); }

.synopsis-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  white-space: pre-line;
  max-height: 96px;
  overflow: hidden;
  transition: max-height .3s;
}

.synopsis-box.is-open .synopsis-text { max-height: none; }

.synopsis-toggle {
  margin-top: 10px;
  background: none;
  border: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}

.genre-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip--genre { cursor: pointer; transition: color .16s, border-color .16s, background .16s; }
.chip--genre:hover { color: var(--accent); border-color: rgb(168 85 247 / .5); background: var(--accent-soft); }

/* ── Daftar chapter ────────────────────────────────────────────── */

.chapters-panel {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.chapters-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.chapters-head h2 { margin: 0; font-family: var(--font-display); font-size: 17px; font-weight: 800; }

.chapters-count { color: var(--text-faint); font-size: 13px; }

.chapters-head .btn { margin-left: auto; }

.chapters-list { max-height: 560px; overflow-y: auto; scrollbar-width: thin; }

.chapter-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.chapter-row:last-child { border-bottom: 0; }
.chapter-row:hover { background: var(--surface-2); }

.chapter-row .ch-num { font-weight: 700; font-size: 14px; color: var(--text); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.chapter-row .ch-date { color: var(--text-faint); font-size: 12.5px; white-space: nowrap; }

.chapter-row:hover .ch-num { color: var(--accent); }

.empty-chapters { padding: 22px; text-align: center; color: var(--text-faint); font-size: 13.5px; }

/* ── Reader ────────────────────────────────────────────────────── */

.reader-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgb(14 16 20 / .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 10px 18px;
  margin: 0 -18px 20px;
}

.reader-bar .rb-back { flex-shrink: 0; }

.reader-bar .rb-title {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.reader-bar .rb-nav { display: flex; gap: 8px; flex-shrink: 0; }

.reader-body { max-width: 840px; margin: 0 auto; }

/* Gambar halaman saling menempel rapat — tanpa gap, tanpa border,
   tanpa sudut membulat (gaya baca webtoon/komik berkelanjutan). */
.reader-page { margin: 0; border-radius: 0; overflow: hidden; }

.reader-page img { width: 100%; height: auto; display: block; }

.reader-page img.img-broken {
  aspect-ratio: 2 / 1;
  object-fit: cover;
  background: var(--surface-2);
}

.reader-hint {
  text-align: center;
  color: var(--text-faint);
  font-size: 12.5px;
  margin: 4px 0 10px;
}

.reader-bottom { display: flex; justify-content: center; gap: 12px; padding: 24px 0 8px; }

.reader-page-num {
  text-align: center;
  color: var(--text-faint);
  font-size: 12.5px;
  margin-top: 10px;
}

/* ── Sidebar daftar chapter (di reader) ────────────────────────── */

.reader-backdrop {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgb(0 0 0 / .55);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.reader-backdrop.open { opacity: 1; pointer-events: auto; }

.reader-sidebar {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--bg-elev);
  border-left: 1px solid var(--border-strong);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
  box-shadow: var(--shadow-2);
}

.reader-sidebar.open { transform: translateX(0); }

.rs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.rs-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.rs-close {
  background: none;
  border: 0;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
}
.rs-close:hover { color: var(--text); background: var(--surface-2); }

.rs-body { flex: 1; overflow-y: auto; padding: 8px; scrollbar-width: thin; }

.rs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  transition: background .15s;
}

.rs-item:hover { background: var(--surface-2); }

.rs-item.is-current {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.rs-date { color: var(--text-faint); font-size: 12px; white-space: nowrap; }

.rs-empty {
  padding: 22px 16px;
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.7;
}

/* ── State kosong / error ──────────────────────────────────────── */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 70px 20px;
}

.empty-state .es-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
}

.empty-state h2 { margin: 0; font-family: var(--font-display); font-size: 19px; }
.empty-state p { margin: 0; color: var(--text-muted); font-size: 14px; max-width: 420px; }

.loading-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.spinner {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  border-top-color: var(--accent);
  animation: spin .8s linear infinite;
}

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

/* ── Responsive ────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .search-form { width: 200px; }
  .detail-grid { grid-template-columns: 170px 1fr; gap: 20px; padding: 20px; }
}

@media (max-width: 720px) {
  :root { --header-h: 56px; }

  .header-inner { flex-wrap: wrap; gap: 10px; padding: 8px 14px; height: auto; }
  .site-header { height: auto; }

  .main-nav { order: 3; width: 100%; overflow-x: auto; scrollbar-width: none; margin: 0; }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a { padding: 6px 11px; font-size: 13px; }

  .search-form { order: 2; width: min(240px, 100%); margin-left: auto; }

  .app { padding: 0 14px 56px; }

  .cover-grid, .sk-grid { grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 16px 12px; }

  .detail-grid { grid-template-columns: 1fr; }
  .detail-cover { width: 170px; }
  .detail-actions { flex-direction: column; align-items: stretch; }
  .detail-actions .btn { justify-content: center; }

  .reader-bar { flex-wrap: wrap; gap: 8px; }
  .reader-bar .rb-title { order: 3; width: 100%; text-align: left; }
}

@media (max-width: 460px) {
  .cover-grid, .sk-grid { grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 14px 10px; }
  .card-title { font-size: 12.5px; }
  .section-title { font-size: 18px; }
}

/* ── Aksesibilitas & gerakan ───────────────────────────────────── */

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




