/* ============================================================
   BASE — 全局基础样式
   ============================================================ */
:root {
  --color-page-bg: #FFFFFF;
  --color-section-bg: #F6F7F8;
  --color-ink: #23272F;
  --color-accent: #FF7A45;
  --color-accent-soft: #FAEFE5;
  --color-info-blue: #2D6A9F;
  --color-border: #E8E8EC;
  --color-text-subtle: #6B7280;
  --color-text-light: #9CA3AF;
  --radius-card: 8px;
  --radius-tag: 999px;
  --shadow-card: 0 1px 3px rgba(35, 39, 47, 0.06);
  --shadow-card-hover: 0 8px 20px rgba(35, 39, 47, 0.10);
  --container-width: 1160px;
  --font-stack: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
  background-color: var(--color-page-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-info-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-ink);
}

h1 { font-size: 28px; line-height: 1.3; }
h2 { font-size: 22px; line-height: 1.4; }
h3 { font-size: 18px; line-height: 1.4; }
h4 { font-size: 16px; line-height: 1.5; }

p {
  line-height: 1.7;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   LAYOUT — 布局骨架（页头 / 页脚 / 主容器 / 面包屑）
   ============================================================ */

/* ---- 页头 ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-page-bg);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo:hover {
  color: var(--color-accent);
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav .nav-list li a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav .nav-list li a:hover {
  color: var(--color-accent);
  background-color: rgba(255, 122, 69, 0.08);
}

.site-nav .nav-list li a.is-current {
  color: var(--color-accent);
  font-weight: 700;
  background-color: rgba(255, 122, 69, 0.08);
}

/* 汉堡按钮：桌面默认隐藏 */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: 6px;
  background-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---- 主内容容器 ---- */
.site-main {
  padding-top: 64px;
}

.home-main {
  overflow: visible;
}

.inner-main {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* ---- 面包屑 ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-info-blue);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb-sep {
  color: var(--color-text-light);
}

.breadcrumb-current {
  color: var(--color-ink);
  font-weight: 500;
}

/* ---- 页面标题区 ---- */
.page-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.page-header .page-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header .page-description {
  font-size: 16px;
  color: var(--color-text-subtle);
  max-width: 760px;
  line-height: 1.7;
}

/* ---- 页脚 ---- */
.site-footer {
  background-color: var(--color-section-bg);
  border-top: 1px solid var(--color-border);
  padding-top: 40px;
  padding-bottom: 0;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 12px;
}

.footer-links li a {
  display: inline-block;
  padding: 4px 0;
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.footer-links li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 24px 28px;
  border-top: 1px solid var(--color-border);
  margin-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.footer-bottom .footer-note {
  margin-bottom: 4px;
}

.footer-bottom .footer-feedback-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--color-info-blue);
}

.footer-bottom .footer-feedback-link:hover {
  color: var(--color-accent);
}

/* ============================================================
   COMPONENTS — 通用组件
   ============================================================ */

/* ---- 通用文本链接 ---- */
.text-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-info-blue);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  padding: 2px 0;
}

.text-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.text-link-secondary {
  color: var(--color-accent);
  margin-left: 16px;
}

.text-link-secondary:hover {
  color: var(--color-info-blue);
  border-bottom-color: var(--color-info-blue);
}

/* ---- 主按钮 ---- */
.btn-primary {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  min-height: 44px;
  line-height: 1.4;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #E8622E;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  min-height: 44px;
  line-height: 1.4;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #E8622E;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---- 区块标题行 ---- */
.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.section-heading-row h2 {
  font-size: 22px;
  font-weight: 700;
}

.section-more-link {
  font-size: 14px;
  color: var(--color-info-blue);
  font-weight: 500;
  white-space: nowrap;
}

.section-more-link:hover {
  color: var(--color-accent);
}

.section-intro {
  font-size: 15px;
  color: var(--color-text-subtle);
  margin-bottom: 20px;
  max-width: 720px;
}

/* ---- 区块标题（通用） ---- */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-ink);
}

/* ============================================================
   PAGES — 页面级样式
   ============================================================ */

