/* roulang page: index */
:root {
            --bg-base: #0b0d13;
            --bg-surface: #121620;
            --bg-card: #171b26;
            --bg-card-hover: #1e2433;
            --primary-gradient: linear-gradient(135deg, #ff2e93 0%, #8b5cf6 100%);
            --accent-cyan: #00f2fe;
            --accent-gold: #ffb800;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --text-dim: #64748b;
            --border-color: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(255, 46, 147, 0.35);
            --card-radius: 20px;
            --btn-radius: 999px;
            --box-shadow-glow: 0 10px 30px -10px rgba(139, 92, 246, 0.2);
            --box-shadow-hover: 0 16px 36px -8px rgba(255, 46, 147, 0.35);
        }

        body {
            background-color: var(--bg-base);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            overflow-x: hidden;
            line-height: 1.65;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s ease;
        }

        /* 浮动 Dock 导航 */
        .dock-nav-wrapper {
            position: fixed;
            top: 20px;
            left: 0;
            right: 0;
            z-index: 1050;
            padding: 0 16px;
        }

        .dock-nav {
            max-width: 1140px;
            margin: 0 auto;
            background: rgba(18, 22, 32, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid var(--border-color);
            border-radius: var(--btn-radius);
            padding: 10px 24px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dock-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }

        .dock-brand-badge {
            width: 38px;
            height: 38px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 46, 147, 0.4);
        }

        .dock-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .dock-menu a {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 6px 2px;
        }

        .dock-menu a:hover,
        .dock-menu a.active {
            color: #fff;
        }

        .dock-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 3px;
            border-radius: 2px;
            background: var(--primary-gradient);
        }

        .btn-gradient {
            background: var(--primary-gradient);
            color: #fff !important;
            border: none;
            border-radius: var(--btn-radius);
            padding: 10px 26px;
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 6px 20px -4px rgba(255, 46, 147, 0.4);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: var(--box-shadow-hover);
            color: #fff;
        }

        .btn-outline-custom {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--btn-radius);
            padding: 10px 24px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-custom:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
        }

        /* 通用卡片与板块 */
        .section-gap {
            padding: 95px 0;
            position: relative;
        }

        .card-custom {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--card-radius);
            padding: 32px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .card-custom:hover {
            background-color: var(--bg-card-hover);
            border-color: var(--border-glow);
            transform: translateY(-4px);
            box-shadow: var(--box-shadow-glow);
        }

        .section-header {
            margin-bottom: 56px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            background: rgba(255, 46, 147, 0.12);
            color: #ff2e93;
            border: 1px solid rgba(255, 46, 147, 0.25);
            border-radius: var(--btn-radius);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 2.35rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.25;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* 徽章 Badge */
        .spec-badge {
            background: rgba(0, 242, 254, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 242, 254, 0.25);
            border-radius: var(--btn-radius);
            font-size: 0.75rem;
            padding: 4px 10px;
            font-weight: 600;
        }

        .spec-badge-gold {
            background: rgba(255, 184, 0, 0.12);
            color: var(--accent-gold);
            border: 1px solid rgba(255, 184, 0, 0.25);
            border-radius: var(--btn-radius);
            font-size: 0.75rem;
            padding: 4px 10px;
            font-weight: 600;
        }

        /* Hero 区块 */
        .hero-section {
            padding-top: 170px;
            padding-bottom: 100px;
            position: relative;
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(11, 13, 19, 0.85) 0%, rgba(11, 13, 19, 0.98) 85%, var(--bg-base) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-h1 {
            font-size: 3.4rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.18;
            margin-bottom: 24px;
            background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-p {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 640px;
            margin-bottom: 32px;
        }

        .hero-badges-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 36px;
        }

        .hero-badge-item {
            background: rgba(23, 27, 38, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 8px 18px;
            border-radius: var(--btn-radius);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #e2e8f0;
        }

        .hero-visual-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 28px;
            padding: 16px;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }

        .hero-poster-img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 20px;
            filter: brightness(0.92);
        }

        .hero-floating-badge {
            position: absolute;
            bottom: 36px;
            left: 36px;
            right: 36px;
            background: rgba(18, 22, 32, 0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 18px 24px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* 影视卡片海报 */
        .media-poster-box {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            margin-bottom: 18px;
            background-color: var(--bg-surface);
        }

        .media-poster-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card-custom:hover .media-poster-img {
            transform: scale(1.06);
        }

        .poster-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(11, 13, 19, 0.95) 100%);
            display: flex;
            align-items: flex-end;
            padding: 16px;
            justify-content: space-between;
        }

        /* 播放器模拟控制区 */
        .player-mockup {
            background: #000;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.9);
        }

        .player-viewport {
            height: 440px;
            position: relative;
            background: #000;
            overflow: hidden;
        }

        .player-viewport-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.65;
        }

        .player-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            box-shadow: 0 0 40px rgba(255, 46, 147, 0.7);
            transition: transform 0.25s ease;
        }

        .player-play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .player-controls-bar {
            background: #11141c;
            padding: 16px 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .player-timeline {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
            margin-bottom: 12px;
        }

        .player-progress {
            width: 48%;
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 2px;
            position: relative;
        }

        .player-scrubber {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 10px #ff2e93;
        }

        /* 价格卡片高光 */
        .tier-card-popular {
            border: 2px solid transparent;
            background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                        var(--primary-gradient) border-box;
            position: relative;
        }

        .tier-popular-tag {
            position: absolute;
            top: 18px;
            right: 24px;
            background: var(--primary-gradient);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--btn-radius);
        }

        /* FAQ 手风琴重置 */
        .accordion-item {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px !important;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .accordion-button {
            background-color: var(--bg-card);
            color: #fff;
            font-size: 1.08rem;
            font-weight: 600;
            padding: 22px 28px;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(139, 92, 246, 0.08);
            color: #ff2e93;
        }

        .accordion-button::after {
            filter: invert(1) brightness(2);
            transition: transform 0.25s ease;
        }

        .accordion-button:not(.collapsed)::after {
            filter: invert(34%) sepia(87%) saturate(3821%) hue-rotate(314deg) brightness(101%) contrast(98%);
        }

        .accordion-body {
            padding: 8px 28px 26px 28px;
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.98rem;
        }

        /* 底部转化条 */
        .cta-banner {
            background: linear-gradient(135deg, rgba(255, 46, 147, 0.16) 0%, rgba(139, 92, 246, 0.16) 100%);
            border: 1px solid rgba(255, 46, 147, 0.35);
            border-radius: 28px;
            padding: 64px 48px;
            position: relative;
            overflow: hidden;
        }

        /* 全局页脚 */
        .site-footer {
            background-color: #08090d;
            border-top: 1px solid var(--border-color);
            padding: 80px 0 40px;
        }

        .footer-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 22px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 0.92rem;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.88rem;
            color: var(--text-dim);
            text-align: center;
        }

        /* 移动端响应式处理 */
        @media (max-width: 991.98px) {
            .dock-menu {
                display: none;
            }
            .hero-h1 {
                font-size: 2.5rem;
            }
            .hero-poster-img {
                height: 360px;
            }
            .section-title {
                font-size: 1.95rem;
            }
            .cta-banner {
                padding: 40px 24px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-h1 {
                font-size: 2rem;
            }
            .section-gap {
                padding: 60px 0;
            }
            .card-custom {
                padding: 22px;
            }
            .hero-badges-row {
                gap: 8px;
            }
            .player-viewport {
                height: 260px;
            }
            .dock-brand-name {
                font-size: 1.05rem;
            }
        }

/* roulang page: category1 */
:root {
      --bg-base: #0b0d13;
      --bg-surface: #121620;
      --bg-card: #171b26;
      --bg-card-hover: #1e2433;
      --primary-gradient: linear-gradient(135deg, #ff2e93 0%, #8b5cf6 100%);
      --accent-cyan: #00f2fe;
      --accent-gold: #ffb800;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 46, 147, 0.35);
      --card-radius: 20px;
      --btn-radius: 999px;
      --box-shadow-glow: 0 10px 30px -10px rgba(139, 92, 246, 0.2);
      --box-shadow-hover: 0 16px 36px -8px rgba(255, 46, 147, 0.35);
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      overflow-x: hidden;
      line-height: 1.65;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    
    /* 浮动 Dock 导航 */
    .dock-nav-wrapper {
      position: fixed;
      top: 20px;
      left: 0;
      right: 0;
      z-index: 1050;
      padding: 0 16px;
    }
    .dock-nav {
      max-width: 1140px;
      margin: 0 auto;
      background: rgba(18, 22, 32, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--border-color);
      border-radius: var(--btn-radius);
      padding: 10px 24px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dock-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .dock-brand-badge {
      width: 38px;
      height: 38px;
      background: var(--primary-gradient);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(255, 46, 147, 0.4);
    }
    .dock-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .dock-menu a {
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
      padding: 6px 2px;
    }
    .dock-menu a:hover,
    .dock-menu a.active {
      color: #fff;
    }
    .dock-menu a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 3px;
      border-radius: 2px;
      background: var(--primary-gradient);
    }
    .btn-gradient {
      background: var(--primary-gradient);
      color: #fff !important;
      border: none;
      border-radius: var(--btn-radius);
      padding: 10px 26px;
      font-size: 0.95rem;
      font-weight: 600;
      box-shadow: 0 6px 20px -4px rgba(255, 46, 147, 0.4);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: var(--box-shadow-hover);
      color: #fff;
    }
    .btn-outline-custom {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--btn-radius);
      padding: 10px 24px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline-custom:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }

    /* 分类页特有板块与通用组件 */
    .category-banner {
      padding-top: 140px;
      padding-bottom: 45px;
      background: radial-gradient(circle at 50% 20%, rgba(255, 46, 147, 0.12) 0%, rgba(11, 13, 19, 0) 70%), var(--bg-surface);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }
    .category-h1 {
      font-size: 2.6rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
      margin-bottom: 16px;
    }
    .category-desc {
      color: var(--text-muted);
      max-width: 720px;
      margin: 0 auto;
      font-size: 1.05rem;
    }
    .spec-badge {
      background: rgba(0, 242, 254, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(0, 242, 254, 0.25);
      border-radius: var(--btn-radius);
      padding: 4px 12px;
      font-size: 0.78rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .badge-gold {
      background: rgba(255, 184, 0, 0.12);
      color: var(--accent-gold);
      border-color: rgba(255, 184, 0, 0.25);
    }
    .badge-pink {
      background: rgba(255, 46, 147, 0.12);
      color: #ff2e93;
      border-color: rgba(255, 46, 147, 0.25);
    }

    /* 多维筛选工具栏 */
    .filter-wrapper {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      padding: 24px 30px;
      box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
      margin-top: -30px;
      position: relative;
      z-index: 10;
    }
    .filter-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .filter-row:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-dim);
      min-width: 65px;
    }
    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-pill {
      font-size: 0.85rem;
      padding: 5px 15px;
      border-radius: var(--btn-radius);
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-pill:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }
    .filter-pill.active {
      background: var(--primary-gradient);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(255, 46, 147, 0.3);
    }

    /* 影视流媒体卡片组件 */
    .section-gap {
      padding: 70px 0;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .anime-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }
    .anime-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-glow);
      box-shadow: var(--box-shadow-hover);
    }
    .anime-poster {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background-color: #000;
    }
    .anime-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-card:hover .anime-poster img {
      transform: scale(1.06);
    }
    .poster-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
    }
    .poster-rating {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      color: var(--accent-gold);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--btn-radius);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .anime-body {
      padding: 18px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .anime-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .anime-meta {
      font-size: 0.82rem;
      color: var(--text-dim);
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 排行榜单样式 */
    .rank-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      padding: 24px;
      height: 100%;
    }
    .rank-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.2s ease;
    }
    .rank-item:last-child {
      border-bottom: none;
    }
    .rank-item:hover {
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 1.25rem;
      font-weight: 900;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-dim);
    }
    .rank-top1 { background: var(--primary-gradient); color: #fff; }
    .rank-top2 { background: rgba(255, 46, 147, 0.2); color: #ff2e93; }
    .rank-top3 { background: rgba(0, 242, 254, 0.2); color: var(--accent-cyan); }
    .rank-title {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 2px;
    }
    .rank-sub {
      font-size: 0.78rem;
      color: var(--text-dim);
    }

    /* 专题合集卡片 */
    .topic-banner-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      overflow: hidden;
      position: relative;
      transition: all 0.3s ease;
      height: 100%;
    }
    .topic-banner-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
    }
    .topic-img-box {
      height: 160px;
      overflow: hidden;
      position: relative;
    }
    .topic-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .topic-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, var(--bg-card) 0%, rgba(23, 27, 38, 0.4) 100%);
    }
    .topic-body {
      padding: 20px;
    }

    /* 折叠 FAQ */
    .accordion-custom .accordion-item {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px !important;
      margin-bottom: 16px;
      overflow: hidden;
    }
    .accordion-custom .accordion-button {
      background-color: var(--bg-card);
      color: var(--text-main);
      font-weight: 600;
      box-shadow: none;
      padding: 20px 24px;
    }
    .accordion-custom .accordion-button:not(.collapsed) {
      background: var(--bg-card-hover);
      color: #ff2e93;
    }
    .accordion-custom .accordion-button::after {
      filter: invert(1);
    }
    .accordion-custom .accordion-body {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.8;
      padding: 0 24px 20px;
      background-color: var(--bg-card-hover);
    }

    /* CTA 卡片 */
    .cta-card {
      background: radial-gradient(circle at 10% 20%, rgba(255, 46, 147, 0.25) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(23, 27, 38, 0.9) 100%);
      border: 1px solid var(--border-glow);
      border-radius: 24px;
      padding: 50px 30px;
      box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
    }

    /* Footer 统一规范 */
    .footer-custom {
      background-color: var(--bg-surface);
      border-top: 1px solid var(--border-color);
      padding: 70px 0 30px;
      position: relative;
    }
    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 25px;
      margin-top: 40px;
      font-size: 0.85rem;
      color: var(--text-dim);
    }

    @media (max-width: 991px) {
      .dock-menu { display: none; }
      .category-h1 { font-size: 2.1rem; }
    }
    @media (max-width: 576px) {
      .category-banner { padding-top: 120px; }
      .category-h1 { font-size: 1.75rem; }
      .filter-wrapper { padding: 18px 16px; }
    }

