/* ============================================================
   anime动漫 · 整站样式表
   浅暖灰背景 / 深蓝灰正文 / 低饱和琥珀点缀 / 1px 细分隔线
   ============================================================ */

/* ------------------------------------------------------------
   Base — 基础重置、字体、颜色、通用元素
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC",
    "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  color: #1F2937;
  background-color: #F5F3EF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #B08968;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* 视觉隐藏，保留给屏幕阅读器 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   Layout — 全站统一容器、页头、页脚、面包屑、页面标题区
   ------------------------------------------------------------ */
.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E0D8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.01em;
}

.brand-slogan {
  font-size: 13px;
  color: #6B7280;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  background-color: #FFFFFF;
  min-height: 44px;
}

.nav-toggle-icon {
  display: block;
  width: 16px;
  height: 12px;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #1F2937;
}

.nav-toggle-icon::before {
  top: 0;
}

.nav-toggle-icon span {
  top: 5px;
}

.nav-toggle-icon::after {
  top: 10px;
}

.nav-toggle-text {
  font-size: 13px;
  color: #1F2937;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  color: #4B5563;
  border-radius: 6px;
  white-space: nowrap;
  min-height: 44px;
  line-height: 28px;
}

.nav-list a:hover {
  color: #B08968;
  background-color: #F5F3EF;
}

.nav-list a.is-current {
  color: #B08968;
  font-weight: 600;
  background-color: #F5F3EF;
}

.site-main {
  flex: 1;
  width: 100%;
}

/* 内页统一主容器 */
.inner-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* 面包屑 */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #6B7280;
}

.breadcrumb a:hover {
  color: #B08968;
}

.breadcrumb-sep {
  color: #B08968;
}

.breadcrumb-current {
  color: #1F2937;
}

/* 页面标题区 */
.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E0D8;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 10px;
}

.page-description {
  font-size: 15px;
  color: #4B5563;
  max-width: 720px;
}

.page-note {
  font-size: 13px;
  color: #6B7280;
  margin-top: 10px;
}

/* 页脚 */
.site-footer {
  background-color: #FFFFFF;
  border-top: 1px solid #E5E0D8;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
}

.footer-desc,
.footer-boundary p {
  font-size: 13px;
  line-height: 1.7;
  color: #6B7280;
}

.footer-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 14px;
}

.footer-nav ul,
.footer-help ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-help a {
  font-size: 14px;
  color: #4B5563;
}

.footer-nav a:hover,
.footer-help a:hover {
  color: #B08968;
}

.footer-bottom {
  border-top: 1px solid #E5E0D8;
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
  color: #6B7280;
}

/* ------------------------------------------------------------
   Components — 通用组件：section 标题、筛选按钮、折叠、表格
   ------------------------------------------------------------ */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 20px;
  max-width: 720px;
}

/* 筛选按钮组 */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #4B5563;
  min-height: 44px;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #B08968;
  color: #B08968;
}

.filter-btn.is-active {
  background-color: #B08968;
  border-color: #B08968;
  color: #FFFFFF;
  font-weight: 600;
}

/* 折叠区 */
details.faq-item {
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  background-color: #FFFFFF;
  margin-bottom: 12px;
}

details.faq-item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1F2937;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: #B08968;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

details.faq-item[open] summary::after {
  transform: rotate(45deg);
}

details.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.75;
}

/* 通用表格 */
.schedule-table,
.schedule-grid {
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
}

.schedule-table th,
.schedule-table td,
.schedule-grid th,
.schedule-grid td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #E5E0D8;
  vertical-align: middle;
}

.schedule-table th,
.schedule-grid th {
  font-weight: 600;
  color: #1F2937;
  background-color: #FAF9F7;
  white-space: nowrap;
}

.schedule-table td,
.schedule-grid td {
  color: #4B5563;
}

/* 状态标签 */
.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  background-color: #F5F3EF;
  color: #6B7280;
  border: 1px solid #E5E0D8;
}

