/* roulang page: index */
:root {
      --bg-base: #0B0D13;
      --bg-surface: #141824;
      --bg-elevated: #1D2336;
      --color-primary: #FF2E74;
      --color-primary-hover: #FF528F;
      --color-secondary: #00E5FF;
      --text-main: #FFFFFF;
      --text-muted: #9BA3BF;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(255, 46, 116, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.45);
      --font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    }

    * { box-sizing: border-box; }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-family);
      line-height: 1.8;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    a:hover, a:focus { color: var(--color-primary); text-decoration: none; outline: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* 刊头导航 */
    .magazine-header {
      background: #08090E;
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-top {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-masthead {
      font-size: 1.85rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-transform: uppercase;
    }
    .brand-masthead span { color: var(--color-primary); }
    .header-meta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .meta-tag {
      background: rgba(255, 46, 116, 0.12);
      border: 1px solid rgba(255, 46, 116, 0.3);
      color: var(--color-primary);
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }
    .header-search {
      position: relative;
      width: 220px;
    }
    .header-search input {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: #fff;
      font-size: 0.85rem;
      border-radius: 20px;
      padding: 0.35rem 2rem 0.35rem 0.85rem;
      margin-bottom: 0;
      height: 34px;
    }
    .header-search input:focus {
      border-color: var(--color-primary);
      background: var(--bg-elevated);
      box-shadow: none;
    }
    .header-search i {
      position: absolute;
      right: 12px;
      top: 9px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* 下层频道条 */
    .header-channels {
      padding: 0.4rem 0;
      background: rgba(11, 13, 19, 0.95);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .channel-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap;
    }
    .channel-nav li {
      position: relative;
      padding: 0 1.25rem;
    }
    .channel-nav li:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }
    .channel-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: #E2E8F0;
      padding: 0.4rem 0;
      display: inline-block;
    }
    .channel-nav a:hover, .channel-nav a.active {
      color: var(--color-primary);
      border-bottom: 2px solid var(--color-primary);
    }

    /* 全局容器与板块 */
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    .section-block {
      padding: 5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .section-block-alt {
      background-color: rgba(20, 24, 36, 0.4);
    }
    .section-header {
      margin-bottom: 3rem;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--color-secondary);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 860px;
      margin-bottom: 0;
    }

    /* 按钮通用 */
    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      padding: 0.8rem 1.85rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(255, 46, 116, 0.35);
    }
    .btn-main:hover {
      background: var(--color-primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255, 46, 116, 0.45);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      color: #fff;
      font-weight: 600;
      padding: 0.8rem 1.85rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.25s ease;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
      color: #fff;
    }

    /* 板块1：全宽矮横幅 Hero（布局变体 D 价值主张） */
    .hero-strip {
      background: linear-gradient(135deg, rgba(11, 13, 19, 0.96) 0%, rgba(20, 24, 36, 0.82) 100%), url('/assets/images/b50899e8b94d28f3.jpg') center/cover no-repeat;
      padding: 3.75rem 0 3.25rem 0;
      border-bottom: 1px solid rgba(255, 46, 116, 0.2);
    }
    .hero-strip-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-h1 {
      font-size: 2.35rem;
      font-weight: 900;
      margin-bottom: 1.1rem;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }
    .hero-h1 span {
      background: linear-gradient(90deg, #FF2E74 0%, #00E5FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-summary {
      color: #CBD5E1;
      font-size: 1.02rem;
      line-height: 1.8;
      max-width: 900px;
      margin-bottom: 1.75rem;
    }
    .hero-action-bar {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
    }
    .hero-stat-pills {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat-pill-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .stat-pill-item strong {
      color: var(--color-secondary);
      font-size: 1.1rem;
    }

    /* 板块2：功能分组矩阵 */
    .feature-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2.2rem 1.8rem;
      transition: all 0.3s ease;
      height: 100%;
    }
    .feature-card:hover {
      border-color: var(--border-focus);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }
    .feature-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(255, 46, 116, 0.12);
      border: 1px solid rgba(255, 46, 116, 0.3);
      color: var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.3rem;
    }
    .feature-title {
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .feature-desc {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.75;
      margin-bottom: 0;
    }

    /* 板块3：多端使用场景 */
    .scene-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .scene-img-wrapper {
      position: relative;
      height: 180px;
      overflow: hidden;
    }
    .scene-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .scene-card:hover .scene-img-wrapper img {
      transform: scale(1.05);
    }
    .scene-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0, 229, 255, 0.9);
      color: #0B0D13;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.15rem 0.6rem;
      border-radius: var(--radius-sm);
    }
    .scene-body {
      padding: 1.5rem;
      flex-grow: 1;
    }
    .scene-name {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .scene-desc {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* 板块4：播放器控制面板演示 */
    .player-mockup-wrapper {
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 40px rgba(0,0,0,0.8);
      overflow: hidden;
      position: relative;
    }
    .player-screen-sim {
      position: relative;
      min-height: 420px;
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%), url('/assets/images/16fd1fb4dac2ecec.jpg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.5rem;
    }
    .player-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0, 0, 0, 0.6);
      padding: 0.5rem 1rem;
      border-radius: var(--radius-sm);
      backdrop-filter: blur(8px);
    }
    .player-playhead-controls {
      background: rgba(11, 13, 19, 0.92);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
      backdrop-filter: blur(12px);
    }
    .progress-bar-wrap {
      height: 6px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 3px;
      margin-bottom: 1rem;
      position: relative;
      cursor: pointer;
    }
    .progress-bar-fill {
      width: 48%;
      height: 100%;
      background: linear-gradient(90deg, #FF2E74 0%, #00E5FF 100%);
      border-radius: 3px;
    }
    .control-actions-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .ctrl-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .ctrl-btn {
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      opacity: 0.85;
      transition: opacity 0.2s;
    }
    .ctrl-btn:hover { opacity: 1; color: var(--color-primary); }
    .quality-select-badge {
      background: var(--color-primary);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
    }

    /* 板块5：热播追踪与里程碑数据 */
    .metric-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2rem 1.5rem;
      text-align: center;
      height: 100%;
    }
    .metric-number {
      font-size: 2.6rem;
      font-weight: 900;
      color: var(--color-secondary);
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }
    .metric-label {
      font-size: 1rem;
      font-weight: 600;
      color: #FFFFFF;
      margin-bottom: 0.4rem;
    }
    .metric-desc {
      color: var(--text-muted);
      font-size: 0.84rem;
      margin-bottom: 0;
      line-height: 1.6;
    }

    /* 板块6：订阅套餐与观影权益 */
    .tier-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 2.5rem 1.8rem;
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .tier-card.featured {
      background: linear-gradient(180deg, #1A1F30 0%, #141824 100%);
      border-color: var(--color-primary);
      box-shadow: 0 12px 30px rgba(255, 46, 116, 0.2);
    }
    .tier-featured-flag {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-primary);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.25rem 0.9rem;
      border-radius: 20px;
      text-transform: uppercase;
    }
    .tier-name {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }
    .tier-price {
      font-size: 2.2rem;
      font-weight: 900;
      color: #fff;
      margin: 1.2rem 0;
    }
    .tier-price small {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 400;
    }
    .tier-feature-list {
      list-style: none;
      margin: 0 0 2rem 0;
      padding: 0;
      flex-grow: 1;
    }
    .tier-feature-list li {
      font-size: 0.9rem;
      color: #CBD5E1;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .tier-feature-list li i {
      color: var(--color-secondary);
      font-size: 0.8rem;
    }

    /* 板块7：高分追番评价墙 */
    .review-bubble {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.75rem;
      margin-bottom: 1.5rem;
      position: relative;
    }
    .review-rating {
      color: #FFB800;
      font-size: 0.85rem;
      margin-bottom: 0.6rem;
    }
    .review-quote {
      color: #E2E8F0;
      font-size: 0.92rem;
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .review-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-elevated);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      font-weight: 700;
      font-size: 0.85rem;
    }
    .review-author-name {
      font-size: 0.88rem;
      font-weight: 600;
    }
    .review-author-tag {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* 板块8：资深动漫博主与达人口碑 */
    .blogger-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2rem;
      height: 100%;
    }
    .blogger-info {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }
    .blogger-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(0, 229, 255, 0.15);
      border: 1px solid rgba(0, 229, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-secondary);
      font-size: 1.2rem;
    }
    .blogger-channel {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .blogger-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .blogger-endorsement {
      font-size: 0.92rem;
      color: #CBD5E1;
      line-height: 1.75;
      margin-bottom: 0;
    }

    /* 板块9：周更排播时间表 */
    .calendar-tab-row {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
    }
    .cal-day-btn {
      flex: 1;
      min-width: 90px;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      padding: 0.75rem 0.5rem;
      text-align: center;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all 0.25s;
    }
    .cal-day-btn.active, .cal-day-btn:hover {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
    }
    .cal-day-name { font-size: 0.95rem; font-weight: 700; }
    .cal-day-sub { font-size: 0.75rem; opacity: 0.8; }
    .cal-anime-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.25rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      margin-bottom: 1rem;
      transition: transform 0.25s ease;
    }
    .cal-anime-card:hover {
      transform: translateX(4px);
      border-color: var(--border-focus);
    }
    .cal-anime-time {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--color-secondary);
      min-width: 60px;
    }
    .cal-anime-info { flex-grow: 1; }
    .cal-anime-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
    .cal-anime-meta { font-size: 0.8rem; color: var(--text-muted); }

    /* 板块10：核心题材分类入口（唯一允许链接分类页的独立板块） */
    .genre-card {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.5rem;
      border: 1px solid var(--border-subtle);
      transition: all 0.3s ease;
    }
    .genre-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 13, 19, 0.1) 0%, rgba(11, 13, 19, 0.9) 100%);
      z-index: 1;
      transition: opacity 0.3s ease;
    }
    .genre-card:hover::before {
      opacity: 0.75;
    }
    .genre-card:hover {
      transform: translateY(-4px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-card);
    }
    .genre-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      z-index: 0;
    }
    .genre-card:hover .genre-bg-img {
      transform: scale(1.08);
    }
    .genre-card-info {
      position: relative;
      z-index: 2;
    }
    .genre-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.35rem;
    }
    .genre-meta {
      font-size: 0.82rem;
      color: #CBD5E1;
      margin-bottom: 0;
    }

    /* 板块11：深度资讯与番剧剖析 */
    .article-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .article-card:hover {
      border-color: var(--border-focus);
      transform: translateY(-3px);
    }
    .article-thumb {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .article-card:hover .article-thumb img {
      transform: scale(1.06);
    }
    .article-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 13, 19, 0.85);
      border: 1px solid var(--border-subtle);
      color: var(--color-secondary);
      font-size: 0.72rem;
      padding: 0.15rem 0.5rem;
      border-radius: var(--radius-sm);
    }
    .article-content {
      padding: 1.4rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .article-title {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.45;
      margin-bottom: 0.6rem;
    }
    .article-excerpt {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .article-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.78rem;
      color: var(--text-muted);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.8rem;
    }

    /* 板块12：影迷常见问题排障 FAQ */
    .faq-accordion {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .faq-item:hover {
      border-color: var(--border-focus);
    }
    .faq-question {
      padding: 1.25rem 1.5rem;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
    }
    .faq-question i {
      color: var(--color-primary);
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-answer {
      display: none;
      padding: 0 1.5rem 1.4rem 1.5rem;
      color: #CBD5E1;
      font-size: 0.92rem;
      line-height: 1.8;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
    .faq-item.active .faq-answer {
      display: block;
    }

    /* 板块13：终极入库与追番 CTA */
    .cta-banner {
      background: radial-gradient(circle at top right, rgba(255, 46, 116, 0.2) 0%, rgba(11, 13, 19, 0.95) 70%), url('/assets/images/0ec1d349d13ef206.jpg') center/cover no-repeat;
      border: 1px solid rgba(255, 46, 116, 0.3);
      border-radius: var(--radius-lg);
      padding: 4rem 3rem;
      position: relative;
      overflow: hidden;
    }
    .cta-heading {
      font-size: 2.2rem;
      font-weight: 900;
      margin-bottom: 1rem;
      line-height: 1.25;
    }
    .cta-desc {
      color: #CBD5E1;
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 680px;
      margin-bottom: 2rem;
    }
    .cta-btns {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    /* 站点统一页脚 */
    .site-footer {
      background: #06070A;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2.5rem 0;
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .footer-brand {
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 1rem;
      display: inline-block;
    }
    .footer-brand span { color: var(--color-primary); }
    .footer-intro {
      line-height: 1.8;
      margin-bottom: 1.5rem;
      max-width: 380px;
    }
    .footer-nav-title {
      color: #fff;
      font-size: 0.98rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.65rem;
    }
    .footer-links-list a {
      color: var(--text-muted);
      font-size: 0.88rem;
    }
    .footer-links-list a:hover {
      color: var(--color-primary);
    }
    .footer-bottom {
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.82rem;
    }

    /* 响应式微调 */
    @media (max-width: 1024px) {
      .section-block { padding: 4rem 0; }
      .hero-h1 { font-size: 2rem; }
    }
    @media (max-width: 768px) {
      .header-meta { display: none; }
      .brand-masthead { font-size: 1.45rem; }
      .section-block { padding: 3.25rem 0; }
      .hero-h1 { font-size: 1.65rem; }
      .hero-stat-pills { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
      .cta-banner { padding: 2.5rem 1.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

/* roulang page: category2 */
:root {
      --bg-base: #0B0D13;
      --bg-surface: #141824;
      --bg-elevated: #1D2336;
      --color-primary: #FF2E74;
      --color-primary-hover: #FF528F;
      --color-secondary: #00E5FF;
      --text-main: #FFFFFF;
      --text-muted: #9BA3BF;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(255, 46, 116, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.45);
      --font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-family);
      line-height: 1.8;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    a:hover, a:focus { color: var(--color-primary); text-decoration: none; outline: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* 刊头导航 */
    .magazine-header {
      background: #08090E;
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-top {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-masthead {
      font-size: 1.85rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-transform: uppercase;
    }
    .brand-masthead span { color: var(--color-primary); }
    .header-meta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .meta-tag {
      background: rgba(255, 46, 116, 0.12);
      border: 1px solid rgba(255, 46, 116, 0.3);
      color: var(--color-primary);
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }
    .header-search {
      position: relative;
      width: 220px;
    }
    .header-search input {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: #fff;
      font-size: 0.85rem;
      border-radius: 20px;
      padding: 0.35rem 2rem 0.35rem 0.85rem;
      margin-bottom: 0;
      height: 34px;
    }
    .header-search input:focus {
      border-color: var(--color-primary);
      background: var(--bg-elevated);
      box-shadow: none;
    }
    .header-search i {
      position: absolute;
      right: 12px;
      top: 9px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .header-channels {
      padding: 0.4rem 0;
      background: rgba(11, 13, 19, 0.95);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .channel-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap;
    }
    .channel-nav li {
      position: relative;
      padding: 0 1.25rem;
    }
    .channel-nav li:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }
    .channel-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: #E2E8F0;
      padding: 0.4rem 0;
      display: inline-block;
    }
    .channel-nav a:hover, .channel-nav a.active {
      color: var(--color-primary);
      border-bottom: 2px solid var(--color-primary);
    }

    /* 容器与全局通用 */
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    .section-block {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .section-block-alt {
      background-color: rgba(20, 24, 36, 0.45);
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--color-secondary);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 0.85rem;
      letter-spacing: -0.02em;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1.02rem;
      line-height: 1.8;
      max-width: 860px;
      margin-bottom: 2rem;
    }
    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.75rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(255, 46, 116, 0.35);
    }
    .btn-main:hover {
      background: var(--color-primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255, 46, 116, 0.45);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.75rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.25s ease;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
      color: #fff;
    }

    /* 板块一：分类专属标题区与多级筛选台 */
    .category-filter-header {
      padding: 2.8rem 0 2rem 0;
      background: linear-gradient(180deg, #101420 0%, #0B0D13 100%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .category-h1 {
      font-size: 2.3rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .category-h1 i {
      color: var(--color-primary);
    }
    .category-summary {
      color: var(--text-muted);
      font-size: 1.05rem;
      margin-bottom: 2rem;
      max-width: 900px;
    }
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.8rem;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .filter-label {
      width: 95px;
      flex-shrink: 0;
      color: #64748B;
      font-size: 0.88rem;
      font-weight: 600;
      padding-top: 0.25rem;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      flex-grow: 1;
    }
    .filter-opt {
      font-size: 0.85rem;
      color: #CBD5E1;
      padding: 0.25rem 0.85rem;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.2s ease;
      background: rgba(255, 255, 255, 0.03);
    }
    .filter-opt:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-opt.active {
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(255, 46, 116, 0.35);
    }

    /* 板块二：海报核心网格与卡片 */
    .poster-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 1.8rem;
    }
    .poster-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 46, 116, 0.5);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }
    .poster-media {
      position: relative;
      width: 100%;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #000;
    }
    .poster-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-media img {
      transform: scale(1.06);
    }
    .poster-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(11, 13, 19, 0.85);
      border: 1px solid var(--color-secondary);
      color: var(--color-secondary);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.15rem 0.5rem;
      border-radius: 3px;
      backdrop-filter: blur(4px);
    }
    .poster-rate {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255, 46, 116, 0.9);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 800;
      padding: 0.15rem 0.55rem;
      border-radius: 3px;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .poster-overlay-status {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem 0.85rem 0.6rem;
      background: linear-gradient(to top, rgba(11, 13, 19, 0.95), transparent);
      color: #E2E8F0;
      font-size: 0.78rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .poster-info {
      padding: 1.1rem 1rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      line-height: 1.4;
      color: #FFFFFF;
    }
    .poster-meta-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      margin-bottom: 0.75rem;
    }
    .p-tag {
      font-size: 0.7rem;
      background: rgba(255, 255, 255, 0.06);
      color: #94A3B8;
      padding: 0.1rem 0.45rem;
      border-radius: 3px;
    }
    .poster-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .poster-action {
      margin-top: auto;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .poster-action .play-link {
      color: var(--color-primary);
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    /* 列表底部控制器 */
    .catalog-pagination-wrap {
      text-align: center;
      padding-top: 2rem;
    }
    .catalog-pager {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .catalog-pager a, .catalog-pager span {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      font-size: 0.88rem;
      color: #CBD5E1;
    }
    .catalog-pager a.active, .catalog-pager span.active {
      background: var(--color-primary);
      color: #fff;
      border-color: var(--color-primary);
      font-weight: bold;
    }

    /* 板块三：TOP 10 榜单卡片 */
    .rank-list-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }
    .rank-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      position: relative;
      transition: all 0.25s ease;
    }
    .rank-item:hover {
      border-color: rgba(0, 229, 255, 0.4);
      background: var(--bg-elevated);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1;
      width: 35px;
      text-align: center;
      color: #475569;
      font-style: italic;
    }
    .rank-num.top-1 { color: #FF2E74; }
    .rank-num.top-2 { color: #FF7B00; }
    .rank-num.top-3 { color: #00E5FF; }
    .rank-thumb {
      width: 58px;
      height: 78px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
      background: #000;
    }
    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .rank-detail {
      flex-grow: 1;
      min-width: 0;
    }
    .rank-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.3rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .rank-data {
      font-size: 0.78rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .rank-score {
      color: #FBBF24;
      font-weight: 700;
    }

    /* 板块四：专属专题合辑 */
    .feature-curation-card {
      background: linear-gradient(145deg, #1A1F30 0%, #121522 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .feature-curation-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--color-primary);
    }
    .curation-tag {
      color: var(--color-secondary);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }
    .curation-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .curation-desc {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .curation-meta-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 1rem;
      font-size: 0.85rem;
      color: #CBD5E1;
    }

    /* 板块五：深度特征指南 */
    .guide-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2.2rem;
      margin-bottom: 1.5rem;
    }
    .guide-box h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .guide-box h4 i {
      color: var(--color-primary);
    }
    .guide-box p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.85;
      margin-bottom: 0;
    }
    .guide-box ol, .guide-box ul {
      margin-left: 1.25rem;
      margin-top: 0.75rem;
      margin-bottom: 0;
      color: #CBD5E1;
      font-size: 0.92rem;
    }
    .guide-box li {
      margin-bottom: 0.5rem;
      line-height: 1.7;
    }

    /* 板块六：FAQ 排障 */
    .faq-item-custom {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-q {
      padding: 1.2rem 1.5rem;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.02);
    }
    .faq-q i {
      color: var(--color-secondary);
      transition: transform 0.3s ease;
    }
    .faq-a {
      padding: 0 1.5rem 1.3rem;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.8;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 1rem;
    }

    /* 板块七：轻量型订阅 CTA 横幅 */
    .notify-strip {
      background: linear-gradient(135deg, rgba(29, 35, 54, 0.95) 0%, rgba(11, 13, 19, 0.98) 100%), url('/assets/images/2b1d7f6815b00484.jpg') center/cover no-repeat;
      border: 1px solid rgba(0, 229, 255, 0.25);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }
    .notify-title {
      font-size: 1.85rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .notify-title span {
      color: var(--color-secondary);
    }
    .notify-desc {
      color: var(--text-muted);
      font-size: 0.98rem;
      margin-bottom: 0;
      line-height: 1.7;
    }
    .notify-form {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }
    .notify-form input {
      background: rgba(11, 13, 19, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      padding: 0.75rem 1.2rem;
      border-radius: var(--radius-sm);
      height: 48px;
      margin-bottom: 0;
      font-size: 0.9rem;
    }
    .notify-form input:focus {
      border-color: var(--color-secondary);
      background: #0B0D13;
      box-shadow: none;
    }

    /* 页脚样式 */
    .site-footer {
      background: #07080C;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .footer-brand {
      font-size: 1.6rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 1rem;
      display: inline-block;
      text-transform: uppercase;
    }
    .footer-brand span { color: var(--color-primary); }
    .footer-intro {
      line-height: 1.8;
      color: #94A3B8;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }
    .footer-nav-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
      letter-spacing: 0.05em;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.6rem;
    }
    .footer-links-list a {
      color: #94A3B8;
      font-size: 0.88rem;
    }
    .footer-links-list a:hover {
      color: var(--color-primary);
      padding-left: 4px;
    }
    .footer-bottom {
      margin-top: 3.5rem;
      padding-top: 1.8rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.82rem;
      color: #64748B;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .section-title { font-size: 1.75rem; }
      .category-h1 { font-size: 1.9rem; }
    }
    @media (max-width: 768px) {
      .header-meta { display: none; }
      .brand-masthead { font-size: 1.45rem; }
      .section-block { padding: 3rem 0; }
      .filter-row { flex-direction: column; gap: 0.4rem; }
      .filter-label { width: 100%; }
      .notify-form { flex-direction: column; align-items: stretch; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

/* roulang page: category1 */
:root {
      --bg-base: #0B0D13;
      --bg-surface: #141824;
      --bg-elevated: #1D2336;
      --color-primary: #FF2E74;
      --color-primary-hover: #FF528F;
      --color-secondary: #00E5FF;
      --text-main: #FFFFFF;
      --text-muted: #9BA3BF;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(255, 46, 116, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.45);
      --font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-family);
      line-height: 1.8;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    a:hover, a:focus { color: var(--color-primary); text-decoration: none; outline: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* 刊头导航 */
    .magazine-header {
      background: #08090E;
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-top {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-masthead {
      font-size: 1.85rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-transform: uppercase;
    }
    .brand-masthead span { color: var(--color-primary); }
    .header-meta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .meta-tag {
      background: rgba(255, 46, 116, 0.12);
      border: 1px solid rgba(255, 46, 116, 0.3);
      color: var(--color-primary);
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }
    .header-search {
      position: relative;
      width: 220px;
    }
    .header-search input {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: #fff;
      font-size: 0.85rem;
      border-radius: 20px;
      padding: 0.35rem 2rem 0.35rem 0.85rem;
      margin-bottom: 0;
      height: 34px;
    }
    .header-search input:focus {
      border-color: var(--color-primary);
      background: var(--bg-elevated);
      box-shadow: none;
    }
    .header-search i {
      position: absolute;
      right: 12px;
      top: 9px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* 下层频道条 */
    .header-channels {
      padding: 0.4rem 0;
      background: rgba(11, 13, 19, 0.95);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .channel-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap;
    }
    .channel-nav li {
      position: relative;
      padding: 0 1.25rem;
    }
    .channel-nav li:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }
    .channel-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: #E2E8F0;
      padding: 0.4rem 0;
      display: inline-block;
    }
    .channel-nav a:hover, .channel-nav a.active {
      color: var(--color-primary);
      border-bottom: 2px solid var(--color-primary);
    }

    /* 全局容器与板块通用 */
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    .section-block {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .section-block-alt {
      background-color: rgba(20, 24, 36, 0.5);
    }
    .section-header {
      margin-bottom: 2.5rem;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--color-secondary);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-size: 1.95rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 0.85rem;
      letter-spacing: -0.02em;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.75;
      max-width: 860px;
      margin-bottom: 0;
    }

    /* 按钮样式 */
    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.65rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(255, 46, 116, 0.35);
    }
    .btn-main:hover {
      background: var(--color-primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255, 46, 116, 0.45);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.65rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.25s ease;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
      color: #fff;
    }

    /* 板块一：分类专属标题、首映倒计时与多维筛选台 */
    .category-masthead {
      padding: 3rem 0 2rem 0;
      background: radial-gradient(circle at 80% 20%, rgba(255, 46, 116, 0.15), transparent 50%), #0d101a;
      border-bottom: 1px solid var(--border-subtle);
    }
    .category-h1 {
      font-size: 2.25rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .category-h1-badge {
      font-size: 0.8rem;
      background: var(--color-primary);
      color: #fff;
      padding: 0.25rem 0.6rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
    }
    .category-lead {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 820px;
      margin-bottom: 2rem;
    }

    /* 直播预告与开播倒计时卡片 */
    .live-countdown-banner {
      background: linear-gradient(90deg, #181d2e 0%, #111420 100%);
      border: 1px solid rgba(255, 46, 116, 0.3);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      margin-bottom: 2.5rem;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .live-countdown-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--color-primary);
    }
    .countdown-timer-group {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }
    .timer-unit {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      padding: 0.4rem 0.75rem;
      text-align: center;
      min-width: 54px;
    }
    .timer-val {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--color-secondary);
      line-height: 1.1;
    }
    .timer-label {
      font-size: 0.65rem;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    /* 筛选台组件 */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      padding: 0.65rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-name {
      width: 80px;
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 600;
      padding-top: 0.2rem;
      flex-shrink: 0;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      flex-grow: 1;
    }
    .filter-tag-item {
      font-size: 0.82rem;
      padding: 0.2rem 0.75rem;
      border-radius: var(--radius-sm);
      color: #CAD1E0;
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-tag-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-tag-item.active {
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
    }

    /* 板块二：番剧海报网格 (2:3) */
    .anime-poster-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
    }
    .poster-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .poster-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 46, 116, 0.5);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 46, 116, 0.2);
    }
    .poster-thumb-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #111420;
    }
    .poster-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-wrap img {
      transform: scale(1.05);
    }
    .badge-resolution {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(11, 13, 19, 0.85);
      backdrop-filter: blur(4px);
      border: 1px solid var(--color-secondary);
      color: var(--color-secondary);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.15rem 0.45rem;
      border-radius: 3px;
      z-index: 2;
    }
    .badge-state {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--color-primary);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.15rem 0.45rem;
      border-radius: 3px;
      z-index: 2;
    }
    .poster-info {
      padding: 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .poster-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 0.4rem;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .poster-subinfo {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.5rem;
    }
    .poster-rate {
      color: #FFB800;
      font-weight: 700;
    }

    /* 板块三：热播 TOP 10 榜单 (横向精炼行) */
    .top10-wrapper {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .top10-row {
      display: flex;
      align-items: center;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: background-color 0.2s ease;
    }
    .top10-row:last-child {
      border-bottom: none;
    }
    .top10-row:hover {
      background-color: var(--bg-elevated);
    }
    .top10-num {
      width: 40px;
      font-size: 1.35rem;
      font-weight: 900;
      font-style: italic;
      color: #4A5568;
    }
    .top10-row:nth-child(1) .top10-num { color: #FF2E74; }
    .top10-row:nth-child(2) .top10-num { color: #FF7B00; }
    .top10-row:nth-child(3) .top10-num { color: #00E5FF; }
    .top10-name {
      flex: 2;
      font-weight: 600;
      color: #fff;
    }
    .top10-heat {
      flex: 1;
      font-size: 0.85rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .top10-spec {
      flex: 1;
      font-size: 0.85rem;
      color: var(--color-secondary);
      text-align: right;
    }

    /* 板块四：专属合辑与专题联动 */
    .anthology-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: border-color 0.3s;
    }
    .anthology-card:hover {
      border-color: rgba(0, 229, 255, 0.4);
    }
    .anthology-cover {
      position: relative;
      aspect-ratio: 16 / 9;
    }
    .anthology-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .anthology-body {
      padding: 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .anthology-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #fff;
    }

    /* 板块五：特征解析与观影指南 */
    .guide-box {
      background: var(--bg-surface);
      border-left: 4px solid var(--color-secondary);
      padding: 1.75rem;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      height: 100%;
    }
    .guide-box h4 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .guide-box p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 0;
      line-height: 1.7;
    }

    /* 板块六：FAQ 手风琴折叠面板 */
    .faq-container {
      max-width: 960px;
      margin: 0 auto;
    }
    .faq-card-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-question-btn {
      width: 100%;
      text-align: left;
      padding: 1.25rem 1.5rem;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.05rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .faq-question-btn i {
      color: var(--color-primary);
      transition: transform 0.3s;
    }
    .faq-answer-content {
      padding: 0 1.5rem 1.25rem 1.5rem;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      margin-top: -0.25rem;
      padding-top: 1rem;
    }

    /* 板块七：轻量更新订阅 CTA */
    .subscribe-cta-strip {
      background: linear-gradient(135deg, rgba(29, 35, 54, 0.95) 0%, rgba(20, 24, 36, 0.98) 100%);
      border: 1px solid rgba(0, 229, 255, 0.3);
      border-radius: var(--radius-md);
      padding: 2.5rem;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    /* 页脚 */
    .site-footer {
      background: #06070B;
      padding: 4.5rem 0 2.5rem 0;
      border-top: 1px solid var(--border-subtle);
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .footer-brand {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      display: inline-block;
      margin-bottom: 1rem;
      letter-spacing: 0.05em;
    }
    .footer-brand span { color: var(--color-primary); }
    .footer-intro {
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: #94A3B8;
      max-width: 320px;
    }
    .footer-nav-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.65rem;
    }
    .footer-links-list a {
      color: #94A3B8;
    }
    .footer-links-list a:hover {
      color: var(--color-primary);
    }
    .footer-bottom {
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.8rem;
    }

    /* 移动端响应式微调 */
    @media (max-width: 768px) {
      .header-meta {
        justify-content: space-between;
        margin-top: 0.75rem;
        flex-wrap: wrap;
      }
      .header-search {
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
      }
      .section-block {
        padding: 3rem 0;
      }
      .category-h1 {
        font-size: 1.75rem;
        flex-direction: column;
        align-items: flex-start;
      }
      .top10-row {
        flex-wrap: wrap;
        gap: 0.5rem;
      }
      .top10-heat, .top10-spec {
        font-size: 0.75rem;
      }
      .subscribe-cta-strip {
        padding: 1.5rem;
      }
      .countdown-timer-group {
        justify-content: flex-start;
        margin-top: 1rem;
      }
    }

/* roulang page: category3 */
:root {
      --bg-base: #0B0D13;
      --bg-surface: #141824;
      --bg-elevated: #1D2336;
      --color-primary: #FF2E74;
      --color-primary-hover: #FF528F;
      --color-secondary: #00E5FF;
      --text-main: #FFFFFF;
      --text-muted: #9BA3BF;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(255, 46, 116, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.45);
      --font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-family);
      line-height: 1.8;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    a:hover, a:focus { color: var(--color-primary); text-decoration: none; outline: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* 刊头导航 */
    .magazine-header {
      background: #08090E;
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-top {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-masthead {
      font-size: 1.85rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-transform: uppercase;
    }
    .brand-masthead span { color: var(--color-primary); }
    .header-meta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .meta-tag {
      background: rgba(255, 46, 116, 0.12);
      border: 1px solid rgba(255, 46, 116, 0.3);
      color: var(--color-primary);
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }
    .header-search {
      position: relative;
      width: 220px;
    }
    .header-search input {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: #fff;
      font-size: 0.85rem;
      border-radius: 20px;
      padding: 0.35rem 2rem 0.35rem 0.85rem;
      margin-bottom: 0;
      height: 34px;
    }
    .header-search input:focus {
      border-color: var(--color-primary);
      background: var(--bg-elevated);
      box-shadow: none;
    }
    .header-search i {
      position: absolute;
      right: 12px;
      top: 9px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    /* 下层频道条 */
    .header-channels {
      padding: 0.4rem 0;
      background: rgba(11, 13, 19, 0.95);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .channel-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap;
    }
    .channel-nav li {
      position: relative;
      padding: 0 1.25rem;
    }
    .channel-nav li:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }
    .channel-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: #E2E8F0;
      padding: 0.4rem 0;
      display: inline-block;
    }
    .channel-nav a:hover, .channel-nav a.active {
      color: var(--color-primary);
      border-bottom: 2px solid var(--color-primary);
    }
    
    /* 全局容器与板块基础 */
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    .section-block {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .section-block-alt {
      background-color: rgba(20, 24, 36, 0.4);
    }
    .section-header {
      margin-bottom: 2.5rem;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--color-secondary);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-size: 1.85rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.98rem;
      line-height: 1.8;
      max-width: 860px;
      margin-bottom: 0;
    }
    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(255, 46, 116, 0.35);
      font-size: 0.95rem;
    }
    .btn-main:hover {
      background: var(--color-primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255, 46, 116, 0.45);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.6rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.25s ease;
      font-size: 0.95rem;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
      color: #fff;
    }

    /* 板块一：分类专属标题、裂变邀请进度与多维多级筛选台 */
    .category-top-banner {
      padding: 3rem 0 2.5rem;
      background: linear-gradient(180deg, #121622 0%, #0B0D13 100%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .cat-main-h1 {
      font-size: 2.35rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .cat-main-h1 span {
      background: linear-gradient(90deg, #FF2E74 0%, #FF85B3 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .cat-sub-desc {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 820px;
      margin-bottom: 1.75rem;
    }
    /* 裂变邀请卡片 */
    .invite-boost-card {
      background: rgba(29, 35, 54, 0.6);
      border: 1px solid rgba(255, 46, 116, 0.25);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
      margin-bottom: 2rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .invite-info {
      flex: 1 1 360px;
    }
    .invite-info-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.35rem;
    }
    .invite-info-desc {
      color: var(--text-muted);
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
    }
    .invite-progress-wrap {
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      height: 8px;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }
    .invite-progress-bar {
      height: 100%;
      width: 65%;
      background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
      border-radius: 4px;
    }
    .invite-progress-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #94A3B8;
      margin-top: 0.35rem;
    }
    .invite-action-group {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    /* 交互筛选矩阵 */
    .filter-matrix-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      padding: 0.6rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 80px;
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 600;
      padding-top: 0.2rem;
      flex-shrink: 0;
    }
    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 0.85rem;
      align-items: center;
    }
    .filter-chip {
      font-size: 0.85rem;
      color: #CBD5E1;
      padding: 0.2rem 0.75rem;
      border-radius: 20px;
      border: 1px solid transparent;
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .filter-chip:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.2);
    }
    .filter-chip.active {
      background: rgba(255, 46, 116, 0.15);
      border-color: var(--color-primary);
      color: #fff;
      font-weight: 600;
    }

    /* 板块二：核心海报瀑布流列表 */
    .anime-poster-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 1.75rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      height: calc(100% - 1.75rem);
      position: relative;
    }
    .anime-poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 46, 116, 0.4);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
    }
    .card-thumb-wrap {
      position: relative;
      width: 100%;
      padding-top: 140%; /* 接近2:3黄金海报比例 */
      background: #111420;
      overflow: hidden;
    }
    .card-thumb-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-poster-card:hover .card-thumb-wrap img {
      transform: scale(1.05);
    }
    .badge-resolution {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(11, 13, 19, 0.85);
      color: var(--color-secondary);
      border: 1px solid rgba(0, 229, 255, 0.4);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.15rem 0.45rem;
      border-radius: var(--radius-sm);
      backdrop-filter: blur(4px);
    }
    .badge-sub {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(255, 46, 116, 0.88);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.15rem 0.5rem;
      border-radius: var(--radius-sm);
    }
    .card-meta-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem 0.75rem 0.5rem;
      background: linear-gradient(180deg, transparent 0%, rgba(11, 13, 19, 0.95) 100%);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: #CBD5E1;
    }
    .card-body-content {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .anime-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.4rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .anime-tags {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.6rem;
    }
    .anime-tag-sm {
      font-size: 0.7rem;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.05);
      padding: 0.1rem 0.4rem;
      border-radius: 3px;
    }
    .anime-brief {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0.85rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex: 1;
    }
    .anime-play-btn {
      width: 100%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      text-align: center;
      padding: 0.55rem 0;
      border-radius: var(--radius-sm);
      font-size: 0.85rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      transition: all 0.2s ease;
    }
    .anime-poster-card:hover .anime-play-btn {
      background: var(--color-primary);
      border-color: var(--color-primary);
    }
    .pagination-toolbar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .page-btn {
      min-width: 38px;
      height: 38px;
      padding: 0 0.75rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      color: #CBD5E1;
      font-size: 0.88rem;
      font-weight: 600;
      transition: all 0.2s ease;
    }
    .page-btn:hover {
      border-color: var(--color-primary);
      color: #fff;
    }
    .page-btn.active {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
    }

    /* 板块三：本分类热播 TOP 10 榜单 */
    .ranking-grid-wrap {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.25rem;
    }
    .rank-item-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.85rem;
      position: relative;
      overflow: hidden;
      transition: all 0.25s ease;
    }
    .rank-item-card:hover {
      border-color: rgba(0, 229, 255, 0.4);
      background: var(--bg-elevated);
      transform: translateY(-3px);
    }
    .rank-num-badge {
      font-size: 1.6rem;
      font-weight: 900;
      font-style: italic;
      line-height: 1;
      width: 2rem;
      text-align: center;
      color: #475569;
    }
    .rank-num-badge.top-1 { color: #FF2E74; text-shadow: 0 0 10px rgba(255, 46, 116, 0.5); }
    .rank-num-badge.top-2 { color: #00E5FF; }
    .rank-num-badge.top-3 { color: #F59E0B; }
    .rank-thumb {
      width: 48px;
      height: 64px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .rank-detail {
      flex: 1;
      min-width: 0;
    }
    .rank-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 0.2rem;
    }
    .rank-score {
      font-size: 0.75rem;
      color: #F59E0B;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .rank-heat {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 0.15rem;
    }

    /* 板块四：分类专属合辑与专题联动 */
    .feature-collection-card {
      background: linear-gradient(135deg, rgba(20, 24, 36, 0.9) 0%, rgba(29, 35, 54, 0.7) 100%);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .feature-collection-card::before {
      content: "";
      position: absolute;
      top: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(255, 46, 116, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .collection-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 1rem;
    }
    .collection-title {
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.35rem;
    }
    .collection-count {
      font-size: 0.75rem;
      color: var(--color-secondary);
      background: rgba(0, 229, 255, 0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      border: 1px solid rgba(0, 229, 255, 0.25);
    }
    .collection-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .collection-cover-stack {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.25rem;
    }
    .stack-thumb {
      width: 31%;
      height: 80px;
      border-radius: 6px;
      object-fit: cover;
      border: 1px solid var(--border-subtle);
    }

    /* 板块五：分类特征解析与观影指南 */
    .guide-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2rem;
      margin-bottom: 1.5rem;
    }
    .guide-box-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .guide-box-icon {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: rgba(255, 46, 116, 0.12);
      color: var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }
    .guide-box-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }
    .guide-box-content {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.8;
      margin: 0;
    }

    /* 板块六：分类专属FAQ */
    .faq-accordion-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
    }
    .faq-title-toggle {
      width: 100%;
      text-align: left;
      padding: 1.25rem 1.5rem;
      background: transparent;
      border: none;
      color: #fff;
      font-size: 1.05rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    .faq-title-toggle:hover {
      color: var(--color-primary);
    }
    .faq-content-body {
      padding: 0 1.5rem 1.25rem;
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.8;
    }

    /* 板块七：新番上线提醒与订阅CTA */
    .category-cta-banner {
      background: linear-gradient(135deg, #181E2E 0%, #111420 100%);
      border: 1px solid rgba(255, 46, 116, 0.3);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      position: relative;
      overflow: hidden;
    }
    .category-cta-banner::after {
      content: "";
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-heading {
      font-size: 1.9rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.75rem;
    }
    .cta-subtext {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 680px;
      margin-bottom: 1.75rem;
    }
    .subscribe-input-group {
      display: flex;
      gap: 0.75rem;
      max-width: 520px;
    }
    .subscribe-input-group input {
      flex: 1;
      background: var(--bg-base);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      border-radius: var(--radius-sm);
      padding: 0.75rem 1rem;
      font-size: 0.92rem;
      margin-bottom: 0;
      height: 48px;
    }
    .subscribe-input-group input:focus {
      border-color: var(--color-primary);
      background: var(--bg-elevated);
      box-shadow: none;
    }

    /* 页脚统一规范 */
    .site-footer {
      background: #08090E;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem 0;
    }
    .footer-brand {
      font-size: 1.6rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      margin-bottom: 1rem;
      display: inline-block;
    }
    .footer-brand span { color: var(--color-primary); }
    .footer-intro {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }
    .footer-nav-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.6rem;
    }
    .footer-links-list a {
      color: #94A3B8;
      font-size: 0.88rem;
    }
    .footer-links-list a:hover {
      color: var(--color-primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 3rem;
      padding-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    @media (max-width: 768px) {
      .header-meta { display: none; }
      .brand-masthead { font-size: 1.4rem; }
      .cat-main-h1 { font-size: 1.8rem; }
      .invite-boost-card { flex-direction: column; align-items: flex-start; }
      .invite-action-group { width: 100%; }
      .subscribe-input-group { flex-direction: column; }
      .subscribe-input-group button { width: 100%; }
      .section-block { padding: 3.5rem 0; }
    }

/* roulang page: category4 */
:root {
      --bg-base: #0B0D13;
      --bg-surface: #141824;
      --bg-elevated: #1D2336;
      --color-primary: #FF2E74;
      --color-primary-hover: #FF528F;
      --color-secondary: #00E5FF;
      --text-main: #FFFFFF;
      --text-muted: #9BA3BF;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(255, 46, 116, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.45);
      --font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-family);
      line-height: 1.8;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    a:hover, a:focus { color: var(--color-primary); text-decoration: none; outline: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* 刊头导航 */
    .magazine-header {
      background: #08090E;
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-top {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-masthead {
      font-size: 1.85rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-transform: uppercase;
    }
    .brand-masthead span { color: var(--color-primary); }
    .header-meta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .meta-tag {
      background: rgba(255, 46, 116, 0.12);
      border: 1px solid rgba(255, 46, 116, 0.3);
      color: var(--color-primary);
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }
    .header-search {
      position: relative;
      width: 220px;
    }
    .header-search input {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: #fff;
      font-size: 0.85rem;
      border-radius: 20px;
      padding: 0.35rem 2rem 0.35rem 0.85rem;
      margin-bottom: 0;
      height: 34px;
    }
    .header-search input:focus {
      border-color: var(--color-primary);
      background: var(--bg-elevated);
      box-shadow: none;
    }
    .header-search i {
      position: absolute;
      right: 12px;
      top: 9px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* 下层频道条 */
    .header-channels {
      padding: 0.4rem 0;
      background: rgba(11, 13, 19, 0.95);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .channel-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap;
    }
    .channel-nav li {
      position: relative;
      padding: 0 1.25rem;
    }
    .channel-nav li:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }
    .channel-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: #E2E8F0;
      padding: 0.4rem 0;
      display: inline-block;
    }
    .channel-nav a:hover, .channel-nav a.active {
      color: var(--color-primary);
      border-bottom: 2px solid var(--color-primary);
    }

    /* 容器与基础板块 */
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    .section-block {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .section-block-alt {
      background-color: rgba(20, 24, 36, 0.45);
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--color-secondary);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-size: 1.85rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 0.8rem;
      letter-spacing: -0.02em;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      margin-bottom: 2.2rem;
    }

    /* 按钮规范 */
    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      padding: 0.65rem 1.6rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(255, 46, 116, 0.35);
      font-size: 0.95rem;
    }
    .btn-main:hover {
      background: var(--color-primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 46, 116, 0.45);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      color: #fff;
      font-weight: 600;
      padding: 0.65rem 1.6rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.25s ease;
      font-size: 0.95rem;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
      color: #fff;
    }

    /* 板块一：分类专属无大图首屏与筛选台 */
    .category-topbar {
      padding: 3rem 0 2rem 0;
      background: linear-gradient(180deg, #101420 0%, #0B0D13 100%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .cat-badge-strip {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }
    .cat-badge {
      background: rgba(0, 229, 255, 0.12);
      color: var(--color-secondary);
      border: 1px solid rgba(0, 229, 255, 0.35);
      padding: 0.25rem 0.65rem;
      border-radius: var(--radius-sm);
      font-size: 0.8rem;
      font-weight: 700;
    }
    .cat-stats {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .category-h1 {
      font-size: 2.3rem;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 0.8rem;
      letter-spacing: -0.02em;
    }
    .category-h1 span {
      color: var(--color-secondary);
    }
    .category-lead {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 820px;
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    
    /* 筛选台组件 */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.75rem;
      font-size: 0.85rem;
    }
    .filter-row:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      width: 85px;
      color: #64748B;
      font-weight: 700;
      padding-top: 0.3rem;
      flex-shrink: 0;
    }
    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
    }
    .chip-item {
      padding: 0.25rem 0.75rem;
      border-radius: 4px;
      color: #C0C7DC;
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 0.85rem;
      transition: all 0.2s;
    }
    .chip-item:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .chip-item.active {
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
    }

    /* 板块二：核心海报瀑布网格 (2:3比例卡片) */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .poster-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .poster-card:hover {
      transform: translateY(-5px) scale(1.02);
      border-color: rgba(0, 229, 255, 0.5);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    }
    .poster-thumb-wrap {
      position: relative;
      aspect-ratio: 2/3;
      width: 100%;
      background: #111420;
      overflow: hidden;
    }
    .poster-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-wrap img {
      transform: scale(1.06);
    }
    .poster-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(11, 13, 19, 0.85);
      color: var(--color-secondary);
      border: 1px solid rgba(0, 229, 255, 0.4);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.15rem 0.45rem;
      border-radius: 3px;
      backdrop-filter: blur(4px);
    }
    .poster-ep-badge {
      position: absolute;
      bottom: 8px;
      left: 8px;
      background: rgba(255, 46, 116, 0.85);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.15rem 0.45rem;
      border-radius: 3px;
    }
    .poster-info {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .poster-name {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.4rem;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .poster-tags {
      font-size: 0.75rem;
      color: #7D88A5;
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
    }
    .poster-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      color: #9BA3BF;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 0.5rem;
    }
    .poster-meta .score {
      color: #FFB800;
      font-weight: 700;
    }
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    .page-btn {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: #9BA3BF;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all 0.2s;
    }
    .page-btn:hover, .page-btn.active {
      background: var(--color-primary);
      color: #fff;
      border-color: var(--color-primary);
    }

    /* 板块三：本分类热播 TOP 10 榜单 */
    .top-list-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
    .top-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 0.85rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      transition: all 0.25s ease;
    }
    .top-item:hover {
      background: var(--bg-elevated);
      border-color: rgba(255, 46, 116, 0.35);
      transform: translateX(4px);
    }
    .top-rank {
      font-size: 1.5rem;
      font-weight: 900;
      width: 32px;
      text-align: center;
      color: #4A5568;
      font-style: italic;
    }
    .top-rank.rank-1 { color: #FF2E74; font-size: 1.8rem; text-shadow: 0 0 10px rgba(255, 46, 116, 0.4); }
    .top-rank.rank-2 { color: #00E5FF; font-size: 1.7rem; }
    .top-rank.rank-3 { color: #FFB800; font-size: 1.6rem; }
    .top-poster {
      width: 54px;
      height: 76px;
      border-radius: 4px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .top-detail {
      flex-grow: 1;
    }
    .top-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.25rem;
    }
    .top-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: flex;
      gap: 0.75rem;
    }

    /* 板块四：分类专属合辑与专题联动 (16:9横幅卡片) */
    .topic-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.3s, border-color 0.3s;
    }
    .topic-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 229, 255, 0.4);
    }
    .topic-banner {
      aspect-ratio: 16/9;
      position: relative;
      overflow: hidden;
    }
    .topic-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .topic-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(20, 24, 36, 0.95) 0%, transparent 60%);
      display: flex;
      align-items: flex-end;
      padding: 1rem;
    }
    .topic-body {
      padding: 1.25rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .topic-h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .topic-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    /* 板块五：内容特征解析与观影指南 */
    .guide-feature-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.75rem;
      height: 100%;
      position: relative;
    }
    .guide-icon {
      font-size: 1.8rem;
      color: var(--color-secondary);
      margin-bottom: 1rem;
      display: inline-block;
    }
    .guide-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .guide-para {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    /* 板块六：FAQ 手风琴 */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: border-color 0.25s;
    }
    .faq-item:hover {
      border-color: rgba(255, 46, 116, 0.3);
    }
    .faq-header {
      padding: 1.1rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-weight: 700;
      font-size: 1rem;
      color: #E2E8F0;
      user-select: none;
    }
    .faq-header i {
      color: var(--color-primary);
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-header i {
      transform: rotate(180deg);
    }
    .faq-body {
      padding: 0 1.4rem 1.2rem 1.4rem;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.8;
      display: none;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 0.8rem;
    }
    .faq-item.active .faq-body {
      display: block;
    }

    /* 板块七：分类专属新番上线提醒与轻量横幅 CTA */
    .cat-cta-strip {
      background: linear-gradient(135deg, #151A28 0%, #1A1024 100%);
      border: 1px solid rgba(0, 229, 255, 0.25);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .cat-cta-text h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .cat-cta-text p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 0;
      max-width: 650px;
    }
    .cat-cta-action {
      display: flex;
      gap: 1rem;
      flex-shrink: 0;
    }

    /* 页脚 */
    .site-footer {
      background: #08090E;
      border-top: 1px solid var(--border-subtle);
      padding: 4rem 0 2rem 0;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .footer-brand {
      font-size: 1.5rem;
      font-weight: 900;
      color: #fff;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .footer-brand span { color: var(--color-primary); }
    .footer-intro {
      font-size: 0.85rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    .footer-nav-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.6rem;
    }
    .footer-links-list a {
      color: #9BA3BF;
      font-size: 0.85rem;
    }
    .footer-links-list a:hover {
      color: var(--color-primary);
    }
    .footer-bottom {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.8rem;
    }

    /* 移动端响应式断点 */
    @media (max-width: 1024px) {
      .poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 768px) {
      .poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      .top-list-container {
        grid-template-columns: 1fr;
      }
      .header-meta {
        justify-content: flex-start;
        margin-top: 0.75rem;
        flex-wrap: wrap;
      }
      .header-search {
        width: 100%;
      }
      .cat-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
      }
      .category-h1 {
        font-size: 1.75rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    @media (max-width: 520px) {
      .poster-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
      }
      .filter-row {
        flex-direction: column;
      }
      .filter-label {
        margin-bottom: 0.35rem;
      }
    }

/* roulang page: category5 */
:root {
      --bg-base: #0B0D13;
      --bg-surface: #141824;
      --bg-elevated: #1D2336;
      --color-primary: #FF2E74;
      --color-primary-hover: #FF528F;
      --color-secondary: #00E5FF;
      --text-main: #FFFFFF;
      --text-muted: #9BA3BF;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(255, 46, 116, 0.4);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 14px;
      --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.45);
      --font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: var(--font-family);
      line-height: 1.8;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    a:hover, a:focus { color: var(--color-primary); text-decoration: none; outline: none; }
    img { max-width: 100%; height: auto; display: block; }

    /* 刊头导航 */
    .magazine-header {
      background: #08090E;
      border-bottom: 1px solid var(--border-subtle);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-top {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-masthead {
      font-size: 1.85rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-transform: uppercase;
    }
    .brand-masthead span { color: var(--color-primary); }
    .header-meta {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
    }
    .meta-tag {
      background: rgba(255, 46, 116, 0.12);
      border: 1px solid rgba(255, 46, 116, 0.3);
      color: var(--color-primary);
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      font-weight: 600;
    }
    .header-search {
      position: relative;
      width: 220px;
    }
    .header-search input {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      color: #fff;
      font-size: 0.85rem;
      border-radius: 20px;
      padding: 0.35rem 2rem 0.35rem 0.85rem;
      margin-bottom: 0;
      height: 34px;
    }
    .header-search input:focus {
      border-color: var(--color-primary);
      background: var(--bg-elevated);
      box-shadow: none;
    }
    .header-search i {
      position: absolute;
      right: 12px;
      top: 9px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .header-channels {
      padding: 0.4rem 0;
      background: rgba(11, 13, 19, 0.95);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .channel-nav {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap;
    }
    .channel-nav li {
      position: relative;
      padding: 0 1.25rem;
    }
    .channel-nav li:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }
    .channel-nav a {
      font-size: 0.95rem;
      font-weight: 500;
      color: #E2E8F0;
      padding: 0.4rem 0;
      display: inline-block;
    }
    .channel-nav a:hover, .channel-nav a.active {
      color: var(--color-primary);
      border-bottom: 2px solid var(--color-primary);
    }

    /* 全局容器与板块 */
    .site-container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    .section-block {
      padding: 4.5rem 0;
      border-bottom: 1px solid var(--border-subtle);
      position: relative;
    }
    .section-block-alt {
      background-color: rgba(20, 24, 36, 0.45);
    }
    .section-header {
      margin-bottom: 2.5rem;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--color-secondary);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-size: 1.85rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 0.98rem;
      line-height: 1.8;
      max-width: 820px;
      margin-bottom: 0;
    }

    /* 按钮样式 */
    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.75rem;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(255, 46, 116, 0.35);
    }
    .btn-main:hover {
      background: var(--color-primary-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255, 46, 116, 0.45);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: transparent;
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.75rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.25s ease;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
      color: #fff;
    }

    /* 分类板块一：专属H1与多维筛选台 */
    .category-filter-panel {
      padding: 3.5rem 0 2.5rem 0;
      background: linear-gradient(180deg, #101420 0%, var(--bg-base) 100%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .category-h1 {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .category-h1 span {
      color: var(--color-primary);
    }
    .category-meta-summary {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
    }
    .category-meta-summary span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .filter-group-wrap {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem;
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 0.65rem 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .filter-row:last-child {
      border-bottom: none;
    }
    .filter-label {
      width: 90px;
      font-size: 0.85rem;
      color: #94A3B8;
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .filter-pill {
      font-size: 0.82rem;
      color: #CBD5E1;
      padding: 0.25rem 0.75rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.04);
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-pill:hover, .filter-pill.active {
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
    }

    /* 分类板块二：海报核心主列表 */
    .poster-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .poster-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
      position: relative;
    }
    .poster-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 46, 116, 0.5);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    }
    .poster-thumb-wrap {
      position: relative;
      width: 100%;
      padding-top: 140%; /* 近似 2:3 影视比例 */
      background: #000;
      overflow: hidden;
    }
    .poster-thumb-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .poster-card:hover .poster-thumb-wrap img {
      transform: scale(1.06);
    }
    .badge-resolution {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 229, 255, 0.9);
      color: #0B0D13;
      font-size: 0.7rem;
      font-weight: 800;
      padding: 0.2rem 0.5rem;
      border-radius: var(--radius-sm);
      letter-spacing: 0.05em;
      z-index: 2;
    }
    .badge-year {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 0.7rem;
      padding: 0.2rem 0.5rem;
      border-radius: var(--radius-sm);
      z-index: 2;
    }
    .poster-info {
      padding: 1rem 1.15rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .poster-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-meta-text {
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-bottom: 0.8rem;
    }
    .poster-specs {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: auto;
    }
    .spec-badge {
      font-size: 0.72rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #94A3B8;
      padding: 0.15rem 0.45rem;
      border-radius: 2px;
    }
    .load-more-action {
      text-align: center;
      margin-top: 3.5rem;
    }

    /* 分类板块三：TOP 10 重置排行榜 */
    .top-rank-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .rank-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 0.85rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.25s ease;
    }
    .rank-item:hover {
      border-color: rgba(255, 46, 116, 0.3);
      background: var(--bg-elevated);
      transform: translateX(4px);
    }
    .rank-num {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 900;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      margin-right: 1.2rem;
      flex-shrink: 0;
    }
    .rank-item:nth-child(1) .rank-num {
      background: var(--color-primary);
      color: #fff;
    }
    .rank-item:nth-child(2) .rank-num {
      background: var(--color-secondary);
      color: #0B0D13;
    }
    .rank-item:nth-child(3) .rank-num {
      background: #F59E0B;
      color: #0B0D13;
    }
    .rank-title-group {
      flex-grow: 1;
    }
    .rank-name {
      font-size: 0.98rem;
      font-weight: 700;
      color: #fff;
    }
    .rank-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .rank-score {
      font-size: 1rem;
      font-weight: 800;
      color: var(--color-secondary);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    /* 分类板块四：专属合辑与专题联动 */
    .collection-banner-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .collection-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      background: #141824;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem;
    }
    .collection-card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.35;
      transition: transform 0.5s ease;
      z-index: 1;
    }
    .collection-card:hover .collection-card-bg {
      transform: scale(1.05);
    }
    .collection-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(11,13,19,0.2) 0%, rgba(11,13,19,0.92) 80%);
      z-index: 2;
    }
    .collection-content {
      position: relative;
      z-index: 3;
    }
    .collection-tag {
      font-size: 0.75rem;
      color: var(--color-primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.4rem;
    }
    .collection-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .collection-desc {
      font-size: 0.88rem;
      color: #CBD5E1;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    /* 分类板块五：内容特征与修复指南 */
    .guide-box-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .guide-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.75rem;
    }
    .guide-icon {
      font-size: 1.8rem;
      color: var(--color-secondary);
      margin-bottom: 1rem;
    }
    .guide-heading {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: #fff;
    }
    .guide-para {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* 分类板块六：重置FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
    .faq-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 1.5rem;
    }
    .faq-q {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .faq-q i {
      color: var(--color-primary);
      margin-top: 0.25rem;
    }
    .faq-a {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 0;
      padding-left: 1.4rem;
    }

    /* 分类板块七：订阅横幅 CTA */
    .subscribe-cta-bar {
      background: linear-gradient(90deg, #181C2B 0%, #251829 100%);
      border: 1px solid rgba(255, 46, 116, 0.35);
      border-radius: var(--radius-lg);
      padding: 2.5rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }
    .subscribe-title {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 0.4rem;
    }
    .subscribe-desc {
      color: #94A3B8;
      font-size: 0.92rem;
      margin-bottom: 0;
    }

    /* 页脚 */
    .site-footer {
      background: #07080B;
      border-top: 1px solid var(--border-subtle);
      padding: 4.5rem 0 2rem 0;
    }
    .footer-brand {
      font-size: 1.5rem;
      font-weight: 900;
      color: #fff;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .footer-brand span { color: var(--color-primary); }
    .footer-intro {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }
    .footer-nav-title {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 0.6rem;
    }
    .footer-links-list a {
      color: #8B949E;
      font-size: 0.85rem;
    }
    .footer-links-list a:hover {
      color: var(--color-primary);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 3.5rem;
      padding-top: 1.5rem;
      font-size: 0.82rem;
      color: #64748B;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    /* 移动端与平板响应式 */
    @media screen and (max-width: 1024px) {
      .poster-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .guide-box-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media screen and (max-width: 768px) {
      .header-meta {
        justify-content: flex-start;
        margin-top: 0.75rem;
        flex-wrap: wrap;
      }
      .poster-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .collection-banner-grid {
        grid-template-columns: 1fr;
      }
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .guide-box-grid {
        grid-template-columns: 1fr;
      }
      .subscribe-cta-bar {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
      }
      .filter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
      }
      .section-block {
        padding: 3rem 0;
      }
    }
    @media screen and (max-width: 480px) {
      .poster-grid {
        grid-template-columns: 1fr;
      }
    }
