/* ============================================================
   永久免费在线看片 — 电影档案 / CINEMA CREAM
   明亮奶油底 × 陶土珊瑚 × 胶片打孔 × 新粗野主义编辑感
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: #FFF8F0;
  color: #262220;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #F0563C;
  color: #FFFFFF;
}

/* ============================================================
   核心布局
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #FFF1E7;
}

/* ============================================================
   导航 — 固定顶部
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38, 34, 32, 0.08);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #F0563C 0 10px,
    transparent 10px 16px,
    #E8A928 16px 20px,
    transparent 20px 30px
  );
  opacity: 0.5;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  color: #262220;
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  letter-spacing: -0.5px;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.75;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: #F0563C;
  color: #FFF8F0;
  box-shadow: 3px 3px 0 rgba(38, 34, 32, 0.2);
  transition: transform 0.3s;
}

.logo-icon::before {
  content: '▶';
  font-size: 0.9rem;
}

.logo:hover .logo-icon {
  transform: rotate(-6deg) scale(1.04);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4A453F;
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.02em;
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #F0563C;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.main-nav a:hover {
  color: #F0563C;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 0;
  color: #FFFFFF !important;
  font-weight: 700;
  background: #1E7A6F;
  box-shadow: 3px 3px 0 rgba(38, 34, 32, 0.14);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(38, 34, 32, 0.2);
  color: #FFFFFF !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #262220;
  position: relative;
  transition: background 0.2s;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #262220;
  transition: top 0.2s, transform 0.2s;
}

.menu-toggle span::before {
  top: -8px;
}

.menu-toggle span::after {
  bottom: -8px;
}

.menu-toggle.open span {
  background: transparent;
}

.menu-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================================
   Hero — 电影杂志编辑版面
   ============================================================ */

.hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: #FFF8F0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(90deg, transparent 0 12px, #F0563C 12px 16px, transparent 16px 28px, #1E7A6F 28px 32px, transparent 32px 40px);
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -10px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(232, 169, 40, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  background: #F0563C;
  color: #FFFFFF;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(38, 34, 32, 0.18);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: 1.12;
  margin-bottom: 24px;
  font-family: Georgia, 'Songti SC', 'SimSun', 'Noto Serif SC', serif;
  font-weight: 800;
  letter-spacing: -2px;
  color: #262220;
  position: relative;
}

.hero h1::after {
  content: '';
  display: block;
  width: 96px;
  height: 6px;
  background: repeating-linear-gradient(90deg, #F0563C 0 8px, transparent 8px 14px, #E8A928 14px 18px);
  margin-top: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(38, 34, 32, 0.68);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
  border-left: 3px solid #E8A928;
  padding-left: 20px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(38, 34, 32, 0.12);
  border: 1px solid rgba(38, 34, 32, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* ============================================================
   按钮
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.btn-primary {
  color: #FFFFFF;
  background: #F0563C;
  box-shadow: 4px 4px 0 rgba(38, 34, 32, 0.18);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(38, 34, 32, 0.24);
}

.btn-outline {
  background: transparent;
  border: 2px solid #262220;
  color: #262220;
  box-shadow: 3px 3px 0 rgba(38, 34, 32, 0.1);
}

.btn-outline:hover {
  background: #262220;
  color: #FFF8F0;
  transform: translate(-2px, -2px);
}

/* ============================================================
   标签 / 标题
   ============================================================ */

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #F0563C;
  background: rgba(240, 86, 60, 0.1);
  padding: 5px 14px;
  border: 1px solid rgba(240, 86, 60, 0.2);
}

.section-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #262220;
}

.section-desc {
  max-width: 600px;
  color: rgba(38, 34, 32, 0.68);
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ============================================================
   卡片网格 — 剧场存档卡
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: #FFFFFF;
  padding: 30px 28px;
  border: 1px solid rgba(38, 34, 32, 0.1);
  border-radius: 0;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  box-shadow: 4px 4px 0 rgba(38, 34, 32, 0.08);
}

.category-card::before {
  content: 'Nº001';
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E8A928;
  opacity: 0.7;
}

.category-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(240, 86, 60, 0.2);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: #FFF1E7;
  border: 1px solid rgba(240, 86, 60, 0.25);
}

.card-link {
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  color: #1E7A6F;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.card-link:hover {
  gap: 10px;
  color: #F0563C;
}

/* ============================================================
   特性块 — About
   ============================================================ */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(30, 122, 111, 0.18);
  border: 1px solid rgba(38, 34, 32, 0.1);
  position: relative;
}

.feature-image::before {
  content: '';
  position: absolute;
  left: -12px;
  bottom: -12px;
  width: 60px;
  height: 60px;
  background: #E8A928;
  z-index: -1;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding-left: 0;
}

.feature-text .section-title {
  font-size: 1.8rem;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  border-bottom: 1px dashed rgba(38, 34, 32, 0.1);
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  color: #1E7A6F;
  background: rgba(30, 122, 111, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ============================================================
   数据条 — 票根风格
   ============================================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 28px 18px;
  border-radius: 0;
  border: 1px dashed rgba(38, 34, 32, 0.3);
  background: #FFFFFF;
  position: relative;
  box-shadow: 4px 4px 0 rgba(38, 34, 32, 0.06);
}

.stat-item::before,
.stat-item::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #FFF1E7;
  border: 1px solid rgba(38, 34, 32, 0.15);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.stat-item::before {
  top: -9px;
}

.stat-item::after {
  bottom: -9px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  color: #F0563C;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(38, 34, 32, 0.55);
  margin-top: 6px;
  font-weight: 600;
}

/* ============================================================
   内容墙 — 片库 / 海报墙
   ============================================================ */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 32, 0.1);
  background: #FFFFFF;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 4px 4px 0 rgba(38, 34, 32, 0.08);
}