/* 相关入口通用 */
.related-links {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #E5E0D8;
}

.related-links .section-title,
.related-title {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 16px;
}

.related-link-list,
.related-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-link,
.related-links-item {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #4B5563;
  min-height: 44px;
  line-height: 28px;
  transition: all 0.2s ease;
}

.related-link:hover,
.related-links-item:hover {
  border-color: #B08968;
  color: #B08968;
}

/* ------------------------------------------------------------
   Pages — 首页
   ------------------------------------------------------------ */
.home-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

/* 紧凑工具栏 */
.channel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E0D8;
  margin-bottom: 40px;
}

.toolbar-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.channel-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 16px;
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  background-color: #FFFFFF;
  white-space: nowrap;
  min-height: 44px;
  transition: all 0.2s ease;
}

.channel-tag:hover {
  border-color: #B08968;
}

.channel-tag .tag-scope {
  font-size: 12px;
  color: #6B7280;
}

.update-status {
  font-size: 13px;
  color: #6B7280;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 信息总览 */
.section-spacing {
  margin-bottom: 56px;
}

.info-overview {
  margin-bottom: 56px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.facts-column h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
}

.overview-lead {
  font-size: 15px;
  color: #4B5563;
  margin-bottom: 24px;
  max-width: 480px;
}

.fact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fact-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
}

.fact-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #B08968;
  flex-shrink: 0;
  align-self: center;
}

.fact-list strong {
  font-weight: 600;
  color: #1F2937;
  flex-shrink: 0;
}

.hero-figure {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
}

.hero-figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-figure figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: #6B7280;
  border-top: 1px solid #E5E0D8;
}

/* 分类入口带 */
.category-entry {
  margin-bottom: 56px;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.entry-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-height: 160px;
}

.entry-card:hover {
  border-color: #B08968;
  transform: translateY(-2px);
}

.entry-icon {
  font-size: 24px;
  color: #B08968;
  margin-bottom: 4px;
}

.entry-title {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
}

.entry-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.entry-arrow {
  margin-top: auto;
  font-size: 14px;
  color: #B08968;
  font-weight: 500;
}

/* 本周更新日程表 */
.weekly-schedule {
  margin-bottom: 56px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1F2937;
}

.section-link {
  font-size: 14px;
  color: #B08968;
  font-weight: 500;
  white-space: nowrap;
}

.schedule-table-wrap {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
}

.schedule-table {
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
}

.schedule-table th {
  background-color: #FAF9F7;
  font-weight: 600;
  color: #1F2937;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}

.schedule-table td {
  padding: 12px 16px;
  border-top: 1px solid #E5E0D8;
  color: #4B5563;
  transition: background-color 0.2s ease;
}

.schedule-table tbody tr:hover {
  background-color: #FAF9F7;
}

.schedule-table tbody tr:hover td:last-child a {
  transform: translateX(2px);
}

.schedule-table td:last-child a {
  display: inline-block;
  font-size: 14px;
  color: #B08968;
  transition: transform 0.2s ease;
}

.table-note {
  margin-top: 12px;
  font-size: 13px;
  color: #6B7280;
}

/* 热门推荐 */
.hot-recommend {
  margin-bottom: 56px;
}

.hot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hot-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
}

.hot-index {
  font-size: 28px;
  font-weight: 700;
  color: #E5E0D8;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.hot-info {
  flex: 1;
}

.hot-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 4px;
}

.hot-info .tag {
  display: inline-block;
  font-size: 12px;
  color: #B08968;
  background-color: #F5F3EF;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.hot-info p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.hot-item img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

/* 双入口 */
.dual-entry {
  margin-bottom: 56px;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dual-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dual-card:hover {
  border-color: #B08968;
}

.dual-icon {
  font-size: 28px;
  color: #B08968;
  margin-bottom: 8px;
}

.dual-title {
  font-size: 20px;
  font-weight: 600;
  color: #1F2937;
}

.dual-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

.dual-link {
  margin-top: auto;
  font-size: 14px;
  color: #B08968;
  font-weight: 500;
}

/* 下一屏预告 */
.next-preview {
  margin-bottom: 56px;
}

.preview-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
}

.preview-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 6px;
}

