/* =====================================================================
   国产好剧 · 自定义主题「极光暗夜 Aurora Night」
   深色 + 青绿/青蓝渐变 + 玫红点缀，整体布局与基础模板差异化
   （本文件在 styles.css 之后加载，用 body.body-tpl-lxqn8 提升权重覆盖）
   ===================================================================== */

:root {
  --au-bg: #080b14;
  --au-bg-2: #0c111d;
  --au-surface: rgba(255, 255, 255, 0.045);
  --au-surface-2: rgba(255, 255, 255, 0.07);
  --au-line: rgba(255, 255, 255, 0.09);
  --au-line-strong: rgba(255, 255, 255, 0.16);
  --au-text: #e9edf7;
  --au-muted: #93a0b8;
  --au-accent: #2dd4bf;
  --au-accent-2: #22d3ee;
  --au-pop: #fb7185;
  --au-grad: linear-gradient(135deg, #2dd4bf 0%, #22d3ee 55%, #38bdf8 100%);
  --au-grad-pop: linear-gradient(135deg, #fb7185, #f472b6);
  --au-radius: 18px;
  --au-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --au-glow: 0 0 0 1px rgba(45, 212, 191, 0.35), 0 18px 46px rgba(34, 211, 238, 0.16);
}

/* ---------- 基础 ---------- */
html {
  scroll-behavior: auto;
}
body.site-body.body-tpl-lxqn8 {
  background:
    radial-gradient(1100px 620px at 82% -6%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(900px 560px at 8% 4%, rgba(45, 212, 191, 0.1), transparent 58%),
    linear-gradient(180deg, #080b14 0%, #0a0e1a 60%, #080b14 100%);
  background-attachment: fixed;
  color: var(--au-text);
  font-family: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, -apple-system,
    'Segoe UI', 'Microsoft YaHei', sans-serif;
}

/* 屏幕外区块暂缓布局与绘制，降低长页面滚动压力 */
body.body-tpl-lxqn8 .content-section,
body.body-tpl-lxqn8 .quick-categories,
body.body-tpl-lxqn8 .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

body.body-tpl-lxqn8 .movie-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

body.body-tpl-lxqn8 .container {
  width: min(1240px, calc(100% - 40px));
}

body.body-tpl-lxqn8 a { color: inherit; }

/* ============================ 头部 ============================ */
body.body-tpl-lxqn8 .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.92), rgba(10, 14, 26, 0.72));
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--au-line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
body.body-tpl-lxqn8 .header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 78px;
  gap: 18px;
}
/* 品牌 */
body.body-tpl-lxqn8 .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--au-grad);
  color: #04121a;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(45, 212, 191, 0.4);
  position: relative;
}
body.body-tpl-lxqn8 .brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  mix-blend-mode: overlay;
}
body.body-tpl-lxqn8 .brand-title {
  color: #f4f7ff;
  font-size: 20px;
  letter-spacing: -0.02em;
}
body.body-tpl-lxqn8 .brand-subtitle {
  color: var(--au-accent);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
/* 导航居中，下划线动效（区别于胶囊） */
body.body-tpl-lxqn8 .nav-links {
  margin-inline: auto;
  gap: 4px;
}
body.body-tpl-lxqn8 .nav-link {
  position: relative;
  color: var(--au-muted);
  font-weight: 700;
  background: transparent;
  padding: 10px 14px;
  border-radius: 0;
}
body.body-tpl-lxqn8 .nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--au-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
body.body-tpl-lxqn8 .nav-link:hover,
body.body-tpl-lxqn8 .nav-link.is-current {
  background: transparent;
  color: #ffffff;
}
body.body-tpl-lxqn8 .nav-link:hover::after,
body.body-tpl-lxqn8 .nav-link.is-current::after {
  transform: scaleX(1);
}
/* 搜索：幽灵态圆角 */
body.body-tpl-lxqn8 .search-box {
  margin-left: 0;
  background: var(--au-surface);
  border: 1px solid var(--au-line-strong);
  box-shadow: none;
}
body.body-tpl-lxqn8 .search-box input {
  width: 210px;
  color: var(--au-text);
  background: transparent;
}
body.body-tpl-lxqn8 .search-box input::placeholder { color: var(--au-muted); }
body.body-tpl-lxqn8 .search-box button {
  background: var(--au-grad);
  color: #04121a;
  font-weight: 800;
}
body.body-tpl-lxqn8 .menu-toggle {
  background: var(--au-surface);
  border: 1px solid var(--au-line-strong);
}
body.body-tpl-lxqn8 .menu-toggle span { background: var(--au-accent); }
body.body-tpl-lxqn8 .mobile-panel {
  background: rgba(10, 14, 26, 0.98);
  border-top: 1px solid var(--au-line);
}
body.body-tpl-lxqn8 .mobile-panel a {
  background: var(--au-surface);
  color: var(--au-text);
  border: 1px solid var(--au-line);
}
body.body-tpl-lxqn8 .mobile-panel .nav-link.is-current {
  color: var(--au-accent);
}

/* ============================ 中部 · Hero ============================ */
body.body-tpl-lxqn8 .hero-wrap { padding: 34px 0 48px; }
body.body-tpl-lxqn8 .hero-shell {
  width: min(1240px, calc(100% - 40px));
  border-radius: 26px;
  background: #05070d;
  box-shadow: var(--au-shadow);
  border: 1px solid var(--au-line);
}
body.body-tpl-lxqn8 .hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 9, 16, 0.95) 0%, rgba(6, 9, 16, 0.5) 46%, rgba(6, 9, 16, 0.05) 100%),
    linear-gradient(0deg, rgba(6, 9, 16, 0.85), transparent 58%);
}
body.body-tpl-lxqn8 .hero-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at 12% 92%, rgba(45, 212, 191, 0.22), transparent 60%);
  z-index: 3;
}
body.body-tpl-lxqn8 .hero-kicker a,
body.body-tpl-lxqn8 .hero-kicker span {
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.34);
  color: #7ff0e0;
}
body.body-tpl-lxqn8 .hero-movie-title {
  color: var(--au-accent) !important;
  text-shadow: 0 6px 30px rgba(45, 212, 191, 0.35);
}
body.body-tpl-lxqn8 .hero-one { color: #eef3ff; }
body.body-tpl-lxqn8 .hero-text { color: #aab6cc; }

/* 按钮 */
body.body-tpl-lxqn8 .btn.primary {
  background: var(--au-grad);
  color: #04121a;
  box-shadow: 0 14px 34px rgba(34, 211, 238, 0.32);
}
body.body-tpl-lxqn8 .btn.primary:hover { filter: brightness(1.06); transform: translateY(-2px); }
body.body-tpl-lxqn8 .btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--au-line-strong);
  color: #eaf0ff;
}
body.body-tpl-lxqn8 .btn.ghost {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #7ff0e0;
}
body.body-tpl-lxqn8 .hero-nav {
  background: rgba(12, 17, 29, 0.82);
  color: #eaf0ff;
  border: 1px solid var(--au-line-strong);
  backdrop-filter: blur(6px);
}
body.body-tpl-lxqn8 .hero-nav:hover { background: rgba(45, 212, 191, 0.22); }
body.body-tpl-lxqn8 .hero-dots button { background: rgba(255, 255, 255, 0.28); }
body.body-tpl-lxqn8 .hero-dots button.is-active { background: var(--au-grad); width: 34px; }

