/* roulang page: index */
:root {
            --primary: #E50914;
            --primary-glow: #FF2A85;
            --secondary: #FFB800;
            --bg-dark: #0E0E12;
            --bg-surface: #14141C;
            --card-bg: #1A1A24;
            --card-hover: #222230;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-highlight: rgba(255, 42, 133, 0.35);
            --text-main: #FFFFFF;
            --text-sub: #D1D1DE;
            --text-muted: #888899;
            --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --shadow-cinema: 0 10px 30px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 20px rgba(255, 42, 133, 0.25);
            --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-sub);
            font-family: var(--font-family);
            line-height: 1.75;
            font-size: 15px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        a:hover, a:focus {
            color: var(--primary-glow);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container-custom {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 70px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-tag {
            display: inline-block;
            padding: 4px 14px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary-glow);
            background: rgba(255, 42, 133, 0.12);
            border: 1px solid rgba(255, 42, 133, 0.3);
            border-radius: 50px;
            margin-bottom: 12px;
        }

        .section-title {
            color: var(--text-main);
            font-size: 28px;
            font-weight: 700;
            line-height: 1.35;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .section-desc {
            max-width: 720px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
        }

        /* Buttons */
        .btn-cinema {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #E50914, #FF2A85);
            color: #FFFFFF;
            box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 42, 133, 0.5);
            color: #FFFFFF;
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            border: 1px solid var(--border-subtle);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            color: #FFFFFF;
        }

        /* Header Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: linear-gradient(90deg, rgba(14, 14, 18, 0.96), rgba(24, 16, 26, 0.96));
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            height: 70px;
            display: flex;
            align-items: center;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: 0.5px;
        }

        .brand-logo i {
            color: var(--primary-glow);
            font-size: 24px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
            margin: 0;
        }

        .nav-menu li a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            position: relative;
        }

        .nav-menu li a:hover,
        .nav-menu li.active a {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-menu li.active a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--primary-glow);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Section 1: Hero Theater */
        .hero-theater {
            position: relative;
            padding: 100px 0 80px;
            background: radial-gradient(circle at center, rgba(142, 14, 60, 0.28) 0%, rgba(14, 14, 18, 0.95) 75%),
                        url('/assets/images/aee3d26885c261fb.jpg') center/cover no-repeat;
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        .hero-theater::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(14,14,18,0.4) 0%, rgba(14,14,18,0.92) 85%, var(--bg-dark) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 50px;
            background: rgba(255, 184, 0, 0.12);
            border: 1px solid rgba(255, 184, 0, 0.35);
            color: var(--secondary);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 22px;
        }

        .hero-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.25;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #FFFFFF 20%, var(--primary-glow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-intro {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.8;
            margin-bottom: 34px;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }

        .hero-features-bar {
            display: flex;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 13px;
            color: var(--text-muted);
        }

        .hero-features-bar span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .hero-features-bar i {
            color: var(--primary-glow);
        }

        /* Section 2: Daily Countdown & Radar */
        .daily-countdown {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-subtle);
            padding: 30px 0;
        }

        .countdown-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            background: linear-gradient(90deg, rgba(229, 9, 20, 0.08), rgba(255, 42, 133, 0.04));
            border: 1px solid var(--border-highlight);
            border-radius: var(--radius-md);
            padding: 20px 28px;
        }

        .countdown-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .countdown-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 42, 133, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-glow);
            font-size: 20px;
        }

        .countdown-text h4 {
            color: var(--text-main);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .countdown-text p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        .countdown-timer {
            display: flex;
            gap: 12px;
        }

        .timer-unit {
            background: #0E0E12;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 8px 14px;
            text-align: center;
            min-width: 58px;
        }

        .timer-unit .num {
            font-size: 18px;
            font-weight: 700;
            color: var(--secondary);
            display: block;
            line-height: 1.2;
            font-family: monospace;
        }

        .timer-unit .label {
            font-size: 10px;
            color: var(--text-muted);
        }

        /* Section 3: Audiovisual Features */
        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px;
            height: 100%;
            transition: var(--transition-smooth);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            background: var(--card-hover);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-cinema);
        }

        .feature-icon-wrap {
            width: 54px;
            height: 54px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(255, 42, 133, 0.15));
            border: 1px solid rgba(255, 42, 133, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary-glow);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 13.5px;
            color: var(--text-sub);
            line-height: 1.7;
            margin: 0;
        }

        /* Section 4: Category Matrix */
        .category-item-card {
            position: relative;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: var(--transition-smooth);
        }

        .category-item-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-cinema);
        }

        .category-thumb-wrapper {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #0E0E12;
        }

        .category-thumb-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-item-card:hover .category-thumb-wrapper img {
            transform: scale(1.05);
        }

        .category-badge-slot {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(14, 14, 18, 0.75);
            backdrop-filter: blur(6px);
            border: 1px solid var(--border-highlight);
            color: var(--primary-glow);
            font-size: 11px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: var(--radius-sm);
        }

        .category-meta-body {
            padding: 22px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .category-meta-body h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .category-meta-body p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .category-jump-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--secondary);
            font-size: 13px;
            font-weight: 600;
        }

        .category-jump-link:hover {
            color: #FFFFFF;
            transform: translateX(3px);
        }

        /* Section 5: Metrics Board */
        .metrics-grid-card {
            background: linear-gradient(180deg, var(--card-bg) 0%, #12121A 100%);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 26px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .metrics-grid-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
        }

        .metrics-val {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-main);
            font-family: monospace;
            letter-spacing: -0.5px;
            margin-bottom: 6px;
            background: linear-gradient(180deg, #FFFFFF 30%, #D1D1DE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .metrics-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-glow);
            margin-bottom: 6px;
        }

        .metrics-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* Section 6: Workflow Steps */
        .step-block-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            position: relative;
            height: 100%;
        }

        .step-num-pill {
            position: absolute;
            top: -14px;
            left: 24px;
            width: 32px;
            height: 32px;
            background: var(--primary);
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(229, 9, 20, 0.4);
        }

        .step-block-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            margin-top: 8px;
            margin-bottom: 10px;
        }

        .step-block-card p {
            font-size: 13.5px;
            color: var(--text-sub);
            line-height: 1.7;
            margin: 0;
        }

        /* Section 7: Popular Poster Showcase */
        .poster-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--transition-smooth);
        }

        .poster-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-cinema);
        }

        .poster-image-slot {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            background: #0E0E12;
        }

        .poster-image-slot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .poster-card:hover .poster-image-slot img {
            transform: scale(1.04);
        }

        .badge-status-top {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(229, 9, 20, 0.88);
            color: #FFFFFF;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: var(--radius-sm);
        }

        .badge-score-bottom {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(14, 14, 18, 0.85);
            border: 1px solid rgba(255, 184, 0, 0.3);
            color: var(--secondary);
            font-size: 11px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .poster-info-body {
            padding: 16px 14px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .poster-info-body h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .poster-info-body p {
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Section 8: Daily Radar Ranking */
        .ranking-card-row {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
            margin-bottom: 12px;
            transition: var(--transition-smooth);
        }

        .ranking-card-row:hover {
            border-color: rgba(255, 42, 133, 0.3);
            background: var(--card-hover);
        }

        .ranking-digit {
            font-size: 20px;
            font-weight: 800;
            width: 32px;
            color: var(--text-muted);
            font-family: monospace;
            flex-shrink: 0;
        }

        .ranking-card-row.top-rank .ranking-digit {
            color: var(--primary-glow);
        }

        .ranking-details {
            flex-grow: 1;
        }

        .ranking-details h5 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 3px;
        }

        .ranking-details span {
            font-size: 12px;
            color: var(--text-muted);
        }

        .ranking-heat-score {
            font-size: 13px;
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        /* Section 9: Multi-line Guarantee Ribbon */
        .guarantee-bar-card {
            background: linear-gradient(135deg, rgba(26, 26, 36, 0.95), rgba(34, 16, 28, 0.95));
            border: 1px solid var(--border-highlight);
            border-radius: var(--radius-lg);
            padding: 40px;
        }

        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .guarantee-icon {
            font-size: 24px;
            color: var(--primary-glow);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .guarantee-text h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }

        .guarantee-text p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.6;
            margin: 0;
        }

        /* Section 10: News & Schedule Feed */
        .feed-article-card {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .feed-article-card:hover {
            border-color: var(--border-highlight);
        }

        .feed-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .feed-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--secondary);
            background: rgba(255, 184, 0, 0.1);
            padding: 2px 8px;
            border-radius: var(--radius-sm);
        }

        .feed-time {
            font-size: 12px;
            color: var(--text-muted);
        }

        .feed-article-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .feed-article-card p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        /* Section 11: Cross-Platform Matrix */
        .terminal-block {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 30px 22px;
            text-align: center;
            height: 100%;
        }

        .terminal-block i {
            font-size: 34px;
            color: var(--primary-glow);
            margin-bottom: 16px;
            display: inline-block;
        }

        .terminal-block h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .terminal-block p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.6;
            margin: 0;
        }

        /* Section 12: VIP Tier Privilege Comparison */
        .tier-comparison-wrap {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .tier-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            margin: 0;
            background: transparent;
        }

        .tier-table th, .tier-table td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-sub);
            font-size: 13.5px;
        }

        .tier-table th {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-main);
            font-weight: 700;
            font-size: 14px;
        }

        .tier-table tr:last-child td {
            border-bottom: none;
        }

        .tier-highlight {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Section 13: Partner Hub */
        .partner-badge-node {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 18px 24px;
            text-align: center;
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-muted);
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .partner-badge-node:hover {
            color: var(--text-main);
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.06);
        }

        /* Section 14: Accordion FAQ */
        .faq-accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .faq-accordion-item:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }

        .faq-accordion-trigger {
            width: 100%;
            padding: 18px 24px;
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 15px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-accordion-trigger i {
            font-size: 12px;
            color: var(--text-muted);
            transition: transform 0.3s ease;
        }

        .faq-accordion-content {
            padding: 0 24px 18px;
            color: var(--text-sub);
            font-size: 13.5px;
            line-height: 1.7;
            display: none;
        }

        .faq-accordion-item.is-active .faq-accordion-content {
            display: block;
        }

        .faq-accordion-item.is-active .faq-accordion-trigger i {
            transform: rotate(180deg);
            color: var(--primary-glow);
        }

        /* Section 15: Security Strip */
        .security-badge-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            height: 100%;
        }

        .security-badge-card i {
            font-size: 26px;
            color: #00E676;
            margin-bottom: 12px;
        }

        .security-badge-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }

        .security-badge-card p {
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Section 16: Final Action Stage (CTA) */
        .final-cta-stage {
            background: radial-gradient(circle at center, rgba(229, 9, 20, 0.2) 0%, rgba(14, 14, 18, 0.95) 80%),
                        url('/assets/images/0db3c64e849e0d80.jpg') center/cover no-repeat;
            border: 1px solid var(--border-highlight);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta-stage h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 14px;
        }

        .final-cta-stage p {
            font-size: 15px;
            color: var(--text-sub);
            max-width: 680px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        /* Footer */
        .site-footer {
            background: #08080B;
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-col h5 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 18px;
        }

        .footer-links-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links-list li {
            margin-bottom: 10px;
        }

        .footer-links-list a:hover {
            color: #FFFFFF;
        }

        .footer-disclaimer {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
            font-size: 12px;
            line-height: 1.8;
        }

        /* Mobile Hamburger */
        .nav-toggle-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 22px;
            cursor: pointer;
        }

        /* Responsive Breakpoints */
        @media screen and (max-width: 1024px) {
            .hero-title {
                font-size: 34px;
            }
            .section-title {
                font-size: 24px;
            }
            .nav-menu {
                gap: 16px;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-toggle-btn {
                display: block;
            }
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #14141C;
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--border-subtle);
                gap: 12px;
            }
            .nav-menu.is-open {
                display: flex;
            }
            .countdown-banner {
                flex-direction: column;
                text-align: center;
            }
            .countdown-info {
                flex-direction: column;
            }
            .countdown-timer {
                justify-content: center;
            }
            .hero-title {
                font-size: 28px;
            }
            .hero-intro {
                font-size: 14.5px;
            }
            .final-cta-stage {
                padding: 40px 20px;
            }
        }