.preview-content p {
  font-size: 14px;
  color: #6B7280;
}

.preview-btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #B08968;
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  min-height: 44px;
  line-height: 24px;
  transition: background-color 0.2s ease;
}

.preview-btn:hover {
  background-color: #9A7A5C;
  color: #FFFFFF;
}

/* FAQ 摘选 */
.faq-teaser {
  margin-bottom: 56px;
}

.faq-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ------------------------------------------------------------
   Pages — 内页公共布局
   ------------------------------------------------------------ */
/* 双栏布局：主内容 + 侧栏 */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.main-content {
  min-width: 0;
}

/* ------------------------------------------------------------
   Pages — 更新日程页
   ------------------------------------------------------------ */
.filter-tags {
  margin-bottom: 32px;
}

.filter-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  padding: 8px 18px;
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #4B5563;
  min-height: 44px;
  transition: all 0.2s ease;
}

.filter-tag:hover {
  border-color: #B08968;
  color: #B08968;
}

.filter-tag.is-active {
  background-color: #B08968;
  border-color: #B08968;
  color: #FFFFFF;
  font-weight: 600;
}

.schedule-day-group {
  margin-bottom: 32px;
}

.schedule-day {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  padding: 10px 0;
  margin-bottom: 12px;
  border-bottom: 2px solid #B08968;
  display: inline-block;
}

.schedule-grid {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  overflow: hidden;
}

.schedule-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aside-media {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
}

.aside-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.aside-media figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: #6B7280;
  border-top: 1px solid #E5E0D8;
}

.update-note {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 20px;
}

.update-note .section-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.update-note p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 10px;
}

.update-note p:last-child {
  margin-bottom: 0;
}

.aside-link a {
  display: block;
  padding: 12px 20px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 6px;
  font-size: 14px;
  color: #B08968;
  font-weight: 500;
  text-align: center;
  min-height: 44px;
  line-height: 20px;
  transition: all 0.2s ease;
}

.aside-link a:hover {
  border-color: #B08968;
  background-color: #F5F3EF;
}

/* ------------------------------------------------------------
   Pages — 作品大全页
   ------------------------------------------------------------ */
.catalog-filter {
  margin-bottom: 32px;
}

.catalog-list-section {
  margin-bottom: 40px;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.catalog-item:hover {
  border-color: #B08968;
}

.item-thumb {
  flex-shrink: 0;
  width: 120px;
}

.item-thumb img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.item-info {
  flex: 1;
  min-width: 0;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 6px;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.item-meta span {
  font-size: 12px;
  color: #6B7280;
  background-color: #F5F3EF;
  padding: 2px 8px;
  border-radius: 4px;
}

.item-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-action {
  flex-shrink: 0;
}

.story-link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #B08968;
  border-radius: 6px;
  font-size: 14px;
  color: #B08968;
  font-weight: 500;
  min-height: 44px;
  line-height: 28px;
  transition: all 0.2s ease;
}

.story-link:hover {
  background-color: #B08968;
  color: #FFFFFF;
}

/* 目录说明 */
.catalog-note {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
}

.note-content p {
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 12px;
}

.note-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.note-content ul li {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 6px;
}

.note-content p:last-child {
  margin-bottom: 0;
}

.note-content a {
  color: #B08968;
}

/* ------------------------------------------------------------
   Pages — 剧情介绍页
   ------------------------------------------------------------ */
.story-params {
  margin-bottom: 48px;
}

.table-scroll {
  overflow-x: auto;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
}

.story-table {
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
  min-width: 800px;
}

.story-table th {
  background-color: #FAF9F7;
  font-weight: 600;
  color: #1F2937;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}

.story-table td {
  padding: 12px 16px;
  border-top: 1px solid #E5E0D8;
  color: #4B5563;
  vertical-align: top;
}

.story-overview {
  margin-bottom: 48px;
}

.story-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #E5E0D8;
  align-items: start;
}

.story-item:last-child {
  border-bottom: none;
}

.story-media figure {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
}

.story-media img {
  width: 240px;
  height: 144px;
  object-fit: cover;
}

.story-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 10px;
}