/* roulang page: category2 */
:root {
      --bg-base: #0b0d13;
      --bg-surface: #121620;
      --bg-card: #171b26;
      --bg-card-hover: #1e2433;
      --primary-gradient: linear-gradient(135deg, #ff2e93 0%, #8b5cf6 100%);
      --accent-cyan: #00f2fe;
      --accent-gold: #ffb800;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 46, 147, 0.35);
      --card-radius: 20px;
      --btn-radius: 999px;
      --box-shadow-glow: 0 10px 30px -10px rgba(139, 92, 246, 0.2);
      --box-shadow-hover: 0 16px 36px -8px rgba(255, 46, 147, 0.35);
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      overflow-x: hidden;
      line-height: 1.65;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    .dock-nav-wrapper {
      position: fixed;
      top: 20px;
      left: 0;
      right: 0;
      z-index: 1050;
      padding: 0 16px;
    }
    .dock-nav {
      max-width: 1140px;
      margin: 0 auto;
      background: rgba(18, 22, 32, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--border-color);
      border-radius: var(--btn-radius);
      padding: 10px 24px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dock-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .dock-brand-badge {
      width: 38px;
      height: 38px;
      background: var(--primary-gradient);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(255, 46, 147, 0.4);
    }
    .dock-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .dock-menu a {
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
      padding: 6px 2px;
    }
    .dock-menu a:hover,
    .dock-menu a.active {
      color: #fff;
    }
    .dock-menu a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 3px;
      border-radius: 2px;
      background: var(--primary-gradient);
    }
    .btn-gradient {
      background: var(--primary-gradient);
      color: #fff !important;
      border: none;
      border-radius: var(--btn-radius);
      padding: 10px 26px;
      font-size: 0.95rem;
      font-weight: 600;
      box-shadow: 0 6px 20px -4px rgba(255, 46, 147, 0.4);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: var(--box-shadow-hover);
      color: #fff;
    }
    .btn-outline-custom {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--btn-radius);
      padding: 10px 24px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline-custom:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }
    .section-gap {
      padding: 80px 0;
      position: relative;
    }
    .card-custom {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      padding: 28px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .card-custom:hover {
      background-color: var(--bg-card-hover);
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: var(--box-shadow-glow);
    }
    .section-header {
      margin-bottom: 48px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      background: rgba(255, 46, 147, 0.12);
      color: #ff2e93;
      border: 1px solid rgba(255, 46, 147, 0.25);
      border-radius: var(--btn-radius);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: 2.15rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
      margin-bottom: 14px;
      line-height: 1.25;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1.02rem;
      max-width: 680px;
      line-height: 1.7;
    }
    .spec-badge {
      background: rgba(0, 242, 254, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(0, 242, 254, 0.25);
      border-radius: var(--btn-radius);
      padding: 4px 12px;
      font-size: 0.78rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .gold-badge {
      background: rgba(255, 184, 0, 0.12);
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.25);
      border-radius: var(--btn-radius);
      padding: 4px 12px;
      font-size: 0.78rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .hot-badge {
      background: rgba(255, 46, 147, 0.15);
      color: #ff2e93;
      border: 1px solid rgba(255, 46, 147, 0.3);
      border-radius: var(--btn-radius);
      padding: 4px 10px;
      font-size: 0.75rem;
      font-weight: 700;
    }
    /* 分类头部专属微闪购与特展 Banner */
    .cat-flash-hero {
      padding-top: 145px;
      padding-bottom: 50px;
      background: radial-gradient(circle at 50% 15%, rgba(139, 92, 246, 0.18) 0%, rgba(11, 13, 19, 1) 75%), url('/assets/images/130166382b308d06.webp') center/cover no-repeat;
      position: relative;
    }
    .cat-flash-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(11, 13, 19, 0.88);
    }
    .flash-strip {
      background: rgba(23, 27, 38, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 46, 147, 0.3);
      border-radius: var(--card-radius);
      padding: 24px 32px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    }
    .countdown-box {
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }
    .count-unit {
      background: rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 4px 10px;
      border-radius: 8px;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--accent-cyan);
    }
    /* 药丸筛选条 */
    .filter-wrapper {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 24px;
    }
    .filter-group {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .filter-group:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      font-size: 0.86rem;
      color: var(--text-dim);
      min-width: 72px;
      font-weight: 600;
    }
    .pill-opt {
      font-size: 0.84rem;
      color: var(--text-muted);
      padding: 5px 14px;
      border-radius: var(--btn-radius);
      border: 1px solid transparent;
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .pill-opt:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
    }
    .pill-opt.active {
      color: #fff;
      background: rgba(255, 46, 147, 0.18);
      border-color: rgba(255, 46, 147, 0.4);
      font-weight: 600;
    }
    /* 影片封面卡片大卡 */
    .anime-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .anime-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-glow);
      box-shadow: 0 16px 36px -10px rgba(139, 92, 246, 0.3);
    }
    .anime-poster-box {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #000;
    }
    .anime-poster-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .anime-card:hover .anime-poster-box img {
      transform: scale(1.06);
    }
    .poster-mask {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 13, 19, 0.95) 0%, rgba(11, 13, 19, 0.2) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 14px;
    }
    .anime-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .anime-title {
      font-size: 1.12rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .anime-desc {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .anime-meta {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 14px;
    }
    /* 排行榜单条目 */
    .rank-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.25s ease;
    }
    .rank-item:hover {
      border-color: var(--border-glow);
      background: var(--bg-card-hover);
      transform: translateX(4px);
    }
    .rank-num {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.05rem;
      flex-shrink: 0;
    }
    .rank-top-1 { background: var(--primary-gradient); color: #fff; }
    .rank-top-2 { background: #ffb800; color: #000; }
    .rank-top-3 { background: #00f2fe; color: #000; }
    /* 专题合集卡片 */
    .topic-card {
      background: linear-gradient(180deg, rgba(23, 27, 38, 0.6) 0%, rgba(18, 22, 32, 0.95) 100%);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      padding: 24px;
      height: 100%;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .topic-card:hover {
      border-color: rgba(0, 242, 254, 0.4);
      transform: translateY(-4px);
    }
    /* FAQ 手风琴重构 */
    .accordion-custom .accordion-item {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px !important;
      margin-bottom: 14px;
      overflow: hidden;
    }
    .accordion-custom .accordion-button {
      background-color: var(--bg-card);
      color: var(--text-main);
      font-weight: 600;
      padding: 20px 24px;
      box-shadow: none !important;
    }
    .accordion-custom .accordion-button:not(.collapsed) {
      color: #ff2e93;
      background-color: rgba(255, 46, 147, 0.06);
    }
    .accordion-custom .accordion-button::after {
      filter: invert(1);
    }
    .accordion-custom .accordion-body {
      background-color: var(--bg-card);
      color: var(--text-muted);
      font-size: 0.94rem;
      line-height: 1.8;
      padding: 0 24px 22px 24px;
    }
    /* 底部专属 CTA */
    .exclusive-cta-banner {
      background: radial-gradient(circle at 80% 50%, rgba(255, 46, 147, 0.15) 0%, rgba(18, 22, 32, 0.95) 70%), var(--bg-card);
      border: 1px solid rgba(255, 46, 147, 0.3);
      border-radius: 24px;
      padding: 48px;
      box-shadow: var(--box-shadow-glow);
    }
    /* 统一页脚 */
    .footer-custom {
      background-color: #07080c;
      border-top: 1px solid var(--border-color);
      padding: 70px 0 35px;
    }
    .footer-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin: 40px 0 25px;
    }
    @media (max-width: 991px) {
      .dock-menu { display: none; }
      .cat-flash-hero { padding-top: 110px; }
      .section-gap { padding: 60px 0; }
      .exclusive-cta-banner { padding: 32px 20px; }
    }

/* roulang page: category3 */
:root {
      --bg-base: #0b0d13;
      --bg-surface: #121620;
      --bg-card: #171b26;
      --bg-card-hover: #1e2433;
      --primary-gradient: linear-gradient(135deg, #ff2e93 0%, #8b5cf6 100%);
      --accent-cyan: #00f2fe;
      --accent-gold: #ffb800;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-glow: rgba(255, 46, 147, 0.35);
      --card-radius: 20px;
      --btn-radius: 999px;
      --box-shadow-glow: 0 10px 30px -10px rgba(139, 92, 246, 0.2);
      --box-shadow-hover: 0 16px 36px -8px rgba(255, 46, 147, 0.35);
    }
    body {
      background-color: var(--bg-base);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      overflow-x: hidden;
      line-height: 1.65;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    /* 浮动 Dock 导航 */
    .dock-nav-wrapper {
      position: fixed;
      top: 20px;
      left: 0;
      right: 0;
      z-index: 1050;
      padding: 0 16px;
    }
    .dock-nav {
      max-width: 1140px;
      margin: 0 auto;
      background: rgba(18, 22, 32, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--border-color);
      border-radius: var(--btn-radius);
      padding: 10px 24px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dock-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .dock-brand-badge {
      width: 38px;
      height: 38px;
      background: var(--primary-gradient);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 4px 12px rgba(255, 46, 147, 0.4);
    }
    .dock-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .dock-menu a {
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
      padding: 6px 2px;
    }
    .dock-menu a:hover,
    .dock-menu a.active {
      color: #fff;
    }
    .dock-menu a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 3px;
      border-radius: 2px;
      background: var(--primary-gradient);
    }
    .btn-gradient {
      background: var(--primary-gradient);
      color: #fff !important;
      border: none;
      border-radius: var(--btn-radius);
      padding: 10px 26px;
      font-size: 0.95rem;
      font-weight: 600;
      box-shadow: 0 6px 20px -4px rgba(255, 46, 147, 0.4);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: var(--box-shadow-hover);
      color: #fff;
    }
    .btn-outline-custom {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--btn-radius);
      padding: 10px 24px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline-custom:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
    }
    /* 通用板块与排版 */
    .section-gap {
      padding: 85px 0;
      position: relative;
    }
    .card-custom {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      padding: 30px;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .card-custom:hover {
      background-color: var(--bg-card-hover);
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: var(--box-shadow-glow);
    }
    .section-header {
      margin-bottom: 48px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      background: rgba(255, 46, 147, 0.12);
      color: #ff2e93;
      border: 1px solid rgba(255, 46, 147, 0.25);
      border-radius: var(--btn-radius);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: #fff;
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .spec-badge {
      background: rgba(0, 242, 254, 0.12);
      color: var(--accent-cyan);
      border: 1px solid rgba(0, 242, 254, 0.25);
      padding: 4px 12px;
      border-radius: var(--btn-radius);
      font-size: 0.78rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .gold-badge {
      background: rgba(255, 184, 0, 0.12);
      color: var(--accent-gold);
      border: 1px solid rgba(255, 184, 0, 0.3);
      padding: 4px 12px;
      border-radius: var(--btn-radius);
      font-size: 0.78rem;
      font-weight: 700;
    }
    .pink-badge {
      background: rgba(255, 46, 147, 0.15);
      color: #ff2e93;
      border: 1px solid rgba(255, 46, 147, 0.3);
      padding: 4px 12px;
      border-radius: var(--btn-radius);
      font-size: 0.78rem;
      font-weight: 600;
    }
    /* 分类页特有样式：紧凑沉浸 Banner */
    .cat-banner {
      padding-top: 145px;
      padding-bottom: 50px;
      background: radial-gradient(circle at 50% 20%, rgba(139, 92, 246, 0.18) 0%, transparent 70%), var(--bg-surface);
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }
    .cat-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/assets/images/130166382b308d06.webp');
      background-size: cover;
      background-position: center 30%;
      opacity: 0.08;
      pointer-events: none;
    }
    /* 筛选工具栏 */
    .filter-bar {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--card-radius);
      padding: 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }
    .filter-group {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .filter-label {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-dim);
      min-width: 75px;
    }
    .filter-pill {
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-muted);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--btn-radius);
      padding: 5px 16px;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .filter-pill:hover,
    .filter-pill.active {
      background: var(--primary-gradient);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 4px 12px rgba(255, 46, 147, 0.3);
    }
    /* 影片大卡 */
    .anime-poster-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .anime-poster-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-glow);
      box-shadow: var(--box-shadow-hover);
    }
    .anime-poster-thumb {
      position: relative;
      width: 100%;
      padding-top: 138%;
      overflow: hidden;
      background: #000;
    }
    .anime-poster-thumb img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .anime-poster-card:hover .anime-poster-thumb img {
      transform: scale(1.06);
    }
    .thumb-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11, 13, 19, 0.1) 0%, rgba(11, 13, 19, 0.85) 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 12px;
      pointer-events: none;
    }
    .play-float-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.7);
      width: 52px;
      height: 52px;
      background: var(--primary-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.4rem;
      opacity: 0;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(255, 46, 147, 0.8);
    }
    .anime-poster-card:hover .play-float-btn {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    .anime-card-body {
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .anime-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .anime-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.82rem;
      color: var(--text-dim);
    }
    /* 排行榜单样式 */
    .rank-row-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.25s ease;
    }
    .rank-row-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-glow);
      transform: translateX(4px);
    }
    .rank-num {
      font-size: 1.4rem;
      font-weight: 900;
      min-width: 32px;
      text-align: center;
      font-style: italic;
      color: var(--text-dim);
    }
    .rank-num.top1 { color: #ff2e93; }
    .rank-num.top2 { color: #8b5cf6; }
    .rank-num.top3 { color: var(--accent-cyan); }
    .rank-thumb {
      width: 72px;
      height: 48px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* 合集专题卡片 */
    .topic-collection-card {
      position: relative;
      border-radius: var(--card-radius);
      overflow: hidden;
      border: 1px solid var(--border-color);
      height: 240px;
      display: flex;
      align-items: flex-end;
      padding: 24px;
      transition: all 0.3s ease;
    }
    .topic-collection-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .topic-collection-card:hover img {
      transform: scale(1.08);
    }
    .topic-collection-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(11, 13, 19, 0.95) 0%, rgba(11, 13, 19, 0.2) 60%);
    }
    .topic-card-content {
      position: relative;
      z-index: 2;
    }
    /* 手风琴 FAQ 专属覆盖 */
    .custom-faq-accordion .accordion-item {
      background-color: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px !important;
      margin-bottom: 14px;
      overflow: hidden;
    }
    .custom-faq-accordion .accordion-button {
      background-color: var(--bg-card);
      color: var(--text-main);
      font-weight: 700;
      font-size: 1.05rem;
      padding: 20px 24px;
      box-shadow: none !important;
      border: none;
    }
    .custom-faq-accordion .accordion-button:not(.collapsed) {
      background-color: rgba(139, 92, 246, 0.08);
      color: #ff2e93;
    }
    .custom-faq-accordion .accordion-button::after {
      filter: invert(1) brightness(0.8);
      transition: transform 0.3s ease;
    }
    .custom-faq-accordion .accordion-body {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      padding: 0 24px 22px 24px;
      background-color: transparent;
    }
    /* 页脚 */
    .footer-custom {
      background-color: #07080c;
      border-top: 1px solid var(--border-color);
      padding: 80px 0 35px 0;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 30px;
      margin-top: 60px;
      font-size: 0.85rem;
      color: var(--text-dim);
    }
    /* 移动端适配响应 */
    @media (max-width: 991px) {
      .dock-menu {
        display: none;
      }
      .section-title {
        font-size: 1.85rem;
      }
    }
    @media (max-width: 576px) {
      .dock-nav {
        padding: 8px 16px;
      }
      .dock-brand-name {
        font-size: 1.1rem;
      }
      .cat-banner {
        padding-top: 120px;
        padding-bottom: 35px;
      }
      .section-gap {
        padding: 60px 0;
      }
    }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