/* ============================ 中部 · Section 标题 ============================ */
body.body-tpl-lxqn8 .content-section,
body.body-tpl-lxqn8 .quick-categories { padding: 46px 0; }
body.body-tpl-lxqn8 .content-section.alt {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.05), rgba(34, 211, 238, 0.02));
  border-block: 1px solid var(--au-line);
}
body.body-tpl-lxqn8 .section-head { align-items: center; margin-bottom: 26px; gap: 16px; }
body.body-tpl-lxqn8 .section-head > div { align-items: center; }
body.body-tpl-lxqn8 .section-head .inline-search {
  margin: 0;
  flex-shrink: 0;
  align-self: center;
}
body.body-tpl-lxqn8 .section-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--au-surface-2);
  border: 1px solid var(--au-line-strong);
  color: var(--au-accent);
  box-shadow: none;
}
body.body-tpl-lxqn8 .section-head h2 {
  color: #f3f6ff;
  font-size: 27px;
  position: relative;
  padding-left: 14px;
}
body.body-tpl-lxqn8 .section-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 3px;
  background: var(--au-grad);
}
body.body-tpl-lxqn8 .section-head p { color: var(--au-muted); margin-left: 58px; }

/* ============================ 中部 · 分类频道格 ============================ */
body.body-tpl-lxqn8 .category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
body.body-tpl-lxqn8 .category-tile {
  min-height: 132px;
  border-radius: 16px;
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  padding: 20px 20px 20px 24px;
  box-shadow: none;
  overflow: hidden;
}
body.body-tpl-lxqn8 .category-tile::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--au-grad);
  opacity: 0.85;
}
body.body-tpl-lxqn8 .category-tile::after {
  background: radial-gradient(120px 120px at 100% 100%, rgba(34, 211, 238, 0.18), transparent 70%);
}
body.body-tpl-lxqn8 .category-tile span { color: #f2f6ff; font-size: 19px; }
body.body-tpl-lxqn8 .category-tile p { color: var(--au-muted); }
body.body-tpl-lxqn8 .category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: var(--au-glow);
}