/* roulang page: category1 */
:root {
      --primary: #E50914;
      --primary-glow: #FF2A85;
      --secondary: #FFB800;
      --bg-dark: #0E0E12;
      --bg-surface: #14141C;
      --card-bg: #1A1A24;
      --card-hover: #222230;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(255, 42, 133, 0.35);
      --text-main: #FFFFFF;
      --text-sub: #D1D1DE;
      --text-muted: #888899;
      --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-cinema: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-glow: 0 0 20px rgba(255, 42, 133, 0.25);
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-dark);
      color: var(--text-sub);
      font-family: var(--font-family);
      line-height: 1.75;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding: 0;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--primary-glow);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container-custom {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-padding {
      padding: 60px 0;
    }
    .section-header {
      text-align: left;
      margin-bottom: 35px;
    }
    .section-tag {
      display: inline-block;
      padding: 4px 14px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary-glow);
      background: rgba(255, 42, 133, 0.12);
      border: 1px solid rgba(255, 42, 133, 0.3);
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .section-title {
      color: var(--text-main);
      font-size: 26px;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.8;
      max-width: 760px;
    }
    .btn-cinema {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 26px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition-smooth);
      border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, #E50914, #FF2A85);
      color: #FFFFFF;
      box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 42, 133, 0.5);
      color: #FFFFFF;
    }
    .btn-outline {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border: 1px solid var(--border-subtle);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      color: #FFFFFF;
    }

    /* Site Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(90deg, rgba(14, 14, 18, 0.96), rgba(24, 16, 26, 0.96));
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-glow);
      font-size: 24px;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 28px;
      align-items: center;
      margin: 0;
    }
    .nav-menu li a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-sub);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li.active a {
      color: #FFFFFF;
      background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu li.active a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 3px;
      background: var(--primary-glow);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-toggle-btn {
      display: none;
      background: transparent;
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      cursor: pointer;
    }

    /* Section 1: Category Header (No massive hero) */
    .category-header-panel {
      padding: 45px 0 35px;
      background: radial-gradient(circle at 80% 30%, rgba(229, 9, 20, 0.12) 0%, rgba(14, 14, 18, 1) 70%);
      border-bottom: 1px solid var(--border-subtle);
    }
    .category-banner-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 35px 30px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      box-shadow: var(--shadow-cinema);
      position: relative;
      overflow: hidden;
    }
    .category-banner-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--primary), var(--primary-glow));
    }
    .cat-head-info {
      flex: 1 1 500px;
    }
    .cat-head-info h1 {
      font-size: 30px;
      font-weight: 800;
      color: var(--text-main);
      margin: 10px 0 14px;
      line-height: 1.3;
    }
    .cat-head-info p {
      color: var(--text-sub);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .cat-metrics-row {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
    }
    .cat-metric-item {
      display: flex;
      flex-direction: column;
    }
    .cat-metric-item .val {
      font-size: 22px;
      font-weight: 700;
      color: var(--secondary);
    }
    .cat-metric-item .lbl {
      font-size: 12px;
      color: var(--text-muted);
    }
    .cat-head-badge-box {
      flex: 0 0 280px;
      background: var(--card-bg);
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
    }
    .cat-head-badge-box h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .cat-head-badge-box h4 i {
      color: var(--primary-glow);
    }
    .live-status-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .live-status-list li {
      font-size: 13px;
      color: var(--text-sub);
      display: flex;
      justify-content: space-between;
      padding: 6px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }
    .live-status-list li:last-child {
      border-bottom: none;
    }
    .live-status-list .tag-pulse {
      color: #00E676;
      font-weight: 600;
    }

    /* Section 2: Multi-attribute Filter */
    .filter-panel-section {
      padding: 25px 0 0;
    }
    .filter-box-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 20px 24px;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      gap: 16px;
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-name {
      width: 72px;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
      flex-shrink: 0;
      padding-top: 4px;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      display: inline-block;
      font-size: 13px;
      padding: 3px 12px;
      border-radius: 4px;
      color: var(--text-sub);
      background: rgba(255, 255, 255, 0.03);
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #FFFFFF;
    }
    .filter-btn.active {
      background: var(--primary);
      color: #FFFFFF;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
    }

    /* Section 3: Anime Poster Grid */
    .grid-anime-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      transition: var(--transition-smooth);
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .grid-anime-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-highlight);
      box-shadow: var(--shadow-cinema);
    }
    .poster-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #000;
    }
    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .grid-anime-card:hover .poster-wrap img {
      transform: scale(1.05);
    }
    .badge-status {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(14, 14, 18, 0.85);
      backdrop-filter: blur(4px);
      color: var(--primary-glow);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      border: 1px solid rgba(255, 42, 133, 0.3);
    }
    .badge-quality {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.8);
      color: var(--secondary);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 7px;
      border-radius: 4px;
    }
    .badge-ep {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(229, 9, 20, 0.9);
      color: #FFF;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 3px;
    }
    .card-meta-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .anime-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .anime-tags-row {
      display: flex;
      gap: 6px;
      margin-bottom: 10px;
    }
    .tag-bubble {
      font-size: 11px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-muted);
      padding: 2px 6px;
      border-radius: 3px;
    }
    .anime-synopsis {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-footer-action {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 12px;
    }
    .rate-box {
      color: var(--secondary);
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .play-link-btn {
      font-size: 12px;
      color: #FFFFFF;
      background: rgba(255, 42, 133, 0.15);
      border: 1px solid rgba(255, 42, 133, 0.35);
      padding: 5px 12px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: var(--transition-smooth);
    }
    .play-link-btn:hover {
      background: var(--primary-glow);
      color: #FFFFFF;
    }

    /* Section 4: Single Load More Action */
    .load-more-wrapper {
      text-align: center;
      padding: 20px 0 40px;
    }

    /* Section 5: Category Special Topics */
    .special-topic-panel {
      background: var(--bg-surface);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    .topic-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 24px;
      height: 100%;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .topic-card::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 80px;
      height: 80px;
      background: radial-gradient(circle, rgba(255, 42, 133, 0.15), transparent 70%);
      pointer-events: none;
    }
    .topic-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: rgba(229, 9, 20, 0.15);
      color: var(--primary-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 16px;
    }
    .topic-card h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .topic-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .topic-stat {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-sub);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 12px;
    }

    /* Section 6: Curated Anime Guide / Breakdown */
    .guide-card-box {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .guide-thumb {
      height: 170px;
      overflow: hidden;
      position: relative;
    }
    .guide-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .guide-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .guide-date {
      font-size: 12px;
      color: var(--primary-glow);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .guide-body h4 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .guide-body p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
      flex-grow: 1;
    }

    /* Section 7: Streaming Advice Cards */
    .advice-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .advice-card:hover {
      border-color: rgba(255, 255, 255, 0.2);
    }
    .advice-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .advice-num {
      font-size: 20px;
      font-weight: 800;
      color: var(--secondary);
      opacity: 0.85;
    }
    .advice-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin: 0;
    }
    .advice-card p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.7;
      margin: 0;
    }

    /* Section 8: Interactive Feedback Panel */
    .interaction-panel-card {
      background: linear-gradient(135deg, rgba(20, 20, 28, 0.95), rgba(35, 15, 25, 0.95));
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-cinema);
    }
    .feedback-form-box {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    .input-stream-title {
      flex: 1 1 240px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-subtle);
      border-radius: 50px;
      padding: 12px 20px;
      color: #FFFFFF;
      font-size: 14px;
      outline: none;
      transition: var(--transition-smooth);
    }
    .input-stream-title:focus {
      border-color: var(--primary-glow);
      background: rgba(255, 255, 255, 0.09);
      box-shadow: 0 0 12px rgba(255, 42, 133, 0.2);
    }

    /* Footer Styles */
    .site-footer {
      background: #09090D;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 25px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-col h5 {
      color: var(--text-main);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links-list li {
      margin-bottom: 10px;
    }
    .footer-links-list li a {
      color: var(--text-sub);
    }
    .footer-links-list li a:hover {
      color: var(--primary-glow);
    }
    .footer-disclaimer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      margin-top: 45px;
      padding-top: 25px;
      text-align: center;
      font-size: 12px;
      color: #666677;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .nav-menu {
        display: none;
      }
      .nav-toggle-btn {
        display: inline-block;
      }
      .cat-head-badge-box {
        flex: 1 1 100%;
      }
    }
    @media (max-width: 640px) {
      .category-banner-card {
        padding: 24px 18px;
      }
      .cat-head-info h1 {
        font-size: 22px;
      }
      .cat-metrics-row {
        gap: 15px;
      }
      .section-title {
        font-size: 22px;
      }
      .filter-box-card {
        padding: 16px;
      }
      .interaction-panel-card {
        padding: 25px 18px;
      }
    }

