/* ==========================================================================
   羞羞漫画 · 全站样式表
   纸张白底 / 书脊色题材标识 / 封面陈列为主角
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. base —— 变量、重置、排版基线
   -------------------------------------------------------------------------- */
:root {
  --paper: #ffffff;
  --paper-soft: #f7f4ef;
  --ink: #1f2430;
  --ink-soft: #5a6273;
  --ink-faint: #8b93a3;
  --spine-red: #e8543f;
  --spine-blue: #2f6f8f;
  --rank-gold: #f0c24b;
  --line: #e4e0d8;
  --line-strong: #d3cec4;
  --shadow-card: 0 1px 2px rgba(31, 36, 48, 0.05), 0 6px 16px rgba(31, 36, 48, 0.06);
  --shadow-lift: 0 2px 4px rgba(31, 36, 48, 0.07), 0 12px 24px rgba(31, 36, 48, 0.1);
  --radius: 6px;
  --radius-sm: 4px;
  --font-sans: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", "JetBrains Mono", Consolas, "Liberation Mono", Menlo, monospace;
  --shell: 1120px;
  --content: 720px;
  --aside: 280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

p {
  margin: 0;
}

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--spine-blue);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--spine-red);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--spine-blue);
  outline-offset: 2px;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   2. layout —— 全站骨架：页头、主导航、主容器、页脚
   -------------------------------------------------------------------------- */

/* 2.1 页头与事实条 */
.site-factbar {
  margin: 0;
  padding: 8px 20px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line-strong);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 12px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--spine-red);
  box-shadow: inset -6px 0 0 rgba(255, 255, 255, 0.32);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.9), 0 12px 0 rgba(255, 255, 255, 0.9);
}

.brand-text {
  font-size: 20px;
  letter-spacing: 0;
}

/* 2.2 主导航 */
.site-nav {
  flex: 1 1 auto;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
}

.nav-list li {
  display: block;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 15px;
  white-space: nowrap;
}

.nav-list a:hover {
  background: var(--paper-soft);
  color: var(--ink);
}

.nav-list a.is-current {
  background: var(--paper-soft);
  color: var(--spine-red);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--spine-red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* 2.3 主容器 */
.site-main {
  display: block;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.inner-main {
  padding-top: 20px;
}

/* 2.4 页脚 */
.site-footer {
  margin-top: 24px;
  background: var(--paper-soft);
  border-top: 1px solid var(--line-strong);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 1fr));
  gap: 28px 24px;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 36px 20px 24px;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.footer-desc {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.footer-group {
  min-width: 0;
}

.footer-title {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.footer-group ul {
  display: grid;
  gap: 6px;
}

.footer-group a {
  display: inline-block;
  padding: 3px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-group a:hover {
  color: var(--spine-red);
}

.footer-copy {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px 20px 26px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   3. components —— 通用组件：面包屑、页标题、按钮、卡片、标签
   -------------------------------------------------------------------------- */

/* 3.1 面包屑与页面标题区 */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.6;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--spine-red);
}

.breadcrumb-sep {
  color: var(--line-strong);
}

.breadcrumb-current {
  color: var(--ink-faint);
}

.page-header {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line);
}

.page-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
}

.page-description {
  margin-top: 10px;
  max-width: var(--content);
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* 3.2 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}

.btn-primary {
  background: var(--spine-red);
  border-color: var(--spine-red);
  color: #ffffff;
}

.btn-primary:hover {
  background: #d3452f;
  border-color: #d3452f;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--paper);
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--spine-blue);
  color: var(--spine-blue);
  transform: translateY(-1px);
}

/* 3.3 更多链接 */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  color: var(--spine-blue);
  font-size: 14px;
  font-weight: 600;
}

.link-more::after {
  content: "→";
  font-size: 13px;
}

.link-more:hover {
  color: var(--spine-red);
}

/* 3.4 通用区块标题 */
.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: 22px;
  font-weight: 600;
}

.section-head .section-desc {
  margin-top: 6px;
  max-width: var(--content);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
}

