```css
/* ===== 午夜大片 · 全站样式表 ===== */
/* 说明：本文件为纯CSS输出，未包含任何HTML注释/解释性文字 */

:root {
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-deep: #0f172a;
  --text-primary: #1e293b;
  --text-secondary: #334155;
  --text-heading: #0b1e33;
  --text-footer: #cbd5e1;
  --brand: #b91c1c;
  --brand-dark: #7f1d1d;
  --border-light: #e2e8f0;
  --nav-bg: rgba(15, 23, 42, 0.95);
  --nav-text: #f1f5f9;
  --btn-text: #ffffff;
  --code-bg: #1e293b;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --max-width: 1280px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220;
    --bg-card: #111c31;
    --bg-deep: #0a0f1c;
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e1;
    --text-heading: #f8fafc;
    --text-footer: #94a3b8;
    --border-light: #1e2a44;
    --nav-bg: #0a0f1c;
    --nav-text: #f1f5f9;
    --brand: #ef4444;
    --brand-dark: #b91c1c;
    --btn-text: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.7;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.5em;
}

p, li, span, div, article {
  color: var(--text-primary);
}

a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== 导航栏 ===== */
.site-header {
  background: var(--nav-bg);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(30, 41, 59, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #facc15;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(250, 204, 21, 0.2);
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--nav-text);
  font-weight: 500;
  opacity: 0.9;
  position: relative;
  padding: 8px 2px;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #facc15;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #facc15;
  opacity: 1;
  text-decoration: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-box {
  display: flex;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 40px;
  padding: 2px 8px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-box:focus-within {
  border-color: #facc15;
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.1);
}

.search-box input {
  background: transparent;
  border: none;
  color: #f1f5f9;
  padding: 8px 12px;
  outline: none;
  width: 180px;
  font-size: 0.9rem;
}

.search-box input::placeholder {
  color: #94a3b8;
}

.search-box button {
  background: transparent;
  border: none;
  color: #facc15;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  transition: transform 0.2s ease;
}

.search-box button:hover {
  transform: scale(1.1);
}

.theme-toggle {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #475569;
  color: #f1f5f9;
  border-radius: 30px;
  padding: 6px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.theme-toggle:hover {
  background: rgba(250, 204, 21, 0.2);
  border-color: #facc15;
  color: #facc15;
}

.menu-btn {
  display: none;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #475569;
  color: white;
  font-size: 1.5rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.menu-btn:hover {
  border-color: #facc15;
  color: #facc15;
}

/* ===== Hero 首屏 ===== */
.hero {
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  background-size: 200% 200%;
  animation: heroGradient 15s ease infinite;
  padding: 60px 0 80px;
  border-radius: 0 0 40px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #f1f5f9;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white !important;
  padding: 14px 30px;
  border-radius: 60px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.8);
  color: #f1f5f9 !important;
  border: 1px solid #475569;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: #1e293b;
  border-color: #facc15;
}

.hero-featured {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-featured h2 {
  color: #facc15;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.hero-featured img {
  border-radius: var(--radius-md);
  margin-top: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ===== 通用区块标题 ===== */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin: 60px 0 30px;
  border-left: 6px solid var(--brand);
  padding-left: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.section-title:hover {
  transform: translateX(5px);
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #facc15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(185, 28, 28, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.badge {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #7f1d1d;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #fecaca, #fca5a5);
}

/* ===== 表格样式 ===== */
.movie-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.movie-table th {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #f1f5f9;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.movie-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-card);
  transition: background 0.2s ease;
}

.movie-table tbody tr:hover td {
  background: rgba(185, 28, 28, 0.05);
}

.movie-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== 文章列表 ===== */
.article-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease both;
}

.article-item:hover {
  padding-left: 15px;
  background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.03));
}

.article-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.article-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.article-item:hover h3 {
  color: var(--brand);
}

/* ===== FAQ 样式 ===== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-heading);
  padding: 12px 0;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-q:hover {
  color: var(--brand);
}

.faq-q span {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--brand);
}

.faq-q.active span {
  transform: rotate(45deg);
}

.faq-a {
  margin-top: 8px;
  color: var(--text-primary);
  padding-right: 30px;
  line-height: 1.8;
  animation: fadeIn 0.3s ease;
}

/* ===== 页脚 ===== */
footer {
  background: linear-gradient(180deg, #0f172a, #0a0f1c);
  color: #cbd5e1;
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #facc15, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

footer h4 {
  color: #f1f5f9;
  font-size: 1.1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #facc15;
}

footer a {
  color: #94a3b8;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

footer a:hover {
  color: #facc15;
  padding-left: 5px;
  text-decoration: none;
}

.copyright {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.copyright p {
  color: #64748b;
  font-size: 0.9rem;
}

/* ===== 面包屑 ===== */
.breadcrumb {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 16px 0;
  padding: 8px 0;
}

.breadcrumb a {
  color: var(--brand);
}

.breadcrumb span {
  color: var(--text-secondary);
}

/* ===== 返回顶部 ===== */
.backtop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
}

.backtop.visible {
  opacity: 1;
  visibility: visible;
}

.backtop:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ===== 工具类 ===== */
.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lazy.loaded {
  opacity: 1;
}

.text-small {
  font-size: 0.85rem;
}

.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

/* ===== 响应式设计 ===== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 0;
    width: 250px;
    background: var(--nav-bg);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-radius: 0 0 0 var(--radius-lg);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    animation: slideIn 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .search-box {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 60px;
    border-radius: 0 0 24px 24px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 1.5rem;
    margin: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .movie-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .backtop {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .nav-wrap {
    min-height: 56px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .theme-toggle {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

@media (max-width: 400px) {
  .nav-actions {
    gap: 8px;
  }

  .theme-toggle {
    display: none;
  }
}

/* ===== 暗色模式适配 ===== */
[data-theme="dark"] {
  color-scheme: dark;
}

[data-theme="dark"] .hero {
  background: linear-gradient(145deg, #0a0f1c 0%, #111c31 50%, #1a1a2e 100%);
}

[data-theme="dark"] .card {
  background: var(--bg-card);
  border-color: rgba(30, 42, 68, 0.5);
}

[data-theme="dark"] .movie-table th {
  background: #0f172a;
}

[data-theme="dark"] .movie-table td {
  background: var(--bg-card);
  border-color: rgba(30, 42, 68, 0.5);
}

[data-theme="dark"] .article-item:hover {
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.05));
}

[data-theme="dark"] .badge {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

/* ===== 玻璃拟态效果 ===== */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

[data-theme="dark"] .glass {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.05);
}

/* ===== 滚动动画 ===== */
.section-enter {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-enter.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 链接悬停效果 ===== */
.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* ===== 图片悬停效果 ===== */
.img-zoom {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.img-zoom img {
  transition: transform 0.5s ease;
}

.img-zoom:hover img {
  transform: scale(1.05);
}

/* ===== 辅助功能 ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== 打印样式 ===== */
@media print {
  .site-header,
  .backtop,
  .menu-btn,
  .theme-toggle,
  .search-box,
  .hero-cta,
  .backtop {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .card,
  .hero,
  footer {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
```