:root {
  color-scheme: dark;
  --bg: #101212;
  --surface: #171a1a;
  --surface-raised: #1d2120;
  --surface-hover: #242927;
  --line: #2c3230;
  --line-soft: #232826;
  --text: #f2f4f2;
  --muted: #919a96;
  --faint: #69716e;
  --accent: #e54b3b;
  --accent-soft: #40201c;
  --green: #58c68b;
  --focus: #f3b74e;
  font-family: Inter, "Segoe UI", "Microsoft YaHei UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }

body { min-width: 320px; overflow-x: hidden; }

button, input { font: inherit; }

button { letter-spacing: 0; }

button:focus-visible, input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.topbar {
  height: 66px;
  display: grid;
  grid-template-columns: 260px minmax(280px, 620px) auto auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 18, 18, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand { color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: 11px; font-size: 17px; font-weight: 700; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; background: var(--accent); border-radius: 5px; }
.brand-mark svg { width: 19px; height: 19px; stroke-width: 2.2; }

.search-form {
  height: 40px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  padding-left: 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
}
.search-form:focus-within { border-color: #666f6b; background: var(--surface-raised); }
.search-form svg { width: 18px; color: var(--faint); }
.search-form input { min-width: 0; height: 100%; border: 0; outline: 0; color: var(--text); background: transparent; letter-spacing: 0; }
.search-form input::placeholder { color: var(--faint); }
.search-submit { align-self: stretch; min-width: 68px; border: 0; border-left: 1px solid var(--line); color: white; background: var(--accent); cursor: pointer; font-weight: 650; border-radius: 0 5px 5px 0; }
.search-submit:hover { background: #f05a49; }

.install-button { height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid var(--line); border-radius: 5px; color: var(--text); background: var(--surface-raised); cursor: pointer; font-size: 12px; }
.install-button:hover { border-color: #59615d; background: var(--surface-hover); }
.install-button svg { width: 15px; height: 15px; }

.browse-link, .player-link { height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 0 11px; border: 1px solid var(--line); border-radius: 5px; color: var(--text); background: transparent; text-decoration: none; font-size: 12px; }
.browse-link:hover, .player-link:hover { border-color: #59615d; background: var(--surface-hover); }
.browse-link svg, .player-link svg { width: 15px; height: 15px; }

.network-state { grid-column: -1; justify-self: end; display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(88, 198, 139, 0.12); }

.workspace { display: grid; grid-template-columns: 280px minmax(0, 1fr) 310px; min-height: calc(100vh - 66px); }
.results-pane, .episodes-pane { background: var(--surface); min-height: 0; }
.results-pane { border-right: 1px solid var(--line); }
.episodes-pane { border-left: 1px solid var(--line); }
.pane-heading { min-height: 78px; padding: 18px 18px 14px; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pane-heading h2 { margin: 2px 0 0; font-size: 17px; line-height: 1.2; letter-spacing: 0; }
.eyebrow { margin: 0; color: var(--faint); text-transform: uppercase; font-size: 10px; font-weight: 700; }
.count { min-width: 28px; height: 24px; display: grid; place-items: center; padding: 0 7px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; border-radius: 4px; }

.results { max-height: calc(100vh - 144px); overflow-y: auto; padding: 8px; }
.result-item { width: 100%; min-height: 61px; display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 11px; align-items: center; text-align: left; color: inherit; border: 1px solid transparent; background: transparent; border-radius: 5px; padding: 8px; cursor: pointer; }
.result-item:hover { background: var(--surface-hover); }
.result-item.active { border-color: #52433e; background: var(--accent-soft); }
.result-index { width: 38px; height: 43px; display: grid; place-items: center; border-radius: 3px; background: #2a302d; color: var(--faint); font-size: 11px; font-variant-numeric: tabular-nums; }
.result-item.active .result-index { background: var(--accent); color: white; }
.result-copy { min-width: 0; }
.result-title { display: block; color: var(--text); font-weight: 650; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.result-status { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.aside-empty { min-height: 210px; display: grid; place-content: center; justify-items: center; gap: 10px; color: var(--faint); text-align: center; }
.aside-empty.compact { min-height: 180px; }
.aside-empty svg { width: 25px; height: 25px; stroke-width: 1.4; }
.aside-empty p { margin: 0; font-size: 12px; }

.history { margin: 6px 14px 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.section-label { display: flex; justify-content: space-between; align-items: center; color: var(--faint); font-size: 11px; margin-bottom: 6px; }
.history-item { width: 100%; border: 0; background: transparent; color: var(--muted); display: flex; justify-content: space-between; gap: 8px; padding: 8px 4px; cursor: pointer; text-align: left; font-size: 12px; }
.history-item:hover { color: var(--text); }
.history-item span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.history-item span:last-child { color: var(--faint); flex: none; }

.stage { min-width: 0; padding-bottom: 48px; }
.player-shell { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: calc(100vh - 225px); min-height: 300px; overflow: hidden; background: #080909; border-bottom: 1px solid var(--line); }
.player-shell video { display: block; width: 100%; height: 100%; object-fit: contain; background: #080909; }
.player-empty, .player-loading, .player-error { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; background: #0b0d0c; }
.player-empty::before { content: ""; position: absolute; inset: 0; opacity: 0.15; background-image: linear-gradient(#222 1px, transparent 1px), linear-gradient(90deg, #222 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(circle, black, transparent 72%); }
.empty-mark { z-index: 1; width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid #343a37; border-radius: 50%; background: #161a18; }
.empty-mark svg { width: 23px; height: 23px; fill: var(--accent); color: var(--accent); transform: translateX(2px); }
.player-empty h1 { z-index: 1; margin: 18px 0 6px; font-size: 20px; letter-spacing: 0; }
.player-empty p, .player-loading p, .player-error p { z-index: 1; margin: 0; color: var(--muted); font-size: 13px; }
.spinner { width: 28px; height: 28px; border: 2px solid #343a37; border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; margin-bottom: 14px; }
@keyframes spin { to { transform: rotate(360deg); } }
.player-error svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 12px; }
.player-error button { margin-top: 16px; border: 1px solid var(--line); background: var(--surface-raised); color: var(--text); padding: 8px 16px; border-radius: 5px; cursor: pointer; }

.now-playing { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 26px; border-bottom: 1px solid var(--line); }
.playing-kicker { color: var(--accent); font-weight: 700; font-size: 10px; text-transform: uppercase; }
.playing-kicker span { width: 6px; height: 6px; display: inline-block; background: var(--accent); border-radius: 50%; margin-right: 5px; }
.title-block h1 { margin: 5px 0 2px; font-size: 21px; line-height: 1.25; letter-spacing: 0; }
.title-block p { margin: 0; color: var(--muted); font-size: 13px; }
.playback-actions { display: flex; gap: 7px; }
.icon-button { width: 30px; height: 30px; border: 1px solid transparent; display: grid; place-items: center; border-radius: 4px; color: var(--muted); background: transparent; cursor: pointer; padding: 0; }
.icon-button:hover:not(:disabled) { color: var(--text); border-color: var(--line); background: var(--surface-hover); }
.icon-button:disabled { opacity: 0.3; cursor: default; }
.icon-button svg { width: 15px; height: 15px; }
.icon-button.large { width: 38px; height: 38px; border-color: var(--line); background: var(--surface); }
.icon-button.large svg { width: 17px; height: 17px; }

.detail-band { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 20px; padding: 22px 26px; }
.poster-wrap { width: 112px; aspect-ratio: 2 / 3; position: relative; overflow: hidden; background: var(--surface-raised); border-radius: 4px; }
.poster-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--faint); background: var(--surface-raised); }
.poster-fallback svg { width: 28px; height: 28px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.meta-tag { border: 1px solid var(--line); color: var(--muted); font-size: 11px; padding: 4px 7px; border-radius: 3px; }
.description { margin: 0; color: #b5bcb8; font-size: 13px; line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.description.expanded { display: block; }
.text-button { border: 0; background: none; color: var(--accent); padding: 6px 0; cursor: pointer; font-size: 12px; }
.credits { margin: 10px 0 0; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 6px 10px; font-size: 12px; }
.credits dt { color: var(--faint); }
.credits dd { margin: 0; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.episode-toolbar { height: 42px; padding: 0 14px 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-soft); color: var(--faint); font-size: 11px; }
.source-switcher { padding: 10px 12px; border-bottom: 1px solid var(--line-soft); }
.source-label { display: block; margin: 0 5px 7px; color: var(--faint); font-size: 10px; font-weight: 700; }
.source-tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.source-button { min-width: 0; height: 30px; border: 1px solid var(--line); border-radius: 4px; padding: 0 9px; color: var(--muted); background: var(--surface-raised); cursor: pointer; font-size: 11px; white-space: nowrap; }
.source-button:hover { border-color: #59615d; color: var(--text); }
.source-button.active { border-color: var(--accent); color: white; background: var(--accent); font-weight: 700; }
.source-button.failed:not(.active) { color: #c97d74; border-color: #57312d; text-decoration: line-through; }
.episodes { height: calc(100vh - 186px); overflow-y: auto; padding: 12px; }
.episode-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.episode-button { height: 40px; min-width: 0; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); background: var(--surface-raised); padding: 0 5px; cursor: pointer; font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.episode-button:hover { border-color: #59615d; color: var(--text); }
.episode-button.active { border-color: var(--accent); background: var(--accent); color: white; font-weight: 700; }

.skeleton { overflow: hidden; position: relative; background: #252a28; border-radius: 4px; }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent); animation: shimmer 1.3s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
.result-skeleton { height: 61px; margin: 4px; }
.episode-skeleton { height: 40px; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 50; max-width: min(420px, calc(100vw - 32px)); padding: 10px 14px; color: var(--text); background: #2b302e; border: 1px solid #464e4a; border-radius: 5px; box-shadow: 0 12px 30px rgba(0,0,0,.35); font-size: 12px; }

.browse-main { width: min(1440px, 100%); margin: 0 auto; padding: 0 28px 52px; }
.browse-heading { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.browse-heading h1 { margin: 4px 0 0; font-size: 23px; line-height: 1.2; letter-spacing: 0; }
.browse-total { color: var(--muted); font-size: 12px; }
.filter-band { border-bottom: 1px solid var(--line); }
.provider-tabs { min-height: 78px; display: flex; align-items: stretch; gap: 0; overflow-x: auto; border-bottom: 1px solid var(--line-soft); }
.provider-button { min-width: 150px; border: 0; border-bottom: 3px solid transparent; color: var(--muted); background: transparent; cursor: pointer; padding: 15px 18px 12px; text-align: left; }
.provider-button:hover { color: var(--text); background: var(--surface); }
.provider-button.active { color: var(--text); border-bottom-color: var(--accent); background: var(--surface); }
.provider-button.unavailable { color: var(--faint); }
.provider-button span, .provider-button small { display: block; }
.provider-button span { font-size: 14px; font-weight: 700; }
.provider-button small { margin-top: 6px; color: var(--faint); font-size: 10px; }
.filter-loading { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; padding: 0 18px; }
.spinner.small { width: 18px; height: 18px; margin: 0; }
.category-groups { padding: 8px 0; }
.category-group { min-height: 55px; display: grid; grid-template-columns: 126px minmax(0, 1fr); align-items: start; gap: 14px; padding: 10px 8px; border-bottom: 1px solid var(--line-soft); }
.category-group:last-child { border-bottom: 0; }
.category-root, .category-button { min-width: 0; height: 34px; border-radius: 4px; cursor: pointer; }
.category-root { border: 1px solid var(--line); color: var(--text); background: var(--surface-raised); padding: 0 12px; text-align: left; font-weight: 700; }
.category-root:hover, .category-button:hover { border-color: #59615d; color: var(--text); }
.category-root.active { border-color: var(--accent); background: var(--accent); color: white; }
.category-children { min-height: 34px; display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.category-button { border: 1px solid transparent; color: var(--muted); background: transparent; padding: 0 11px; }
.category-button.active { border-color: #63362f; color: #ffb4aa; background: var(--accent-soft); }
.category-only { padding: 9px 11px; color: var(--faint); font-size: 12px; }
.catalog-section { padding-top: 28px; }
.catalog-heading { min-height: 54px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.catalog-heading h2 { margin: 4px 0 0; font-size: 19px; letter-spacing: 0; }
.catalog-path { margin: 0; color: var(--accent); font-size: 11px; font-weight: 700; }
.catalog-page-meta { padding-top: 20px; color: var(--faint); font-size: 11px; }
.poster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 20px 14px; }
.poster-card { min-width: 0; display: block; color: var(--text); text-decoration: none; }
.poster-media { position: relative; display: block; width: 100%; aspect-ratio: 2 / 3; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: var(--surface-raised); }
.poster-media img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .18s ease; }
.poster-card:hover .poster-media { border-color: #59615d; }
.poster-card:hover .poster-media img { transform: scale(1.025); }
.browse-poster-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--faint); background: var(--surface-raised); }
.browse-poster-fallback svg { width: 30px; height: 30px; stroke-width: 1.3; }
.poster-status { position: absolute; z-index: 2; right: 6px; bottom: 6px; max-width: calc(100% - 12px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 4px 6px; border-radius: 3px; color: white; background: rgba(9, 11, 10, .84); font-size: 10px; }
.poster-copy { display: block; padding: 9px 2px 0; }
.poster-copy strong, .poster-copy small { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.poster-copy strong { font-size: 13px; line-height: 1.4; }
.poster-copy small { min-height: 16px; margin-top: 4px; color: var(--faint); font-size: 10px; }
.poster-card-skeleton { min-width: 0; }
.poster-skeleton { display: block; width: 100%; aspect-ratio: 2 / 3; }
.title-skeleton { display: block; width: 72%; height: 13px; margin: 10px 2px; }
.catalog-empty { grid-column: 1 / -1; min-height: 260px; display: grid; place-content: center; justify-items: center; gap: 10px; color: var(--faint); text-align: center; }
.catalog-empty.compact { min-height: 88px; }
.catalog-empty svg { width: 27px; height: 27px; stroke-width: 1.4; }
.catalog-empty p { margin: 0; font-size: 12px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 36px; }
.page-button { width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); background: var(--surface); cursor: pointer; font-size: 12px; }
.page-button:hover:not(:disabled) { border-color: #59615d; color: var(--text); background: var(--surface-hover); }
.page-button.active { border-color: var(--accent); color: white; background: var(--accent); font-weight: 700; }
.page-button:disabled { opacity: .3; cursor: default; }
.page-button svg { width: 16px; height: 16px; }
.page-ellipsis { width: 24px; color: var(--faint); text-align: center; font-size: 12px; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #363c39; border: 2px solid var(--surface); border-radius: 8px; }
::-webkit-scrollbar-track { background: transparent; }

@media (max-width: 1100px) {
  .workspace { grid-template-columns: 245px minmax(0, 1fr); }
  .episodes-pane { grid-column: 2; border-left: 0; border-top: 1px solid var(--line); }
  .episode-heading { min-height: 66px; }
  .episodes { height: auto; max-height: 350px; }
  .episode-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .stage { grid-row: span 2; }
  .player-shell { max-height: none; min-height: 260px; }
}

@media (max-width: 720px) {
  .topbar { height: auto; min-height: 62px; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; padding: calc(14px + env(safe-area-inset-top, 0px)) 12px 10px; }
  .brand > span:last-child, .network-state, .install-button span { display: none; }
  .install-button { position: fixed; right: 12px; bottom: calc(14px + env(safe-area-inset-bottom)); z-index: 45; width: 42px; height: 42px; justify-content: center; padding: 0; border-color: #5b302b; background: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
  .brand-mark { width: 38px; height: 38px; }
  .search-form { width: 100%; height: 38px; }
  .browse-link, .player-link { width: 38px; height: 38px; justify-content: center; padding: 0; }
  .browse-link span, .player-link span { display: none; }
  .workspace { display: flex; flex-direction: column; min-height: 0; }
  .results-pane { order: 1; border-right: 0; border-bottom: 1px solid var(--line); }
  .stage { order: 2; padding-bottom: 0; }
  .episodes-pane { order: 3; border-top: 1px solid var(--line); }
  .pane-heading { min-height: 58px; padding: 12px 14px; }
  .results-pane .pane-heading { display: none; }
  .results { display: flex; gap: 7px; max-height: none; overflow-x: auto; padding: 8px 10px; }
  .results .aside-empty { min-width: 100%; min-height: 54px; display: flex; }
  .result-item { flex: 0 0 178px; min-height: 54px; grid-template-columns: 32px minmax(0, 1fr); padding: 6px; }
  .result-index { width: 32px; height: 38px; }
  .history { margin: 0 10px 10px; padding-top: 9px; }
  .section-label { margin-bottom: 3px; }
  #history-list { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 2px; }
  .history-item { flex: 0 0 148px; min-height: 32px; align-items: center; border: 1px solid var(--line-soft); border-radius: 4px; background: var(--surface-raised); padding: 6px 8px; }
  .history-item:hover { border-color: var(--line); background: var(--surface-hover); }
  .player-shell { min-height: 0; aspect-ratio: 16 / 9; }
  .player-empty h1 { font-size: 16px; margin-top: 12px; }
  .player-empty p { font-size: 11px; }
  .empty-mark { width: 44px; height: 44px; }
  .now-playing { padding: 14px; gap: 12px; }
  .title-block h1 { font-size: 17px; }
  .detail-band { grid-template-columns: 78px minmax(0, 1fr); gap: 13px; padding: 16px 14px; }
  .poster-wrap { width: 78px; }
  .description { -webkit-line-clamp: 2; font-size: 12px; }
  .credits { display: none; }
  .episodes { max-height: none; padding: 10px; }
  .source-switcher { padding: 9px 10px; }
  .source-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; }
  .source-button { flex: 0 0 auto; }
  .episode-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .episode-button { height: 38px; }
  .toast { bottom: 14px; }
  .browse-main { padding: 0 12px 38px; }
  .browse-heading { min-height: 78px; }
  .browse-heading h1 { font-size: 20px; }
  .provider-tabs { min-height: 66px; margin: 0 -12px; padding: 0 12px; }
  .provider-button { min-width: 118px; padding: 12px 14px 9px; }
  .category-groups { padding: 6px 0; }
  .category-group { display: block; padding: 10px 0; }
  .category-root { width: 100%; text-align: left; }
  .category-children { margin-top: 6px; gap: 3px; }
  .category-button { height: 32px; padding: 0 9px; font-size: 12px; }
  .catalog-section { padding-top: 22px; }
  .catalog-heading { min-height: 46px; margin-bottom: 12px; }
  .catalog-heading h2 { font-size: 17px; }
  .catalog-page-meta { padding-top: 17px; }
  .poster-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 9px; }
  .poster-copy { padding-top: 7px; }
  .poster-copy strong { font-size: 12px; }
  .poster-status { right: 4px; bottom: 4px; max-width: calc(100% - 8px); padding: 3px 4px; }
  .pagination { gap: 4px; margin-top: 28px; }
  .page-button { width: 34px; height: 34px; }
}

@media (max-width: 390px) {
  .search-submit { min-width: 58px; }
  .episode-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-band { grid-template-columns: 66px minmax(0, 1fr); }
  .poster-wrap { width: 66px; }
  .playback-actions { gap: 4px; }
}

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