.story-body p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.75;
}

.watch-order {
  margin-bottom: 48px;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: order-counter;
}

.order-list li {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  counter-increment: order-counter;
}

.order-list li::before {
  content: counter(order-counter, decimal-leading-zero);
  font-size: 20px;
  font-weight: 700;
  color: #B08968;
  flex-shrink: 0;
  line-height: 1.4;
}

.order-list h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 4px;
}

.order-list p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   Pages — 频道索引页
   ------------------------------------------------------------ */
.channel-overview {
  margin-bottom: 40px;
}

.channel-overview-figure {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.channel-overview-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.channel-overview-figure figcaption {
  padding: 10px 16px;
  font-size: 13px;
  color: #6B7280;
  border-top: 1px solid #E5E0D8;
}

.overview-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.75;
  max-width: 720px;
}

.channel-archive {
  margin-bottom: 40px;
}

.section-intro {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 20px;
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
}

.channel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #E5E0D8;
}

.channel-name {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
}

.channel-tag {
  font-size: 12px;
  color: #B08968;
  background-color: #F5F3EF;
  padding: 2px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.channel-card-body {
  padding: 16px 20px;
}

.channel-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 14px;
}

.channel-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meta-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.meta-row dt {
  color: #6B7280;
  flex-shrink: 0;
  min-width: 70px;
}

.meta-row dd {
  color: #4B5563;
}

/* 选择建议 */
.channel-advice {
  margin-bottom: 40px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 24px;
}

.advice-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.advice-item {
  display: flex;
  gap: 12px;
}

.advice-label {
  font-size: 13px;
  font-weight: 600;
  color: #B08968;
  flex-shrink: 0;
  min-width: 80px;
  padding-top: 2px;
}

.advice-text {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

/* 观看指引入口 */
.guide-entry {
  margin-bottom: 40px;
  background-color: #F5F3EF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 24px;
}

.guide-entry-text {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

.guide-entry-text a {
  color: #B08968;
  font-weight: 500;
}

/* ------------------------------------------------------------
   Pages — 观看指引页
   ------------------------------------------------------------ */
.guide-section {
  margin-bottom: 48px;
}

.prepare-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prepare-item {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  align-items: flex-start;
}

.prepare-index {
  font-size: 20px;
  font-weight: 700;
  color: #B08968;
  flex-shrink: 0;
  line-height: 1.4;
  min-width: 32px;
}

.prepare-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 4px;
}

.prepare-content p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

/* 步骤区 */
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
}

.step-num {
  font-size: 24px;
  font-weight: 700;
  color: #B08968;
  flex-shrink: 0;
  line-height: 1.3;
  min-width: 40px;
}

.step-head h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 6px;
}

.step-head p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
}

.steps-media {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
}

.steps-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.steps-media figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: #6B7280;
  border-top: 1px solid #E5E0D8;
}

/* 反馈面板 */
.feedback-panel {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
}

.feedback-note {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

.feedback-note a {
  color: #B08968;
}

/* ------------------------------------------------------------
   Pages — 常见问题页
   ------------------------------------------------------------ */
.faq-section {
  margin-bottom: 40px;
}

.faq-feedback {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 20px 24px;
}

.faq-feedback p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

.faq-feedback a {
  color: #B08968;
}

.sidebar-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-index {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 20px;
}

.faq-index .section-title {
  font-size: 16px;
  margin-bottom: 14px;
}

.index-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.index-list li {
  font-size: 14px;
}

.index-list a {
  color: #4B5563;
  display: inline-block;
  padding: 4px 0;
}

.index-list a:hover {
  color: #B08968;
}

.sidebar-image {
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sidebar-image figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: #6B7280;
  border-top: 1px solid #E5E0D8;
}

/* ------------------------------------------------------------
   Pages — 404 页
   ------------------------------------------------------------ */
.error-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  flex: 1;
}

