/* ═══════════════════════════════════════════════════
   站点样式表
   支持：深色 / 浅色 / 系统跟随 / 响应式 / 减弱动效
   ═══════════════════════════════════════════════════ */

/* ── 深色主题（默认） ── */
:root {
  --bg: #0a0e14;
  --bg-grad: radial-gradient(1400px 700px at 50% -10%, #1b2a4a44, transparent 65%);
  --surface: #131920;
  --surface-2: #1a222d;
  --surface-3: #1f2937;
  --border: #252d38;
  --border-soft: #1c2430;
  --border-focus: #3b4a5e;
  --text: #e2e8f0;
  --text-secondary: #c0cad8;
  --muted: #7d8b9d;
  --accent: #60a5fa;
  --accent-hover: #93c5fd;
  --accent-soft: #1e3a5f2a;
  --accent-glow: #3b82f620;
  --star: #fbbf24;
  --star-soft: #fbbf2418;
  --up: #34d399;
  --up-soft: #34d39918;
  --up-border: #34d39940;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --maxw: 880px;
  --shadow-sm: 0 1px 2px #0004;
  --shadow: 0 1px 3px #0005, 0 4px 16px -4px #0006;
  --shadow-lg: 0 2px 8px #0005, 0 12px 32px -8px #0008;
  --shadow-glow: 0 0 20px var(--accent-glow);
  --transition: 180ms cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 300ms cubic-bezier(.4, 0, .2, 1);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", "Fira Code", "Cascadia Code", monospace;
  /* 原创品牌图标：递增柱状图 + 上升趋势箭头，寓意「榜单 + 上升热度」 */
  --brand-mark: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="2.5" y="14" width="4.4" height="7" rx="1.4"/><rect x="9.8" y="9.5" width="4.4" height="11.5" rx="1.4"/><rect x="17.1" y="5" width="4.4" height="16" rx="1.4"/><path d="M3 9.2 10 5l4 2.4 6.2-4.5-.2 3.4-1.9-.6-3.9 2.9L10 8.3 3.8 12z"/></svg>');
}

/* ── 浅色主题（手动选择） ── */
:root[data-theme="light"] {
  --bg: #f8fafc;
  --bg-grad: radial-gradient(1400px 700px at 50% -10%, #dbeafe50, transparent 65%);
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --surface-3: #e2e8f0;
  --border: #e2e8f0;
  --border-soft: #f1f5f9;
  --border-focus: #cbd5e1;
  --text: #0f172a;
  --text-secondary: #334155;
  --muted: #64748b;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: #2563eb12;
  --accent-glow: #2563eb10;
  --star: #d97706;
  --star-soft: #d9770612;
  --up: #059669;
  --up-soft: #05966912;
  --up-border: #05966930;
  --shadow-sm: 0 1px 2px #0f172808;
  --shadow: 0 1px 3px #0f17280a, 0 4px 16px -4px #0f17280f;
  --shadow-lg: 0 2px 8px #0f17280a, 0 12px 32px -8px #0f172815;
  --shadow-glow: 0 0 20px var(--accent-glow);
}

/* ── 护眼主题（手动选择，暖黄纸张风，低蓝光） ── */
:root[data-theme="eye"] {
  --bg: #f3e9d2;
  --bg-grad: radial-gradient(1400px 700px at 50% -10%, #e9d8ab55, transparent 65%);
  --surface: #faf3e0;
  --surface-2: #f1e6c9;
  --surface-3: #e8dab7;
  --border: #e0cfa6;
  --border-soft: #ecdfc0;
  --border-focus: #cdb681;
  --text: #4a3f2a;
  --text-secondary: #6a5b3d;
  --muted: #726246;
  --accent: #8f5316;
  --accent-hover: #743f0e;
  --accent-soft: #8f531614;
  --accent-glow: #8f531612;
  --star: #8a6208;
  --star-soft: #8a620814;
  --up: #556015;
  --up-soft: #55601516;
  --up-border: #55601533;
  --shadow-sm: 0 1px 2px #4a3f2a0a;
  --shadow: 0 1px 3px #4a3f2a0d, 0 4px 16px -4px #4a3f2a14;
  --shadow-lg: 0 2px 8px #4a3f2a0d, 0 12px 32px -8px #4a3f2a1c;
  --shadow-glow: 0 0 20px var(--accent-glow);
}

/* ── 跟随系统（浅色） ── */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --bg: #f8fafc;
    --bg-grad: radial-gradient(1400px 700px at 50% -10%, #dbeafe50, transparent 65%);
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --surface-3: #e2e8f0;
    --border: #e2e8f0;
    --border-soft: #f1f5f9;
    --border-focus: #cbd5e1;
    --text: #0f172a;
    --text-secondary: #334155;
    --muted: #64748b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-soft: #2563eb12;
    --accent-glow: #2563eb10;
    --star: #d97706;
    --star-soft: #d9770612;
    --up: #059669;
    --up-soft: #05966912;
    --up-border: #05966930;
    --shadow-sm: 0 1px 2px #0f172808;
    --shadow: 0 1px 3px #0f17280a, 0 4px 16px -4px #0f17280f;
    --shadow-lg: 0 2px 8px #0f17280a, 0 12px 32px -8px #0f172815;
    --shadow-glow: 0 0 20px var(--accent-glow);
  }
}

/* ── 基础重置 ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  background-image: var(--bg-grad);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

/* ── 链接 ── */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

/* ── 顶部导航栏 ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
}
.brand {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  user-select: none;
}
.brand::before {
  content: "";
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--up) 100%);
  -webkit-mask: var(--brand-mark) center / contain no-repeat;
  mask: var(--brand-mark) center / contain no-repeat;
}

/* ── 导航链接 ── */
.nav {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.nav a {
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
  letter-spacing: .01em;
}
.nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

/* ── 主题切换 ── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: transform var(--transition-slow);
}
.theme-toggle:hover svg { transform: rotate(15deg); }
/* 默认（深色）显示太阳，浅色显示月亮，护眼显示眼睛 */
.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon,
.theme-toggle .icon-eye { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }
:root[data-theme="eye"] .theme-toggle .icon-sun,
:root[data-theme="eye"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="eye"] .theme-toggle .icon-eye { display: block; }
/* 眼睛图标不旋转，hover 时轻微放大（像「聚焦」），比旋转更贴合语义 */
.theme-toggle:hover .icon-eye { transform: scale(1.18); }
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .theme-toggle .icon-sun { display: none; }
  :root:not([data-theme]) .theme-toggle .icon-moon { display: block; }
}

/* ── 回到顶部 ── */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition),
              visibility var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform var(--transition);
}
.back-to-top:hover svg { transform: translateY(-2px); }
@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ── 主容器 ── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 20px 64px;
}