/* ============================================================
   首页 index.html
   ============================================================ */

.hero-section {
  background-color: var(--color-page-bg);
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.hero-kicker {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.hero-copy h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero-lead {
  font-size: 16px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
}

.genre-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.genre-tag {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(45, 106, 159, 0.08);
  border: 1px solid rgba(45, 106, 159, 0.18);
  border-radius: var(--radius-tag);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-info-blue);
  min-height: 40px;
  line-height: 1.4;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.genre-tag:hover {
  background-color: var(--color-info-blue);
  color: #FFFFFF;
  border-color: var(--color-info-blue);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.hero-visual figcaption {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: right;
  margin-top: 8px;
  line-height: 1.5;
}

/* ---- 编辑精选 ---- */
.editor-picks-section {
  background-color: var(--color-section-bg);
  padding: 40px 24px;
}

.editor-picks-section .section-heading-row {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.editor-picks-section .section-intro {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.editor-picks-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pick-card {
  background-color: var(--color-page-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pick-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pick-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pick-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pick-note {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.pick-card-body .text-link {
  align-self: flex-start;
}

/* ---- 最近更新 与 人气榜 双栏 ---- */
.update-rank-section {
  padding: 40px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.two-column-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}

.recent-updates-col h3,
.popular-rank-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.update-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.update-list li:last-child {
  border-bottom: none;
}

.update-date {
  font-size: 13px;
  color: var(--color-text-light);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.update-list li a {
  font-size: 15px;
  color: var(--color-ink);
  line-height: 1.5;
}

.update-list li a:hover {
  color: var(--color-accent);
}

.inline-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-info-blue);
}

.inline-link:hover {
  color: var(--color-accent);
}

.rank-note {
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-bottom: 12px;
}

.rank-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.rank-number {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  min-width: 24px;
  font-variant-numeric: tabular-nums;
}

.rank-name {
  font-size: 14px;
  color: var(--color-ink);
  min-width: 72px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-bar-wrap {
  flex: 1;
  height: 8px;
  background-color: #E8E8EC;
  border-radius: 4px;
  overflow: hidden;
}

.rank-bar-wrap::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: 4px;
  background-color: var(--color-accent);
  width: 0;
}

.rank-item:nth-child(1) .rank-bar-wrap::before { width: 96%; }
.rank-item:nth-child(2) .rank-bar-wrap::before { width: 82%; }
.rank-item:nth-child(3) .rank-bar-wrap::before { width: 68%; }
.rank-item:nth-child(4) .rank-bar-wrap::before { width: 51%; }
.rank-item:nth-child(5) .rank-bar-wrap::before { width: 38%; }

/* ---- 题材导览 ---- */
.genre-guide-section {
  background-color: var(--color-page-bg);
  padding: 40px 24px;
}

.genre-guide-section .section-heading-row {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.genre-guide-section .section-intro {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.genre-guide-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.genre-guide-card {
  display: flex;
  gap: 16px;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 16px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.genre-guide-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.genre-guide-card img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.genre-guide-body {
  flex: 1;
  min-width: 0;
}

.genre-guide-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.genre-guide-body p {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 8px;
}

.genre-guide-body .text-link {
  font-size: 13px;
}

/* ---- 新读者路径 ---- */
.reader-path-section {
  background-color: var(--color-section-bg);
  padding: 40px 24px;
}

.reader-path-section > h2 {
  max-width: var(--container-width);
  margin: 0 auto 8px;
  font-size: 22px;
}

.path-cards {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.path-card {
  background-color: var(--color-page-bg);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.path-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.path-card p {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.path-card .btn-primary {
  align-self: flex-start;
  padding: 8px 20px;
  font-size: 14px;
  min-height: 40px;
}

/* ---- 相关链接导航 ---- */
.related-links {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.related-links-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
}

.related-links-item {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-tag);
  font-size: 13px;
  color: var(--color-info-blue);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.related-links-item:hover {
  background-color: var(--color-info-blue);
  color: #FFFFFF;
}

/* ============================================================
   漫画书库 mmmh/catalog.html
   ============================================================ */

.catalog-intro {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 36px;
}

.catalog-intro .section-title {
  margin-bottom: 8px;
}

.catalog-intro p {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-top: 8px;
}

.genre-section {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.genre-section:last-of-type {
  border-bottom: none;
}

.genre-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.genre-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 1em;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.genre-desc {
  font-size: 15px;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
  max-width: 720px;
}

.genre-cover-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.cover-item {
  margin: 0;
  background-color: var(--color-page-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cover-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.cover-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cover-item figcaption {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.4;
}

.genre-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-subtle);
  margin-bottom: 8px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4CAF50;
  flex-shrink: 0;
}

.genre-section p .text-link {
  font-size: 14px;
}

.collection-note {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-top: 8px;
}

.collection-note .section-title {
  margin-bottom: 8px;
}

.collection-note p {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-top: 8px;
}

/* ============================================================
   编辑精选 mmmh/editorial.html
   ============================================================ */

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  background-color: var(--color-accent-soft);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-bottom: 48px;
  align-items: center;
}

.feature-media {
  margin: 0;
}

.feature-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.feature-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.feature-content .section-title {
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-bottom: 12px;
}

.feature-audience {
  margin: 16px 0;
}

.audience-row {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
}

.audience-row:last-child {
  border-bottom: none;
}

.audience-row dt {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-info-blue);
  flex-shrink: 0;
}

.audience-row dd {
  font-size: 14px;
  color: var(--color-ink);
  line-height: 1.6;
}

.feature-content .btn-primary {
  margin-top: 8px;
}

/* ---- 场景书单 ---- */
.scene-booklists {
  margin-bottom: 48px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading .section-title {
  margin-bottom: 4px;
}

.section-desc {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.scene-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scene-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 16px;
  transition: box-shadow 0.25s ease;
}

.scene-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.scene-thumb {
  margin: 0;
}

.scene-thumb img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.scene-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scene-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.scene-desc {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 10px;
}

.scene-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-info-blue);
  align-self: flex-start;
}

.scene-link:hover {
  color: var(--color-accent);
}

/* ---- 标签云 ---- */
.topic-cloud {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.tag-cloud-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud-list li a {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-page-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-tag);
  font-size: 14px;
  color: var(--color-info-blue);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tag-cloud-list li a:hover {
  background-color: var(--color-info-blue);
  color: #FFFFFF;
  border-color: var(--color-info-blue);
}

/* ---- 编者后记 ---- */
.editor-note {
  background-color: var(--color-accent-soft);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.note-inner .section-title {
  margin-bottom: 8px;
}

.note-text {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-top: 8px;
}

.note-text a {
  color: var(--color-info-blue);
  font-weight: 500;
}

.note-text a:hover {
  color: var(--color-accent);
}

/* ============================================================
   题材字典 mmmh/genres.html
   ============================================================ */

.genres-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 40px;
}

.intro-copy .section-title {
  margin-bottom: 8px;
}

.intro-copy p {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-top: 8px;
}

.intro-media {
  margin: 0;
}

.intro-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.intro-media figcaption {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: right;
  margin-top: 6px;
}

.genres-detail {
  margin-bottom: 48px;
}

.genres-detail > .section-title {
  margin-bottom: 24px;
}

.genre-entry {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.genre-entry:last-child {
  border-bottom: none;
}

.genre-entry-head {
  margin-bottom: 12px;
}

.genre-entry-head h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.genre-tagline {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 500;
}

.genre-entry-body {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.genre-thumb {
  margin: 0;
}

.genre-thumb img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}

.genre-text p {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-bottom: 12px;
}

.genre-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.genre-text ul {
  list-style: none;
  margin-bottom: 12px;
}

.genre-text ul li {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.genre-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.genre-text p strong {
  color: var(--color-ink);
  font-weight: 600;
}

.genre-text .text-link {
  margin-top: 4px;
}

/* ---- 横向比较表 ---- */
.genres-comparison {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.genres-comparison .section-title {
  margin-bottom: 8px;
}

.comparison-intro {
  font-size: 15px;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-page-bg);
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.6;
}

.comparison-table thead th {
  background-color: var(--color-ink);
  color: #FFFFFF;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody th {
  font-weight: 600;
  color: var(--color-ink);
  white-space: nowrap;
  background-color: #F9FAFB;
}

.comparison-note {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-top: 12px;
}

/* ---- 选择建议 ---- */
.genres-advice {
  margin-bottom: 40px;
}

.genres-advice > .section-title {
  margin-bottom: 8px;
}

.genres-advice > p {
  font-size: 15px;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
}

.advice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.advice-card {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 20px;
}

.advice-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.advice-card p {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.advice-closing {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
}

.advice-closing a {
  color: var(--color-info-blue);
  font-weight: 500;
}

.advice-closing a:hover {
  color: var(--color-accent);
}

/* ---- 侧栏 ---- */
.genres-aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.aside-card {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 20px;
}

.aside-card h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.aside-card p {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-list li a {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-page-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-tag);
  font-size: 13px;
  color: var(--color-info-blue);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tag-list li a:hover {
  background-color: var(--color-info-blue);
  color: #FFFFFF;
}

/* ============================================================
   更新周报 mmmh/update.html
   ============================================================ */

.weekly-intro {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 40px;
}

.weekly-intro p {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
}

.timeline-section {
  margin-bottom: 48px;
}

.timeline-section > h2 {
  margin-bottom: 24px;
}

.timeline-week {
  position: relative;
  padding-left: 0;
}

.timeline-week::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 20px;
  position: relative;
}

.timeline-date {
  text-align: right;
  padding-top: 12px;
  z-index: 1;
}

.date-day {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.date-note {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.4;
}

.timeline-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  background-color: var(--color-page-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 16px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.timeline-item:hover .timeline-card {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}

.timeline-item:hover .date-day {
  color: var(--color-accent);
}

.timeline-thumb {
  margin: 0;
}

.timeline-thumb img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.timeline-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-body p {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 6px;
}

.timeline-body a {
  font-size: 13px;
  color: var(--color-info-blue);
  font-weight: 500;
}

.timeline-body a:hover {
  color: var(--color-accent);
}

/* ---- 图例 ---- */
.timeline-legend {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 40px;
}

.timeline-legend > h2 {
  margin-bottom: 4px;
  font-size: 18px;
}

.legend-desc {
  font-size: 14px;
  color: var(--color-text-subtle);
  margin-bottom: 12px;
}

.legend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-subtle);
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot-feature {
  background-color: var(--color-accent);
}

.legend-dot-genre {
  background-color: var(--color-info-blue);
}

.legend-dot-rank {
  background-color: #F5A623;
}

.legend-item strong {
  font-weight: 600;
  color: var(--color-ink);
}

/* ---- 往期入口 ---- */
.archive-links {
  margin-bottom: 16px;
}

.archive-links > h2 {
  margin-bottom: 8px;
}

.archive-links > p {
  font-size: 15px;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
}

.archive-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.archive-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--color-section-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-info-blue);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.archive-link:hover {
  background-color: var(--color-info-blue);
  color: #FFFFFF;
  border-color: var(--color-info-blue);
}

/* ============================================================
   阅读助手 mmmh/guide.html
   ============================================================ */

.page-layout {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.page-content {
  min-width: 0;
  min-width: 520px;
}

.page-aside {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- 新手路径 ---- */
.guide-path-section {
  margin-bottom: 40px;
}

.section-heading .section-title {
  margin-bottom: 4px;
}

.section-heading p {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.6;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.path-step-card {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 20px;
  position: relative;
  transition: box-shadow 0.25s ease;
}

.path-step-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.step-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-bottom: 10px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-text {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 10px;
}

.path-step-card .text-link {
  font-size: 13px;
}

/* ---- FAQ ---- */
.faq-section {
  margin-bottom: 40px;
}

.faq-list {
  margin-top: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  list-style: none;
  min-height: 44px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] summary {
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-answer {
  padding: 0 4px 16px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
}

/* ---- 设备建议 ---- */
.device-section {
  margin-bottom: 16px;
}

.device-card {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 20px;
  margin-top: 16px;
}

.device-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.device-item {
  text-align: center;
  padding: 12px 8px;
  background-color: var(--color-page-bg);
  border-radius: 6px;
}

.device-item .device-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 4px;
}

.device-item p {
  font-size: 13px;
  color: var(--color-text-subtle);
  line-height: 1.5;
}

.device-figure {
  margin: 0;
}

.device-figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.device-figure figcaption {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 6px;
}

/* ---- 侧栏 ---- */
.aside-card {
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 20px;
}

.aside-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.aside-card p {
  font-size: 14px;
  color: var(--color-text-subtle);
  line-height: 1.6;
  margin-bottom: 10px;
}

.aside-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-info-blue);
}

.aside-link:hover {
  color: var(--color-accent);
}

.aside-links li a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--color-info-blue);
  line-height: 1.6;
}

.aside-links li a:hover {
  color: var(--color-accent);
}

/* ============================================================
   404 页面 404.html
   ============================================================ */

.error-main {
  min-height: calc(100vh - 64px - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.error-panel {
  text-align: center;
  max-width: 520px;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-card);
  padding: 48px 40px;
}

.error-code {
  font-size: 72px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 12px;
}

.error-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.error-desc {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.7;
  margin-bottom: 24px;
}

.error-back-btn {
  display: inline-block;
  padding: 10px 28px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  min-height: 44px;
  line-height: 1.4;
  transition: background-color 0.2s ease;
}

.error-back-btn:hover {
  background-color: #E8622E;
  color: #FFFFFF;
}

.error-help {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-text-subtle);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.error-help a {
  color: var(--color-info-blue);
}

.error-help a:hover {
  color: var(--color-accent);
}

/* ============================================================
   RESPONSIVE — 响应式
   ============================================================ */

/* ---- 平板及以下 ---- */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
  }

  .page-content {
    min-width: 0;
  }

  .editorial-feature {
    grid-template-columns: 1fr;
  }

  .genres-intro {
    grid-template-columns: 1fr;
  }

  .genre-entry-body {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .genre-thumb img {
    width: 160px;
    height: 220px;
  }

  .genre-cover-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section {
    gap: 32px;
  }
}

/* ---- 移动端断点 768px ---- */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    height: 56px;
  }

  .site-main {
    padding-top: 56px;
  }

  .inner-main {
    padding: 24px 16px 48px;
  }

  .page-layout {
    padding: 24px 16px 48px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-content {
    min-width: 0;
  }

  .page-aside {
    margin-top: 32px;
    order: 2;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background-color: var(--color-page-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(35, 39, 47, 0.08);
  }

  .site-nav .nav-list {
    display: none;
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 0;
  }

  .site-nav .nav-list.is-open {
    display: flex;
  }

  .site-nav .nav-list li a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    min-height: 44px;
    line-height: 1.4;
    border-radius: 6px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 16px 28px;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .genre-quick-links {
    gap: 8px;
  }

  .editor-picks-section {
    padding: 32px 16px;
  }

  .editor-picks-grid {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pick-card {
    display: inline-block;
    width: 240px;
    margin-right: 12px;
    vertical-align: top;
    white-space: normal;
    scroll-snap-align: start;
  }

  .pick-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }

  .two-column-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .genre-guide-grid {
    grid-template-columns: 1fr;
  }

  .genre-guide-card img {
    width: 100px;
    height: 130px;
  }

  .path-cards {
    grid-template-columns: 1fr;
  }

  .path-card .btn-primary {
    align-self: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .footer-bottom {
    padding: 20px 16px 24px;
  }

  .footer-bottom p {
    font-size: 13px;
    text-align: center;
  }

  .related-links {
    padding: 16px 16px 32px;
  }

  /* 漫画书库 */
  .catalog-intro,
  .collection-note {
    padding: 20px;
  }

  .genre-cover-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cover-item img {
    height: 150px;
  }

  /* 编辑精选 */
  .editorial-feature {
    padding: 20px;
    gap: 20px;
  }

  .scene-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scene-thumb img {
    width: 100%;
    height: 200px;
  }

  .topic-cloud,
  .editor-note {
    padding: 20px;
  }

  /* 题材字典 */
  .genres-intro {
    padding: 20px;
    gap: 20px;
  }

  .genre-entry-body {
    grid-template-columns: 1fr;
  }

  .genre-thumb img {
    width: 100%;
    height: 220px;
  }

  .genres-comparison {
    padding: 20px;
  }

  .advice-grid {
    grid-template-columns: 1fr;
  }

  .genres-aside {
    grid-template-columns: 1fr;
  }

  /* 更新周报 */
  .timeline-week::before {
    left: 48px;
  }

  .timeline-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-thumb img {
    width: 100%;
    height: 160px;
  }

  .timeline-date {
    text-align: left;
    padding-top: 16px;
  }

  .date-day {
    font-size: 18px;
  }

  /* 阅读助手 */
  .path-steps {
    grid-template-columns: 1fr;
  }

  .device-list {
    grid-template-columns: 1fr;
  }

  .page-aside {
    order: 2;
  }

  /* 404 */
  .error-panel {
    padding: 32px 24px;
  }

  .error-code {
    font-size: 56px;
  }
}

/* ---- 小手机 390px ---- */
@media (max-width: 480px) {
  .brand-logo {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: 24px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .genre-tag {
    padding: 6px 14px;
    font-size: 13px;
    min-height: 36px;
  }

  .section-heading-row h2 {
    font-size: 20px;
  }

  .genre-guide-card {
    flex-direction: column;
  }

  .genre-guide-card img {
    width: 100%;
    height: 180px;
  }

  .two-column-panel {
    padding: 16px;
  }

  .update-list li {
    flex-direction: column;
    gap: 2px;
  }

  .update-date {
    font-size: 12px;
  }

  .rank-item {
    gap: 8px;
  }

  .rank-name {
    min-width: 56px;
    font-size: 13px;
  }

  .rank-number {
    font-size: 14px;
    min-width: 20px;
  }

  .timeline-week::before {
    left: 40px;
  }

  .timeline-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .timeline-date {
    text-align: left;
    padding-top: 16px;
  }

  .date-day {
    font-size: 16px;
  }

  .date-note {
    font-size: 11px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .timeline-thumb img {
    height: 140px;
  }

  .timeline-body h3 {
    font-size: 15px;
  }

  .timeline-body p {
    font-size: 13px;
  }

  .legend-list {
    flex-direction: column;
    gap: 10px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-description {
    font-size: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .genre-name {
    font-size: 20px;
  }

  .genre-desc {
    font-size: 14px;
  }

  .cover-item figcaption {
    font-size: 13px;
    padding: 8px 10px;
  }

  .cover-item img {
    height: 130px;
  }

  .genre-section {
    margin-bottom: 36px;
    padding-bottom: 28px;
  }

  .genre-cover-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .feature-text {
    font-size: 14px;
  }

  .scene-title {
    font-size: 16px;
  }

  .scene-desc {
    font-size: 14px;
  }

  .tag-cloud-list li a {
    font-size: 13px;
    padding: 4px 12px;
  }

  .note-text {
    font-size: 14px;
  }

  .intro-copy p {
    font-size: 14px;
  }

  .genre-text p {
    font-size: 14px;
  }

  .genre-text ul li {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .advice-card {
    padding: 16px;
  }

  .advice-card h3 {
    font-size: 15px;
  }

  .advice-card p {
    font-size: 13px;
  }

  .faq-item summary {
    font-size: 15px;
    padding: 14px 2px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .device-item {
    padding: 10px 6px;
  }

  .device-item .device-name {
    font-size: 14px;
  }

  .device-item p {
    font-size: 12px;
  }

  .aside-card {
    padding: 16px;
  }

  .aside-title {
    font-size: 16px;
  }

  .aside-card p {
    font-size: 13px;
  }

  .error-panel {
    padding: 28px 20px;
  }

  .error-code {
    font-size: 48px;
  }

  .error-title {
    font-size: 20px;
  }

  .error-desc {
    font-size: 14px;
  }

  .error-help {
    flex-direction: column;
    gap: 8px;
  }
}