/* roulang page: category2 */
:root {
      --primary: #E50914;
      --primary-glow: #FF2A85;
      --secondary: #FFB800;
      --bg-dark: #0E0E12;
      --bg-surface: #14141C;
      --card-bg: #1A1A24;
      --card-hover: #222230;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(255, 42, 133, 0.35);
      --text-main: #FFFFFF;
      --text-sub: #D1D1DE;
      --text-muted: #888899;
      --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-cinema: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-glow: 0 0 20px rgba(255, 42, 133, 0.25);
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body {
      background-color: var(--bg-dark);
      color: var(--text-sub);
      font-family: var(--font-family);
      line-height: 1.75;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      margin: 0;
      padding: 0;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--primary-glow);
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container-custom {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .section-padding {
      padding: 60px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-tag {
      display: inline-block;
      padding: 4px 14px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary-glow);
      background: rgba(255, 42, 133, 0.12);
      border: 1px solid rgba(255, 42, 133, 0.3);
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .section-title {
      color: var(--text-main);
      font-size: 26px;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }
    .section-desc {
      max-width: 760px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.8;
    }
    /* Buttons */
    .btn-cinema {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition-smooth);
      border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, #E50914, #FF2A85);
      color: #FFFFFF;
      box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 42, 133, 0.5);
      color: #FFFFFF;
    }
    .btn-outline {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border: 1px solid var(--border-subtle);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      color: #FFFFFF;
    }
    .btn-secondary {
      background: rgba(255, 184, 0, 0.15);
      color: var(--secondary);
      border: 1px solid rgba(255, 184, 0, 0.35);
    }
    .btn-secondary:hover {
      background: var(--secondary);
      color: #0E0E12;
    }
    /* Header Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(90deg, rgba(14, 14, 18, 0.96), rgba(24, 16, 26, 0.96));
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-glow);
      font-size: 24px;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 28px;
      align-items: center;
      margin: 0;
    }
    .nav-menu li a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-sub);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li.active a {
      color: #FFFFFF;
      background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu li.active a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 3px;
      background: var(--primary-glow);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-toggle-btn {
      display: none;
      background: transparent;
      border: none;
      color: var(--text-main);
      font-size: 20px;
      cursor: pointer;
    }

    /* Category 2: Header Section */
    .category-intro-section {
      background: linear-gradient(180deg, rgba(20, 10, 20, 0.9) 0%, rgba(14, 14, 18, 1) 100%),
                  url('/assets/images/0db3c64e849e0d80.jpg') center/cover no-repeat;
      padding: 55px 0 45px;
      border-bottom: 1px solid var(--border-subtle);
    }
    .cat-head-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--secondary);
      background: rgba(255, 184, 0, 0.12);
      padding: 5px 14px;
      border-radius: 20px;
      border: 1px solid rgba(255, 184, 0, 0.3);
      margin-bottom: 16px;
    }
    .cat-h1 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .cat-lead {
      color: var(--text-sub);
      font-size: 15px;
      max-width: 650px;
      margin-bottom: 24px;
    }
    .cat-lead-features {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 15px;
    }
    .lead-feat-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-sub);
    }
    .lead-feat-item i {
      color: var(--primary-glow);
    }

    /* Featured Spotlight Card (Adapted from course/knowledge card layout) */
    .spotlight-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-highlight);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-cinema);
      position: relative;
      overflow: hidden;
    }
    .spotlight-tag {
      position: absolute;
      top: 14px;
      right: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-glow));
      color: #FFF;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 4px;
      letter-spacing: 1px;
    }
    .spotlight-media {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 16px;
      aspect-ratio: 16/9;
      background: #000;
    }
    .spotlight-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .spotlight-media:hover img {
      transform: scale(1.04);
    }
    .spotlight-media-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(14,14,18,0.85) 0%, rgba(0,0,0,0.2) 60%);
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }
    .spotlight-stats {
      display: flex;
      gap: 14px;
      font-size: 12px;
      color: #EEE;
    }
    .spotlight-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .spotlight-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .spotlight-actions {
      display: flex;
      gap: 10px;
    }

    /* Filter Bar Section */
    .filter-section {
      background: var(--bg-surface);
      padding: 24px 0;
      border-bottom: 1px solid var(--border-subtle);
    }
    .filter-group {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .filter-group:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      font-size: 13px;
      color: var(--text-muted);
      min-width: 54px;
      font-weight: 600;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-tag-btn {
      padding: 5px 14px;
      font-size: 12px;
      color: var(--text-sub);
      background: rgba(255, 255, 255, 0.04);
      border-radius: 20px;
      border: 1px solid transparent;
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    .filter-tag-btn:hover,
    .filter-tag-btn.active {
      background: rgba(255, 42, 133, 0.15);
      color: var(--primary-glow);
      border-color: rgba(255, 42, 133, 0.4);
    }

    /* Poster Grid Section */
    .anime-poster-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }
    .anime-poster-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-highlight);
      box-shadow: var(--shadow-cinema);
    }
    .poster-wrap {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #000;
    }
    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .anime-poster-card:hover .poster-wrap img {
      transform: scale(1.06);
    }
    .badge-status {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(4px);
      color: #FFF;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }
    .badge-quality {
      position: absolute;
      top: 10px;
      right: 10px;
      background: linear-gradient(135deg, #E50914, #FF2A85);
      color: #FFF;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 700;
    }
    .poster-bottom-meta {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 10px 8px;
      background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 18, 0.95) 100%);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-size: 11px;
      color: var(--text-muted);
    }
    .poster-score {
      color: var(--secondary);
      font-weight: 700;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .card-info {
      padding: 14px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-meta-tags {
      display: flex;
      gap: 6px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }
    .tag-mini {
      font-size: 11px;
      padding: 2px 6px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 3px;
      color: var(--text-muted);
    }
    .card-synopsis {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex-grow: 1;
    }
    .card-footer-action {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--border-subtle);
      padding-top: 10px;
    }
    .card-play-btn {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-glow);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .card-play-btn:hover {
      color: #FFF;
    }

    /* Pagination Area */
    .pagination-box {
      margin-top: 40px;
      text-align: center;
    }

    /* Special Highlight Collections (横向特色排盘) */
    .spotlight-collections {
      background: var(--bg-surface);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }
    .collection-card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .collection-card:hover {
      border-color: var(--border-highlight);
      transform: translateY(-4px);
    }
    .collection-cover {
      height: 180px;
      position: relative;
      overflow: hidden;
    }
    .collection-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .collection-card:hover .collection-cover img {
      transform: scale(1.05);
    }
    .collection-content {
      padding: 20px;
    }
    .collection-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .collection-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    /* Guides & Editorial Section (选片导读) */
    .guide-box {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 22px;
      height: 100%;
      transition: var(--transition-smooth);
    }
    .guide-box:hover {
      border-color: rgba(255, 255, 255, 0.2);
    }
    .guide-icon {
      font-size: 24px;
      color: var(--primary-glow);
      margin-bottom: 14px;
    }
    .guide-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .guide-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Playback & Audio Recommendation Section */
    .tech-specs-bar {
      background: linear-gradient(135deg, rgba(229, 9, 20, 0.08), rgba(20, 20, 28, 0.95));
      border: 1px solid var(--border-highlight);
      border-radius: var(--radius-lg);
      padding: 30px;
    }
    .spec-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .spec-icon {
      font-size: 28px;
      color: var(--secondary);
      flex-shrink: 0;
      margin-top: 4px;
    }
    .spec-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .spec-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Demand Feedback Panel */
    .feedback-banner {
      background: var(--bg-surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      padding: 36px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .feedback-content {
      max-width: 720px;
    }
    .feedback-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .feedback-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .feedback-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Footer Styles */
    .site-footer {
      background-color: #0A0A0D;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 24px;
      margin-top: 40px;
    }
    .footer-col h5 {
      color: var(--text-main);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 8px;
    }
    .footer-col h5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--primary-glow);
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 10px;
    }
    .footer-links-list a {
      color: var(--text-muted);
      font-size: 13px;
    }
    .footer-links-list a:hover {
      color: var(--primary-glow);
      padding-left: 4px;
    }
    .footer-disclaimer {
      border-top: 1px solid var(--border-subtle);
      margin-top: 45px;
      padding-top: 22px;
      text-align: center;
      font-size: 13px;
      color: #666677;
    }

    @media (max-width: 1024px) {
      .nav-menu {
        gap: 16px;
      }
    }
    @media (max-width: 768px) {
      .nav-toggle-btn {
        display: block;
      }
      .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #14141C;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-subtle);
        gap: 12px;
      }
      .nav-menu.active {
        display: flex;
      }
      .cat-h1 {
        font-size: 24px;
      }
      .spotlight-box {
        margin-top: 24px;
      }
      .feedback-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* roulang page: category3 */
:root {
      --primary: #E50914;
      --primary-glow: #FF2A85;
      --secondary: #FFB800;
      --bg-dark: #0E0E12;
      --bg-surface: #14141C;
      --card-bg: #1A1A24;
      --card-hover: #222230;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(255, 42, 133, 0.35);
      --text-main: #FFFFFF;
      --text-sub: #D1D1DE;
      --text-muted: #888899;
      --font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-cinema: 0 10px 30px rgba(0, 0, 0, 0.5);
      --shadow-glow: 0 0 20px rgba(255, 42, 133, 0.25);
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    body {
      background-color: var(--bg-dark);
      color: var(--text-sub);
      font-family: var(--font-family);
      line-height: 1.75;
      font-size: 15px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    a:hover, a:focus {
      color: var(--primary-glow);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container-custom {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-padding {
      padding: 60px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-tag {
      display: inline-block;
      padding: 4px 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: var(--primary-glow);
      background: rgba(255, 42, 133, 0.12);
      border: 1px solid rgba(255, 42, 133, 0.3);
      border-radius: 50px;
      margin-bottom: 12px;
    }

    .section-title {
      color: var(--text-main);
      font-size: 26px;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .section-desc {
      max-width: 720px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.8;
    }

    /* Buttons */
    .btn-cinema {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 26px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition-smooth);
      border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, #E50914, #FF2A85);
      color: #FFFFFF;
      box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 42, 133, 0.5);
      color: #FFFFFF;
    }
    .btn-outline {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border: 1px solid var(--border-subtle);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      color: #FFFFFF;
    }

    /* Header Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(90deg, rgba(14, 14, 18, 0.96), rgba(24, 16, 26, 0.96));
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-subtle);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary-glow);
      font-size: 24px;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 28px;
      align-items: center;
      margin: 0;
    }
    .nav-menu li a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-sub);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      position: relative;
    }
    .nav-menu li a:hover,
    .nav-menu li.active a {
      color: #FFFFFF;
      background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu li.active a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 3px;
      background: var(--primary-glow);
      border-radius: 2px;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-toggle-btn {
      display: none;
      background: transparent;
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
      font-size: 18px;
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      cursor: pointer;
    }

    /* Section 1: Hero Roadmap / Presets */
    .category-hero {
      position: relative;
      background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.15), transparent 50%),
                  linear-gradient(180deg, #161622 0%, #0E0E12 100%);
      padding: 50px 0 45px;
      border-bottom: 1px solid var(--border-subtle);
    }
    .cat-hero-grid {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .cat-hero-title-box h1 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
      line-height: 1.25;
    }
    .cat-hero-title-box p {
      color: var(--text-sub);
      font-size: 15px;
      max-width: 800px;
      line-height: 1.8;
      margin: 0;
    }
    .roadmap-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 10px;
    }
    .roadmap-step {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 16px;
      position: relative;
    }
    .roadmap-step.active {
      border-color: var(--border-highlight);
      background: rgba(255, 42, 133, 0.06);
    }
    .step-tag {
      font-size: 11px;
      color: var(--secondary);
      font-weight: 700;
      margin-bottom: 6px;
      display: block;
    }
    .step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .step-desc {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }

    /* Section 2: Multidimensional Filter */
    .filter-panel {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: 30px;
      box-shadow: var(--shadow-cinema);
    }
    .filter-row {
      display: flex;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .filter-label {
      width: 90px;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
      flex-shrink: 0;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      font-size: 13px;
      color: var(--text-sub);
      padding: 4px 14px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition-smooth);
    }
    .filter-btn:hover, .filter-btn.active {
      color: #FFF;
      background: rgba(255, 42, 133, 0.15);
      border-color: var(--border-highlight);
    }

    /* Section 3: Master Anime Grid */
    .anime-poster-card {
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .anime-poster-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-highlight);
      box-shadow: 0 10px 24px rgba(229, 9, 20, 0.25);
    }
    .poster-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #000;
    }
    .poster-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .anime-poster-card:hover .poster-img-wrap img {
      transform: scale(1.05);
    }
    .badge-resolution {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.75);
      color: var(--secondary);
      border: 1px solid rgba(255, 184, 0, 0.4);
      padding: 2px 8px;
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }
    .badge-audio {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(229, 9, 20, 0.85);
      color: #FFF;
      padding: 2px 8px;
      font-size: 11px;
      font-weight: 600;
      border-radius: 4px;
    }
    .poster-content {
      padding: 16px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .anime-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .anime-card-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
    }
    .anime-card-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
    .anime-tag {
      font-size: 11px;
      padding: 2px 8px;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-sub);
      border-radius: 4px;
    }

    /* Section 4: Single Action Zone */
    .catalog-action-wrap {
      text-align: center;
      margin-top: 40px;
    }

    /* Section 5: Feature Specials */
    .special-card {
      background: var(--card-bg);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      gap: 20px;
      align-items: center;
      transition: var(--transition-smooth);
    }
    .special-card:hover {
      border-color: rgba(255, 255, 255, 0.2);
      background: var(--card-hover);
    }
    .special-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: rgba(255, 42, 133, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-glow);
      font-size: 24px;
      flex-shrink: 0;
    }
    .special-info h4 {
      font-size: 16px;
      color: var(--text-main);
      margin-bottom: 6px;
      font-weight: 700;
    }
    .special-info p {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
    }

    /* Section 6: Selection Guide / Specs */
    .guide-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .guide-badge {
      display: inline-block;
      font-size: 11px;
      color: var(--primary-glow);
      font-weight: 700;
      margin-bottom: 12px;
    }
    .guide-card h3 {
      font-size: 18px;
      color: var(--text-main);
      font-weight: 700;
      margin-bottom: 12px;
    }
    .guide-card p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.8;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .guide-specs {
      list-style: none;
      margin: 0;
      padding: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 12px;
    }
    .guide-specs li {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .guide-specs li i {
      color: var(--secondary);
      font-size: 10px;
    }

    /* Section 7: Hardware & Codec Suggestions */
    .config-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .config-box {
      background: linear-gradient(145deg, #171722, #121218);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .config-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .config-header i {
      font-size: 20px;
      color: var(--secondary);
    }
    .config-header h4 {
      font-size: 16px;
      color: var(--text-main);
      margin: 0;
      font-weight: 700;
    }
    .config-box ul {
      margin: 0;
      padding-left: 18px;
      color: var(--text-sub);
      font-size: 13px;
      line-height: 1.8;
    }

    /* Section 8: Dedicated Feedback & Request */
    .feedback-banner {
      background: radial-gradient(circle at center, rgba(229, 9, 20, 0.12), transparent 70%),
                  var(--card-bg);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-lg);
      padding: 40px;
      text-align: center;
    }
    .feedback-banner h3 {
      font-size: 22px;
      color: var(--text-main);
      font-weight: 700;
      margin-bottom: 12px;
    }
    .feedback-banner p {
      max-width: 650px;
      margin: 0 auto 24px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .feedback-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    /* Footer */
    .site-footer {
      background-color: #0A0A0E;
      border-top: 1px solid var(--border-subtle);
      padding: 60px 0 30px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-col h5 {
      color: var(--text-main);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }
    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links-list li {
      margin-bottom: 10px;
    }
    .footer-links-list a {
      color: var(--text-muted);
      transition: var(--transition-smooth);
    }
    .footer-links-list a:hover {
      color: var(--primary-glow);
    }
    .footer-disclaimer {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 40px;
      padding-top: 24px;
      text-align: center;
      font-size: 12px;
      color: #666677;
    }

    /* Responsive */
    @media screen and (max-width: 1024px) {
      .roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
      .config-strip {
        grid-template-columns: 1fr;
      }
    }
    @media screen and (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .nav-toggle-btn {
        display: block;
      }
      .roadmap-timeline {
        grid-template-columns: 1fr;
      }
      .special-card {
        flex-direction: column;
        align-items: flex-start;
      }
      .feedback-actions {
        flex-direction: column;
      }
    }