/* ── 榜单头部 ── */
.board-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.board-head h1 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: -.03em;
  font-weight: 800;
  color: var(--text);
}
.meta {
  color: var(--muted);
  font-size: .82rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-variant-numeric: tabular-nums;
}
.meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .5;
}

/* ── 首页周期 Tab ── */
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 1 1 0;
  min-width: max-content;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
}
/* 标签文案：移动优先，默认窄屏显示短名（日榜），≥640px 宽屏显示完整名（每日热点项目） */
.tab-label-full { display: none; }
.tab:hover { color: var(--text-secondary); }
.tab[aria-selected="true"] {
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.tab-panel[hidden] { display: none; }
/* 无 JS：三榜平铺，各面板间留出间隔并用 h2 小标题分隔 */
.tab-panel + .tab-panel { margin-top: 40px; }
.panel-title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
/* 有 JS（.js-tabs）：Tab 已表明当前周期，隐藏面板内冗余的 h2 标题与面板间距 */
.js-tabs .panel-title { display: none; }
.js-tabs .tab-panel + .tab-panel { margin-top: 0; }
.panel-meta {
  color: var(--muted);
  font-size: .82rem;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-variant-numeric: tabular-nums;
}
.panel-meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .5;
}
.more-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.more-link:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-glow);
}

/* ── 项目列表 ── */
.repo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* 整个列表作为一个整体淡入一次，不逐卡错峰（避免 AI 感的 cascade） */
  animation: list-in 0.4s ease both;
}
@keyframes list-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── 项目卡片 ── */
.repo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  scroll-margin-top: 80px;
  transition: all var(--transition);
}

/* 卡片 hover（仅触屏以上设备） */
@media (hover: hover) {
  .repo-card:hover {
    border-color: var(--border-focus);
    box-shadow: var(--shadow-lg);
  }
}

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