.error-panel {
  max-width: 520px;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #E5E0D8;
  border-radius: 8px;
  padding: 48px 40px;
}

.error-code {
  font-size: 56px;
  font-weight: 700;
  color: #B08968;
  line-height: 1.2;
  margin-bottom: 16px;
}

.error-panel h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
}

.error-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

.error-back {
  display: inline-block;
  padding: 10px 28px;
  background-color: #B08968;
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
  line-height: 24px;
  transition: background-color 0.2s ease;
}

.error-back:hover {
  background-color: #9A7A5C;
  color: #FFFFFF;
}

/* ------------------------------------------------------------
   Responsive — 响应式断点
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 20px;
  }

  .inner-main,
  .home-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .overview-grid {
    gap: 32px;
  }

  .entry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-layout {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-media {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* 移动端导航 */
  .site-header {
    position: relative;
  }

  .header-inner {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 8px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid #E5E0D8;
    margin-top: 8px;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid #F5F3EF;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
    padding: 12px 16px;
    border-radius: 0;
  }

  /* 首页移动端 */
  .channel-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 0;
  }

  .toolbar-scroll {
    width: 100%;
    padding-bottom: 8px;
  }

  .update-status {
    font-size: 12px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .facts-column {
    order: 2;
  }

  .hero-figure {
    order: 1;
  }

  .hero-figure img {
    height: 200px;
  }

  .entry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .entry-card {
    min-height: 0;
    padding: 20px;
  }

  .schedule-table-wrap {
    overflow-x: auto;
  }

  .schedule-table {
    min-width: 640px;
  }

  .hot-item {
    flex-wrap: wrap;
  }

  .hot-item img {
    width: 100%;
    height: 140px;
  }

  .dual-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .preview-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  /* 内页通用 */
  .inner-main {
    padding: 24px 16px 48px;
  }

  .page-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .page-title {
    font-size: 24px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 更新日程页 */
  .schedule-aside {
    order: 2;
  }

  .schedule-grid {
    min-width: 0;
  }

  .schedule-grid th,
  .schedule-grid td {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* 作品大全页 */
  .catalog-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .item-thumb {
    width: 100%;
  }

  .item-thumb img {
    width: 100%;
    height: 160px;
  }

  .item-action {
    width: 100%;
  }

  .story-link {
    display: block;
    text-align: center;
  }

  /* 剧情介绍页 */
  .story-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-media img {
    width: 100%;
    height: 200px;
  }

  .table-scroll {
    overflow-x: auto;
  }

  .story-table {
    min-width: 700px;
  }

  /* 频道索引页 */
  .channel-overview-figure img {
    height: 180px;
  }

  .channel-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* 观看指引页 */
  .prepare-item {
    flex-direction: column;
    gap: 8px;
  }

  .step-item {
    flex-direction: column;
    gap: 10px;
  }

  /* 常见问题页 */
  .faq-section {
    order: 1;
  }

  .sidebar-area {
    order: 2;
  }

  /* 页脚 */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 16px 16px;
  }
}

@media (max-width: 390px) {
  .brand {
    flex-direction: column;
    gap: 2px;
  }

  .brand-slogan {
    font-size: 12px;
  }

  .nav-toggle-text {
    display: none;
  }

  .filter-tag-list,
  .filter-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .filter-tag,
  .filter-btn {
    flex-shrink: 0;
  }

  .hot-item {
    padding: 14px;
  }

  .hot-index {
    font-size: 24px;
    width: 32px;
  }

  .preview-content {
    padding: 20px;
  }

  .error-panel {
    padding: 32px 24px;
  }
}