/* ============================ 卡片样式（差异化） ============================ */
body.body-tpl-lxqn8 .movie-grid {
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  gap: 20px;
}
body.body-tpl-lxqn8 .movie-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--au-line);
  border-radius: 16px;
  box-shadow: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
body.body-tpl-lxqn8 .movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: var(--au-glow);
}
body.body-tpl-lxqn8 .poster { background: #05070d; }
body.body-tpl-lxqn8 .poster:after {
  background: linear-gradient(0deg, rgba(5, 7, 13, 0.85), transparent 52%);
}
body.body-tpl-lxqn8 .poster-year {
  background: rgba(5, 7, 13, 0.7);
  border: 1px solid var(--au-line-strong);
  color: #dbe4f5;
  backdrop-filter: blur(4px);
}
/* 播放键：居中圆形，悬停浮现（区别于右下角胶囊） */
body.body-tpl-lxqn8 .poster-play {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 0;
  border-radius: 50%;
  background: var(--au-grad);
  color: #04121a;
  opacity: 0;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.5);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.body-tpl-lxqn8 .poster-play::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 15px solid #04121a;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
body.body-tpl-lxqn8 .movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
body.body-tpl-lxqn8 .card-meta { color: var(--au-muted); }
body.body-tpl-lxqn8 .card-meta a,
body.body-tpl-lxqn8 .card-meta span {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  color: #b9c4da;
}
body.body-tpl-lxqn8 .card-meta a:hover { color: var(--au-accent); border-color: rgba(45, 212, 191, 0.5); }
body.body-tpl-lxqn8 .card-body h3 { color: #f2f6ff; }
body.body-tpl-lxqn8 .card-body h3 a:hover { color: var(--au-accent); }
body.body-tpl-lxqn8 .card-body p { color: var(--au-muted); }
body.body-tpl-lxqn8 .tag-row span,
body.body-tpl-lxqn8 .detail-tags span {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  color: #9fb0c9;
}

/* 内联筛选框 */
body.body-tpl-lxqn8 .inline-search input {
  background: var(--au-surface);
  border: 1px solid var(--au-line-strong);
  color: var(--au-text);
  box-shadow: none;
}
body.body-tpl-lxqn8 .inline-search input::placeholder { color: var(--au-muted); }
body.body-tpl-lxqn8 .empty-state {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  color: var(--au-muted);
}

/* ============================ 榜单 ============================ */
body.body-tpl-lxqn8 .rank-item {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  box-shadow: none;
}
body.body-tpl-lxqn8 .rank-item:hover { border-color: rgba(45, 212, 191, 0.4); }
body.body-tpl-lxqn8 .rank-number { background: var(--au-grad); color: #04121a; }
body.body-tpl-lxqn8 .rank-main h2 { color: #f2f6ff; }
body.body-tpl-lxqn8 .rank-main p { color: var(--au-muted); }
body.body-tpl-lxqn8 .rank-play {
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #7ff0e0;
}

/* ============================ 子页 Hero ============================ */
body.body-tpl-lxqn8 .page-hero {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(34, 211, 238, 0.04));
}
body.body-tpl-lxqn8 .compact-hero .container {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  border-radius: 22px;
  box-shadow: none;
}
body.body-tpl-lxqn8 .dark-hero { background: linear-gradient(135deg, #060910, #0c1424); }
body.body-tpl-lxqn8 .dark-hero .container {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(255, 255, 255, 0.02));
  border-color: rgba(45, 212, 191, 0.24);
}
body.body-tpl-lxqn8 .eyebrow { color: var(--au-accent); }
body.body-tpl-lxqn8 .page-hero h1 { color: #f4f7ff; }
body.body-tpl-lxqn8 .page-hero p { color: var(--au-muted); }

/* ============================ 分类页 · 顶部频道切换条 ============================ */
body.body-tpl-lxqn8 .cat-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
body.body-tpl-lxqn8 .cat-switch a {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  color: var(--au-muted);
  font-weight: 700;
  font-size: 14px;
  transition: 0.22s;
}
body.body-tpl-lxqn8 .cat-switch a:hover {
  color: #eaf0ff;
  border-color: rgba(45, 212, 191, 0.5);
}
body.body-tpl-lxqn8 .cat-switch a.is-active {
  background: var(--au-grad);
  color: #04121a;
  border-color: transparent;
}
body.body-tpl-lxqn8 .cat-count {
  color: var(--au-muted);
  font-weight: 700;
  font-size: 14px;
}
body.body-tpl-lxqn8 .cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
body.body-tpl-lxqn8 .cat-toolbar .inline-search { margin: 0; }

/* ============================ 分类总览卡 ============================ */
body.body-tpl-lxqn8 .overview-card {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  box-shadow: none;
  border-radius: 18px;
}
body.body-tpl-lxqn8 .overview-card:hover { border-color: rgba(45, 212, 191, 0.4); }
body.body-tpl-lxqn8 .overview-title { color: #f2f6ff; }
body.body-tpl-lxqn8 .overview-title:hover { color: var(--au-accent); }
body.body-tpl-lxqn8 .overview-card p { color: var(--au-muted); }
body.body-tpl-lxqn8 .overview-card li { border-top: 1px solid var(--au-line); }
body.body-tpl-lxqn8 .overview-card li a { color: #c3cee2; }
body.body-tpl-lxqn8 .overview-card li a:hover { color: var(--au-accent); }

/* ============================ 详情页 ============================ */
body.body-tpl-lxqn8.detail-body {
  background:
    radial-gradient(900px 460px at 80% 0%, rgba(34, 211, 238, 0.14), transparent 60%),
    linear-gradient(180deg, #060910 0, #0a0f1c 520px, #080b14 100%);
}
body.body-tpl-lxqn8 .breadcrumb { color: var(--au-muted); }
body.body-tpl-lxqn8 .breadcrumb a { color: var(--au-accent); }
body.body-tpl-lxqn8 .detail-copy h1 { color: #f6f8ff; }
body.body-tpl-lxqn8 .lead { color: #c3cee2; }
body.body-tpl-lxqn8 .detail-tags span {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: #7ff0e0;
}
body.body-tpl-lxqn8 .player-box {
  background: #000;
  border: 1px solid var(--au-line-strong);
  border-radius: 22px;
  box-shadow: var(--au-shadow);
}
body.body-tpl-lxqn8 .story-card,
body.body-tpl-lxqn8 .side-card {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  box-shadow: none;
  border-radius: 20px;
}
body.body-tpl-lxqn8 .story-card h2,
body.body-tpl-lxqn8 .side-card h2 { color: #f2f6ff; }
body.body-tpl-lxqn8 .story-card p { color: #c0cade; }
body.body-tpl-lxqn8 .info-table div {
  background: var(--au-surface-2);
  border: 1px solid var(--au-line);
}
body.body-tpl-lxqn8 .info-table span { color: var(--au-muted); }
body.body-tpl-lxqn8 .info-table strong { color: #eef2fb; }
body.body-tpl-lxqn8 .side-card a {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: #9ff0e2;
}
body.body-tpl-lxqn8 .side-card a:hover { background: rgba(45, 212, 191, 0.18); }

/* ============================ 底部（差异化） ============================ */
body.body-tpl-lxqn8 .site-footer {
  position: relative;
  margin-top: 80px;
  background: linear-gradient(180deg, #070a12, #0b1220);
  color: #b7c2d8;
  border-top: 1px solid var(--au-line);
}
body.body-tpl-lxqn8 .site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--au-grad);
  opacity: 0.9;
}
body.body-tpl-lxqn8 .footer-inner {
  grid-template-columns: 1.4fr 2fr;
  gap: 40px;
  padding: 52px 0;
}
body.body-tpl-lxqn8 .footer-inner h2 {
  color: #f2f6ff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
body.body-tpl-lxqn8 .footer-inner h2::before {
  content: '剧';
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--au-grad);
  color: #04121a;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 900;
}
body.body-tpl-lxqn8 .footer-inner p { color: var(--au-muted); }
body.body-tpl-lxqn8 .footer-inner nav { gap: 12px; }
body.body-tpl-lxqn8 .footer-inner a {
  background: var(--au-surface);
  border: 1px solid var(--au-line);
  color: #c3cee2;
  border-radius: 12px;
  font-weight: 600;
}
body.body-tpl-lxqn8 .footer-inner a:hover {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.4);
  color: #9ff0e2;
}
body.body-tpl-lxqn8 .footer-bottom {
  border-top: 1px solid var(--au-line);
  color: var(--au-muted);
}

/* ============================ ABABSEO 飞行标记（无胶囊、无链接） ============================ */
body.body-tpl-lxqn8 .footer-mark {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 6px;
  display: flex;
  justify-content: center;
}
body.body-tpl-lxqn8 .ababseo-fly {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  padding: 0;
  cursor: default;
  user-select: none;
  animation: ababseoFloat 3.6s ease-in-out infinite;
}
body.body-tpl-lxqn8 .ababseo-fly__plane {
  display: inline-grid;
  place-items: center;
  color: #2dd4bf;
  filter: drop-shadow(0 0 9px rgba(45, 212, 191, 0.7));
  animation: ababseoPlane 3.6s ease-in-out infinite;
}
body.body-tpl-lxqn8 .ababseo-fly__text {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.22em;
  background: linear-gradient(90deg, #2dd4bf, #22d3ee 45%, #38bdf8 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: ababseoShine 4.5s linear infinite;
}
@keyframes ababseoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes ababseoPlane {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  25% { transform: translate(3px, -3px) rotate(3deg); }
  50% { transform: translate(6px, -5px) rotate(-3deg); }
  75% { transform: translate(2px, -2px) rotate(5deg); }
}
@keyframes ababseoShine {
  to { background-position: 200% center; }
}
@media (prefers-reduced-motion: reduce) {
  body.body-tpl-lxqn8 .ababseo-fly,
  body.body-tpl-lxqn8 .ababseo-fly__plane,
  body.body-tpl-lxqn8 .ababseo-fly__text {
    animation: none;
  }
}

/* ============================ 播放器自适应 ============================ */
body.body-tpl-lxqn8 .player-box video {
  width: 100%;
  max-height: 74vh;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

/* ============================ 响应式 ============================ */
@media (max-width: 1024px) {
  body.body-tpl-lxqn8 .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body.body-tpl-lxqn8 .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body.site-body.body-tpl-lxqn8 {
    background-attachment: scroll;
  }
  body.body-tpl-lxqn8 .site-header {
    background: rgba(10, 14, 26, 0.97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  body.body-tpl-lxqn8 .hero-nav,
  body.body-tpl-lxqn8 .poster-year {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  body.body-tpl-lxqn8 .movie-card:hover,
  body.body-tpl-lxqn8 .category-tile:hover {
    transform: none;
    box-shadow: none;
  }
  body.body-tpl-lxqn8 .header-inner { height: auto; min-height: 64px; padding: 10px 0; }
  body.body-tpl-lxqn8 .nav-links,
  body.body-tpl-lxqn8 .search-box { display: none; }
  body.body-tpl-lxqn8 .menu-toggle { display: flex; margin-left: auto; }
  body.body-tpl-lxqn8 .movie-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  body.body-tpl-lxqn8 .category-grid { grid-template-columns: 1fr; }
  body.body-tpl-lxqn8 .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  body.body-tpl-lxqn8 .section-head .inline-search {
    width: 100%;
  }
  body.body-tpl-lxqn8 .section-head .inline-search input {
    width: 100%;
  }
  body.body-tpl-lxqn8 .section-head p { margin-left: 0; }
  body.body-tpl-lxqn8 .cat-toolbar { flex-direction: column; align-items: stretch; }
  body.body-tpl-lxqn8 .poster-play { width: 48px; height: 48px; }
}
@media (max-width: 480px) {
  body.body-tpl-lxqn8 .movie-grid { grid-template-columns: 1fr; }
  body.body-tpl-lxqn8 .footer-inner nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  body.body-tpl-lxqn8 .movie-card,
  body.body-tpl-lxqn8 .category-tile,
  body.body-tpl-lxqn8 .poster-play,
  body.body-tpl-lxqn8 .nav-link::after { transition: none; }
}