/* ── 项目名称 + 排名 ── */
.repo-name {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.repo-name a {
  word-break: break-word;
  color: var(--text);
  font-family: var(--font-mono);
  letter-spacing: -.01em;
  transition: color var(--transition);
}
/* owner 与项目名同色，仅用字重区分（对齐 GitHub Trending） */
.repo-owner {
  font-weight: 400;
}
.repo-repo {
  font-weight: 750;
}
.repo-name a:hover .repo-owner,
.repo-name a:hover .repo-repo { color: var(--accent); }

/* 排名徽章 */
.repo-rank {
  flex: 0 0 auto;
  min-width: 1.65em;
  padding: 0 .45em;
  height: 1.65em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  letter-spacing: .02em;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
/* ── 项目描述 ── */
.repo-desc-zh {
  margin: 4px 0 2px;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.repo-desc-en {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6;
}

/* ── 统计行 ── */
.repo-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 14px 0 0;
  font-size: .8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
/* 语言圆点 */
.repo-stats .lang {
  color: var(--text-secondary);
  font-weight: 550;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 12px;
  position: relative;
  font-size: .8rem;
}
.repo-stats .lang::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot, #8b949e);
  flex: 0 0 auto;
  box-shadow: 0 0 6px color-mix(in srgb, var(--dot, #8b949e) 40%, transparent);
}
.repo-stats .lang::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 13px;
  transform: translateY(-50%);
  background: var(--border);
}
/* 语言颜色映射 */
.lang[data-lang="JavaScript"] { --dot: #f1e05a; }
.lang[data-lang="TypeScript"] { --dot: #3178c6; }
.lang[data-lang="Python"] { --dot: #3572a5; }
.lang[data-lang="Go"] { --dot: #00add8; }
.lang[data-lang="Rust"] { --dot: #dea584; }
.lang[data-lang="Java"] { --dot: #b07219; }
.lang[data-lang="C++"] { --dot: #f34b7d; }
.lang[data-lang="C"] { --dot: #555; }
.lang[data-lang="C#"] { --dot: #178600; }
.lang[data-lang="Ruby"] { --dot: #701516; }
.lang[data-lang="PHP"] { --dot: #4f5d95; }
.lang[data-lang="Swift"] { --dot: #f05138; }
.lang[data-lang="Kotlin"] { --dot: #a97bff; }
.lang[data-lang="Dart"] { --dot: #00b4ab; }
.lang[data-lang="Shell"] { --dot: #89e051; }
.lang[data-lang="HTML"] { --dot: #e34c26; }
.lang[data-lang="CSS"] { --dot: #563d7c; }
.lang[data-lang="Vue"] { --dot: #41b883; }
.lang[data-lang="Jupyter Notebook"] { --dot: #da5b0b; }
.lang[data-lang="Lua"] { --dot: #000080; }
.lang[data-lang="Zig"] { --dot: #ec915c; }

/* Star / Fork 统计 */
.repo-stats .stat {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.repo-stats .stat .ic {
  fill: currentColor;
  flex: 0 0 auto;
  opacity: .7;
}
/* 仅数字用等宽体：中文标签（今日新增等）保持无衬线，避免中西字体割裂 */
.repo-stats .stat .num {
  font-family: var(--font-mono);
}

/* 周期新增 Star：与总 star / fork 保持一致的普通样式 */
.repo-stats .period-star {
  margin-left: auto;
}

/* ── AI 讲解 ── */
.repo-explain {
  margin-top: 16px;
  padding: 14px 16px 15px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
@media (hover: hover) {
  .repo-card:hover .repo-explain {
    background: var(--surface-3);
  }
}
.repo-explain p {
  margin: 8px 0 0;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.explain-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--accent);
}
.explain-label::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--accent);
  opacity: .2;
  flex: 0 0 auto;
}

/* ── 归档页 ── */
.archive h1 {
  font-size: 1.4rem;
  letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}
.archive-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.archive-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--surface);
  transition: all var(--transition);
}
.archive-list a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.archive-list a:hover { color: var(--accent); }
.archive-meta {
  color: var(--muted);
  font-size: .8rem;
  font-variant-numeric: tabular-nums;
}
.empty {
  color: var(--muted);
  padding: 40px 0;
  text-align: center;
  font-size: .92rem;
}

/* ── 关于 / 内容页 ── */
.prose section {
  margin-top: 28px;
}
.prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 0 0 10px;
}
.prose p {
  color: var(--text-soft, var(--text));
  line-height: 1.8;
  margin: 0 0 12px;
}
.prose a {
  color: var(--accent);
}
.prose a:hover {
  text-decoration: underline;
}
.prose .steps,
.prose .notes {
  margin: 0;
  padding-left: 1.3em;
  color: var(--text-soft, var(--text));
  line-height: 1.8;
}
.prose .steps li,
.prose .notes li {
  margin-bottom: 8px;
}

/* ── 页脚 ── */
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 8px;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-links .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .5;
}
.site-footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 20px 48px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
}
.site-footer p { margin: 0; }

/* ── 响应式：平板及以上 ── */
@media (min-width: 640px) {
  .header-inner { padding: 16px 24px; }
  .container { padding: 24px 24px 72px; }
  .board-head h1 { font-size: 1.8rem; }
  .board-head { margin-bottom: 32px; padding-bottom: 24px; }
  .archive h1 { font-size: 1.6rem; }
  .repo-card { padding: 20px 24px; }
  .repo-name { font-size: 1.1rem; }
  .repo-list { gap: 12px; }
  .repo-desc-zh { font-size: .94rem; }
  body { font-size: 16px; }
  .tab-label-full { display: inline; }
  .tab-label-short { display: none; }
}

/* ── 响应式：窄屏 ── */
@media (max-width: 400px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 8px;
  }
  .nav { width: 100%; }
  .container { padding: 14px 14px 48px; }
  .repo-card { padding: 14px 16px; }
  .repo-explain { padding: 12px 14px; }
  .board-head h1 { font-size: 1.35rem; }
  .repo-stats .period-star { margin-left: 0; }
}

/* ── 减弱动效 ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}