.section-intro,
.section-note {
  margin-top: 8px;
  max-width: var(--content);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

/* 3.5 题材编号与状态标签 */
.tema-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 6px;
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--spine-red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.tema-active {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.tema-active.is-high {
  background: rgba(232, 84, 63, 0.1);
  color: var(--spine-red);
}

.tema-active.is-mid {
  background: rgba(47, 111, 143, 0.1);
  color: var(--spine-blue);
}

.tema-active.is-low {
  background: var(--paper-soft);
  color: var(--ink-faint);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.tag-hot {
  background: rgba(232, 84, 63, 0.1);
  color: var(--spine-red);
}

.tag-mid {
  background: rgba(47, 111, 143, 0.1);
  color: var(--spine-blue);
}

.tag-low {
  background: var(--paper-soft);
  color: var(--ink-faint);
}

/* 3.6 字段口径说明块（首页 / 更新页共用） */
.field-list {
  display: grid;
  gap: 10px;
}

.field-list dt {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.field-list dd {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.field-key {
  color: var(--ink);
  font-weight: 600;
}

.field-note {
  margin-top: 8px;
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.7;
}

.field-example-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.field-example-list li {
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

/* 3.7 两栏说明区（题材页 / 专题页复用） */
.two-col,
.maint-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.col,
.maint-col {
  min-width: 0;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.col-title,
.maint-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.col p,
.maint-example {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.col p + p,
.maint-example + .maint-example {
  margin-top: 8px;
}

.sample-list {
  display: grid;
  gap: 8px;
}

.sample-list li {
  padding-left: 12px;
  border-left: 2px solid var(--spine-red);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.sample-note {
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.7;
}

.maint-list {
  display: grid;
  gap: 8px;
}

.maint-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.maint-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spine-blue);
}

/* --------------------------------------------------------------------------
   4. pages —— 首页与各内页模块
   -------------------------------------------------------------------------- */

/* 4.1 首页 */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--line);
}

.hero-intro {
  min-width: 0;
}

.hero-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-lead {
  margin-top: 14px;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.hero-figure {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-soft);
}

.hero-figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero-figure figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.hero-catalog {
  min-width: 0;
}

.hero-catalog-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.hero-catalog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-catalog-list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.hero-catalog-list a:hover {
  border-color: var(--spine-red);
  color: var(--spine-red);
}

.home-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.home-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

/* 首页 · 题材分类总览 */
.tema-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.tema-row {
  display: grid;
  grid-template-columns: 44px minmax(140px, 200px) minmax(0, 1fr) 110px 96px;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.tema-row:hover {
  background: var(--paper-soft);
}

.tema-name {
  font-size: 16px;
  font-weight: 600;
}

.tema-name a {
  color: var(--ink);
}

.tema-name a:hover {
  color: var(--spine-red);
}

.tema-scope {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.tema-count {
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: right;
}

/* 首页 · 最近更新与追更日期 */
.update-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 28px;
  align-items: start;
}

.update-main {
  min-width: 0;
}

.date-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.date-picker label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.date-picker input[type="date"] {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
}

.date-hint {
  flex: 1 1 200px;
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.6;
}

.update-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.update-item {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 96px 120px 72px;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}

.update-work {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.update-tema,
.update-chapter {
  color: var(--ink-soft);
  font-size: 13px;
}

.update-tag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.update-tag.is-new {
  background: rgba(232, 84, 63, 0.1);
  color: var(--spine-red);
}

.update-tag.is-rest {
  background: var(--paper-soft);
  color: var(--ink-faint);
}

.update-more,
.rank-more {
  margin-top: 14px;
}

.update-aside {
  min-width: 0;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.update-aside h3 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* 首页 · 人气榜单速览 */
.rank-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.rank-item {
  display: grid;
  grid-template-columns: 44px minmax(140px, 200px) 96px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.rank-item:hover {
  background: var(--paper-soft);
}

.rank-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.rank-item:nth-child(-n + 3) .rank-no {
  background: var(--rank-gold);
  border-color: var(--rank-gold);
  color: #4a3608;
}

.rank-name {
  font-size: 16px;
  font-weight: 600;
}

.rank-name a {
  color: var(--ink);
}

.rank-name a:hover {
  color: var(--spine-red);
}

.rank-tema,
.rank-meta {
  color: var(--ink-soft);
  font-size: 13px;
}

.rank-reason {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* 首页 · 专题合集入口 */
.zhuanti-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.zhuanti-item {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 8px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.zhuanti-item:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
}

.zhuanti-figure {
  min-width: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-soft);
}

.zhuanti-figure img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.zhuanti-name {
  font-size: 16px;
  font-weight: 600;
}

.zhuanti-name a {
  color: var(--ink);
}

.zhuanti-name a:hover {
  color: var(--spine-red);
}

.zhuanti-desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.zhuanti-count {
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 13px;
}

/* 首页 · 站内栏目索引 */
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.index-item {
  min-width: 0;
  padding: 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.index-item h3 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.index-item h3 a {
  color: var(--ink);
}

.index-item h3 a:hover {
  color: var(--spine-red);
}

.index-item p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* 4.2 内页通用 · 双栏布局 */
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--content)) minmax(220px, var(--aside));
  gap: 32px;
  align-items: start;
}

.sidebar-left .page-layout {
  grid-template-columns: minmax(220px, var(--aside)) minmax(0, var(--content));
}

.page-content {
  min-width: 0;
}

.page-sidebar {
  min-width: 0;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar-title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.sidebar-anchor-list {
  display: grid;
  gap: 4px;
}

.sidebar-anchor-list a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 14px;
}

.sidebar-anchor-list a:hover {
  background: var(--paper);
  color: var(--spine-red);
}

.sidebar-links {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.sidebar-subtitle {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-links ul {
  display: grid;
  gap: 4px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 14px;
}

.sidebar-links a:hover {
  background: var(--paper);
  color: var(--spine-blue);
}

/* 内页通用 · 区块 */
.section {
  margin-bottom: 34px;
}

.section:last-child {
  margin-bottom: 0;
}

/* 4.3 题材分类页 */
.tema-index-list {
  display: grid;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.tema-index-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(200px, 260px);
  align-items: start;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.tema-index-row:hover {
  background: var(--paper-soft);
}

.tema-info {
  min-width: 0;
}

.tema-info .tema-name {
  margin-bottom: 6px;
}

.tema-info p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.tema-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-content: start;
  font-size: 13px;
}

.tema-meta dt {
  color: var(--ink-faint);
}

.tema-meta dd {
  color: var(--ink-soft);
}

.tema-shelf-group {
  margin-top: 22px;
}

.shelf-title {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
}

.cover-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cover-card {
  min-width: 0;
}

.cover-link {
  display: block;
  color: var(--ink);
}

.cover-figure {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cover-link:hover .cover-figure {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.cover-figure img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.cover-name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.cover-caption {
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.5;
}

.cover-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  min-height: 20px;
  padding: 0 6px;
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.2;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.guide-item {
  min-width: 0;
  padding: 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guide-name {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}

.guide-item p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* 4.4 最近更新页 */
.update-picker {
  margin-bottom: 34px;
}

.picker-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  margin-top: 16px;
  align-items: start;
}

.picker-control {
  min-width: 0;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.picker-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.picker-input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
}

.picker-hint {
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.7;
}

.picker-note {
  min-width: 0;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.picker-note-title {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
}

.picker-note p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.picker-note p + p {
  margin-top: 8px;
}

.update-log .section-desc {
  margin-top: 8px;
  max-width: var(--content);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.log-day {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.log-day-title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--spine-blue);
}

.log-list {
  display: grid;
  gap: 12px;
}

.log-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 80px;
  align-items: start;
  gap: 14px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.log-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.log-cover {
  min-width: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-soft);
}

.log-cover img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.log-body {
  min-width: 0;
}

.log-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.log-meta {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.log-note {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.log-tag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.log-tag-new {
  background: rgba(232, 84, 63, 0.1);
  color: var(--spine-red);
}

.log-more {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 16px;
}

.log-more a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--spine-blue);
  font-size: 14px;
  font-weight: 600;
}

.log-more a:hover {
  color: var(--spine-red);
}

.field-guide {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.field-col {
  min-width: 0;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field-col-title {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

/* 4.5 人气榜单页 */
.board-section,
.board-rule,
.board-cross {
  margin-bottom: 34px;
}

.board-section > h2,
.board-rule > h2,
.board-cross > h2 {
  font-size: 22px;
  font-weight: 600;
}

.board-section .section-note,
.board-cross .section-note {
  margin-top: 8px;
  max-width: var(--content);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.board-section .rank-list {
  margin-top: 18px;
}

.board-section .rank-item {
  grid-template-columns: 44px 64px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 16px 4px;
}

.rank-cover {
  min-width: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-soft);
}

.rank-cover img {
  width: 100%;
  height: 88px;
  object-fit: cover;
}

.rank-body {
  min-width: 0;
}

.rank-body .rank-name {
  margin-bottom: 4px;
}

.rank-body .rank-meta {
  color: var(--ink-soft);
  font-size: 13px;
}

.rank-body .rank-reason {
  margin-top: 6px;
}

.rank-state,
.rank-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  margin-right: 6px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.rank-state {
  background: var(--paper-soft);
  color: var(--ink-soft);
}

.rank-tag {
  background: rgba(47, 111, 143, 0.1);
  color: var(--spine-blue);
}

.rule-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.rule-col {
  min-width: 0;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rule-col h3 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.rule-list {
  display: grid;
  gap: 8px;
}

.rule-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.rule-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spine-red);
}

.cross-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cross-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
}

.cross-tags a:hover {
  border-color: var(--spine-red);
  color: var(--spine-red);
}

.cross-more {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 14px;
}

.cross-more a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--spine-blue);
  font-size: 14px;
  font-weight: 600;
}

.cross-more a:hover {
  color: var(--spine-red);
}

/* 4.6 专题合集页 */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.topic-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.topic-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.topic-cover {
  min-width: 0;
  background: var(--paper-soft);
}

.topic-cover img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.topic-body {
  min-width: 0;
  padding: 14px 16px 16px;
}

.topic-name {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

.topic-theme {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.topic-count {
  margin-top: 8px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 13px;
}

.order-block {
  margin-top: 20px;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.order-heading {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.order-list {
  display: grid;
  gap: 10px;
}

.order-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.order-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--spine-red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.order-body {
  min-width: 0;
}

.order-name {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.order-meta {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.related-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
}

.related-links a:hover {
  border-color: var(--spine-blue);
  color: var(--spine-blue);
}

/* 4.7 阅读说明页 */
.section-define .define-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 28px;
  align-items: start;
  margin-top: 16px;
}

.define-main {
  min-width: 0;
}

.define-sentence {
  padding: 16px 18px;
  background: var(--paper-soft);
  border-left: 3px solid var(--spine-red);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.define-main p + p {
  margin-top: 12px;
}

.define-main > p:not(.define-sentence) {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.define-figure {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-soft);
}

.define-figure img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.define-figure figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.section-field .field-list {
  margin-top: 16px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.field-item {
  border-bottom: 1px solid var(--line);
}

.field-term {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.field-term::-webkit-details-marker {
  display: none;
}

.field-term::after {
  content: "+";
  margin-left: auto;
  color: var(--spine-blue);
  font-family: var(--font-mono);
  font-size: 16px;
}

.field-item[open] .field-term::after {
  content: "−";
}

.field-item[open] .field-term {
  color: var(--spine-red);
}

.field-body {
  padding: 0 4px 14px;
}

.field-meaning {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.field-example {
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--paper-soft);
  border-radius: var(--radius-sm);
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.7;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.step-item {
  min-width: 0;
  padding: 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: var(--radius-sm);
  background: var(--spine-red);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.step-name {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}

.step-desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.step-desc a {
  color: var(--spine-blue);
}

.step-desc a:hover {
  color: var(--spine-red);
}

.step-result {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--line-strong);
  color: var(--ink-faint);
  font-size: 13px;
  line-height: 1.7;
}

.feedback-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.feedback-column {
  min-width: 0;
  padding: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feedback-subtitle {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.feedback-scope {
  display: grid;
  gap: 8px;
}

.feedback-scope li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.feedback-scope li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spine-blue);
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.boundary-card {
  min-width: 0;
  padding: 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.boundary-name {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}

.boundary-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* 4.8 404 页 */
.error-main {
  padding-top: 48px;
}

.error-panel {
  max-width: 620px;
  padding: 32px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.error-code {
  color: var(--spine-red);
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.error-panel h1 {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 600;
}

.error-text {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.error-links {
  margin-top: 36px;
}

.error-links h2 {
  font-size: 20px;
  font-weight: 600;
}

.error-link-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.error-link-list a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
}

.error-link-list a:hover {
  border-color: var(--spine-red);
  color: var(--spine-red);
}

/* --------------------------------------------------------------------------
   5. responsive —— 960px / 640px 断点
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    flex: 1 1 100%;
  }

  .nav-list {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    padding: 10px 0 4px;
    border-top: 1px solid var(--line);
  }

  .nav-list.is-open {
    display: grid;
  }

  .nav-list a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero-title {
    font-size: 26px;
  }

  .update-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .tema-row {
    grid-template-columns: 40px minmax(0, 1fr) 96px;
    gap: 10px 12px;
  }

  .tema-row .tema-scope {
    grid-column: 2 / -1;
  }

  .tema-row .tema-count {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
  }

  .tema-row .tema-active {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .rank-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .rank-item .rank-tema {
    grid-column: 2;
  }

  .rank-item .rank-reason {
    grid-column: 2;
  }

  .page-layout,
  .sidebar-left .page-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .page-sidebar {
    order: 2;
  }

  .page-content {
    order: 1;
  }

  .cover-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-grid,
  .guide-list,
  .boundary-grid,
  .related-links,
  .error-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-factbar {
    padding: 8px 16px;
    font-size: 12px;
  }

  .header-inner {
    padding: 10px 16px;
    gap: 10px 16px;
  }

  .brand-text {
    font-size: 18px;
  }

  .site-main {
    padding: 20px 16px 44px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-description {
    font-size: 14px;
  }

  .section-title,
  .section-head h2,
  .board-section > h2,
  .board-rule > h2,
  .board-cross > h2 {
    font-size: 19px;
  }

  .hero-title {
    font-size: 23px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .hero-figure img {
    height: 180px;
  }

  .hero-catalog-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-section {
    padding: 26px 0;
  }

  .zhuanti-grid,
  .topic-grid,
  .two-col,
  .maint-columns,
  .field-grid,
  .rule-columns,
  .feedback-layout,
  .define-layout,
  .picker-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .zhuanti-figure img,
  .topic-cover img {
    height: 132px;
  }

  .update-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 10px;
  }

  .update-item .update-work {
    grid-column: 1;
  }

  .update-item .update-tag {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .update-item .update-tema,
  .update-item .update-chapter {
    grid-column: 1 / -1;
  }

  .tema-index-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .tema-meta {
    grid-column: 2;
  }

  .log-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px 12px;
  }

  .log-cover img {
    height: 84px;
  }

  .log-tag {
    grid-column: 2;
    justify-self: start;
  }

  .board-section .rank-item {
    grid-template-columns: 36px 56px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-cover img {
    height: 76px;
  }

  .cover-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cover-figure img {
    height: 112px;
  }

  .index-grid,
  .guide-list,
  .boundary-grid,
  .related-links,
  .error-link-list,
  .step-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .error-panel {
    padding: 22px 18px;
  }

  .error-code {
    font-size: 32px;
  }

  .error-panel h1 {
    font-size: 22px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 28px 16px 20px;
  }

  .footer-copy {
    padding: 12px 16px 22px;
  }
}

/* 6. 动效增强 —— 仅作为可见内容的补充，不隐藏任何初始内容 */
@media (prefers-reduced-motion: no-preference) {
  .home-section,
  .section {
    animation: rise-in 0.4s ease-out both;
  }

  .home-section:nth-of-type(n + 3),
  .section:nth-of-type(n + 3) {
    animation-delay: 0.06s;
  }

  @keyframes rise-in {
    from {
      transform: translateY(6px);
    }
    to {
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