.content-wall-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(232, 169, 40, 0.3);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(38, 34, 32, 0.08);
}

.content-wall-body {
  padding: 20px 22px;
  position: relative;
}

.content-wall-body::before {
  content: '▶';
  font-size: 0.7rem;
  color: #F0563C;
  margin-right: 8px;
}

/* ============================================================
   FAQ — 档案问答
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(38, 34, 32, 0.12);
  border-radius: 0;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #FFFFFF;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(240, 86, 60, 0.4);
}

.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #262220;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #F0563C;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 18px;
  display: none;
  color: rgba(38, 34, 32, 0.68);
  line-height: 1.75;
  border-top: 1px dashed rgba(38, 34, 32, 0.08);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   CTA 横幅
   ============================================================ */

.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: 0;
  color: #FFFFFF;
  background: linear-gradient(120deg, #F0563C 0%, #E8A928 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(38, 34, 32, 0.12);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 14px, transparent 14px 28px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #F0563C;
  box-shadow: 4px 4px 0 rgba(38, 34, 32, 0.2);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(38, 34, 32, 0.3);
}

/* ============================================================
   页脚
   ============================================================ */

.site-footer {
  padding: 56px 0 28px;
  background: #FFF8F0;
  position: relative;
  border-top: 1px solid rgba(38, 34, 32, 0.08);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    #F0563C 0 8px,
    transparent 8px 14px,
    #E8A928 14px 18px,
    transparent 18px 26px,
    #1E7A6F 26px 30px,
    transparent 30px 38px
  );
  opacity: 0.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(38, 34, 32, 0.6);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #F0563C;
  font-weight: 800;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(38, 34, 32, 0.65);
  padding: 5px 0;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: #F0563C;
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(38, 34, 32, 0.1);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(38, 34, 32, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom .copyright {
  letter-spacing: 0.03em;
}

.footer-bottom .qt {
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  font-style: italic;
  font-size: 0.85rem;
}

/* ============================================================
   工具类
   ============================================================ */

.text-accent {
  color: #F0563C;
  font-weight: 800;
  position: relative;
}

.text-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 0.2em;
  background: rgba(232, 169, 40, 0.45);
  z-index: -1;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  color: rgba(38, 34, 32, 0.68);
  line-height: 1.7;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* 通用图像灰度微调 — 构成统一氛围 */
img {
  max-width: 100%;
}

/* 滚动条微调 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #FFF8F0;
}

::-webkit-scrollbar-thumb {
  background: #F0563C;
  border-radius: 0;
}

/* ============================================================
   响应式
   ============================================================ */

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 100px 0 64px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .feature-block {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #FFF8F0;
    padding: 28px 24px 32px;
    gap: 18px;
    border-bottom: 1px solid rgba(38, 34, 32, 0.08);
    box-shadow: 0 16px 32px rgba(38, 34, 32, 0.06);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .btn {
    padding: 12px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ============================================================
   装饰性模式 — 建立电影档案氛围
   ============================================================ */

/* 卡片网格中“推荐”小标记 */
.cards-grid .category-card:nth-child(3n + 1) .card-icon {
  background: rgba(240, 86, 60, 0.14);
  border-color: rgba(240, 86, 60, 0.3);
}

.cards-grid .category-card:nth-child(3n + 2) .card-icon {
  background: rgba(30, 122, 111, 0.12);
  border-color: rgba(30, 122, 111, 0.3);
}

.cards-grid .category-card:nth-child(3n + 3) .card-icon {
  background: rgba(232, 169, 40, 0.14);
  border-color: rgba(232, 169, 40, 0.35);
}

/* 内容墙编号角标 */
.content-wall-item:nth-child(odd) .content-wall-body::after {
  content: '胶片';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(38, 34, 32, 0.3);
  border: 1px solid rgba(38, 34, 32, 0.12);
  padding: 3px 10px;
}

.content-wall-item:nth-child(even) .content-wall-body::after {
  content: '典藏';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(240, 86, 60, 0.45);
  border: 1px solid rgba(240, 86, 60, 0.2);
  padding: 3px 10px;
}

/* FAQ 编号 */
.faq-item .faq-question::before {
  content: attr(data-index);
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  font-weight: 700;
  color: #F0563C;
  margin-right: 12px;
  opacity: 0.6;
}

/* 区块标题装饰线 */
.section-label::before {
  content: '┊ ';
  font-weight: 800;
}

/* 卡片网格标题微装饰 */
.cards-grid .category-card h3 {
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.content-wall-body h3 {
  font-family: Georgia, 'Songti SC', 'SimSun', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* 电影票根索引 */
.faq-list::before {
  content: '══════════════════';
  display: block;
  text-align: center;
  color: rgba(240, 86, 60, 0.3);
  letter-spacing: 4px;
  margin-bottom: 24px;
  font-size: 0.8rem;
}

/* 特征列表编号 */
.feature-list li {
  counter-increment: film-count;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  color: #1E7A6F;
  background: rgba(30, 122, 111, 0.1);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}