/* roulang page: index */
:root {
            --bg-deep: #0b0d13;
            --bg-surface: #141721;
            --bg-elevated: #1c2130;
            --primary: #8b5cf6;
            --primary-hover: #7c3aed;
            --primary-light: rgba(139, 92, 246, 0.15);
            --accent: #ec4899;
            --cyan: #06b6d4;
            --cyan-glow: rgba(6, 182, 212, 0.25);
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --border-dim: rgba(255, 255, 255, 0.08);
            --border-highlight: rgba(139, 92, 246, 0.4);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-pill: 9999px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
            --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.3);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Base Reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-deep);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover, a:focus {
            color: var(--cyan);
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Section Global Spacing */
        .section-block {
            padding: 70px 0;
            position: relative;
            border-bottom: 1px solid var(--border-dim);
        }

        .section-header {
            margin-bottom: 45px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            background: var(--primary-light);
            border: 1px solid var(--border-highlight);
            color: #c4b5fd;
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 680px;
            line-height: 1.7;
        }

        /* Top Announcement & Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 13, 19, 0.92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-dim);
        }

        .top-notice-bar {
            background: linear-gradient(90deg, #18112e 0%, #111e2e 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 7px 0;
            font-size: 13px;
        }

        .notice-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(6, 182, 212, 0.12);
            border: 1px solid rgba(6, 182, 212, 0.3);
            color: var(--cyan);
            padding: 2px 10px;
            border-radius: var(--radius-pill);
            font-weight: 500;
        }

        .pulse-dot {
            width: 7px;
            height: 7px;
            background-color: #10b981;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 8px #10b981;
            animation: pulse 1.8s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        .main-nav {
            padding: 14px 0;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: 0.5px;
        }

        .brand-logo i {
            color: var(--primary);
            font-size: 1.6rem;
            filter: drop-shadow(0 0 10px var(--primary));
        }

        .brand-logo span {
            background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
            margin: 0;
        }

        .nav-links a {
            color: var(--text-muted);
            font-size: 14.5px;
            font-weight: 500;
            padding: 6px 4px;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--text-main);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: var(--radius-pill);
            box-shadow: 0 0 8px var(--primary);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 14px;
        }

        .search-pill {
            display: flex;
            align-items: center;
            background: var(--bg-elevated);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-pill);
            padding: 6px 14px;
            color: var(--text-muted);
            font-size: 13px;
            width: 170px;
            transition: var(--transition);
        }

        .search-pill:focus-within {
            border-color: var(--primary);
            width: 210px;
            box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
        }

        .search-pill input {
            background: transparent;
            border: none;
            color: var(--text-main);
            font-size: 13px;
            margin-left: 8px;
            outline: none;
            width: 100%;
        }

        .search-pill input::placeholder {
            color: #64748b;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 9px 22px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
        }

        .btn-primary:hover {
            opacity: 0.92;
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(139, 92, 246, 0.5);
            color: #fff;
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            border: 1px solid var(--border-dim);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
            color: #fff;
            transform: translateY(-2px);
        }

        /* Hero: Crowdfunding Blueprint Variant */
        .hero-crowdfund {
            padding: 80px 0 90px;
            background: linear-gradient(180deg, rgba(11, 13, 19, 0.6) 0%, var(--bg-deep) 100%),
                        url('/assets/images/bb91f03c36efad78.jpg') center/cover no-repeat;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-dim);
        }

        .hero-crowdfund::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 75% 30%, rgba(139, 92, 246, 0.18) 0%, transparent 65%),
                        radial-gradient(circle at 20% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.16);
            border: 1px solid var(--border-highlight);
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            color: #d8b4fe;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 2.85rem;
            font-weight: 800;
            line-height: 1.22;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero-title span {
            background: linear-gradient(135deg, #a78bfa 0%, #f472b6 50%, #38bdf8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 620px;
        }

        /* Crowdfund Goal Ring & Stage Preview */
        .crowdfund-stage-card {
            background: rgba(20, 23, 33, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(16px);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-card);
            position: relative;
        }

        .progress-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .progress-percent {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--cyan);
            line-height: 1;
        }

        .progress-bar-wrap {
            height: 10px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-pill);
            overflow: hidden;
            margin-bottom: 20px;
        }

        .progress-bar-fill {
            width: 88.6%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary) 0%, var(--cyan) 100%);
            border-radius: var(--radius-pill);
            box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
        }

        .stage-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-dim);
        }

        .metric-item {
            text-align: left;
        }

        .metric-val {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-main);
        }

        .metric-lbl {
            font-size: 12px;
            color: var(--text-muted);
        }

        .tier-preview-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .tier-preview-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }

        .tier-preview-item:hover {
            border-color: var(--border-highlight);
            background: rgba(139, 92, 246, 0.06);
        }

        .tier-tag {
            font-size: 11px;
            padding: 2px 8px;
            border-radius: var(--radius-pill);
            background: rgba(6, 182, 212, 0.15);
            color: var(--cyan);
            font-weight: 600;
        }

        .tier-title {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--text-main);
        }

        .tier-quota {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Generic Card Styling */
        .glass-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-md);
            padding: 26px;
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .glass-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-glow);
        }

        .card-icon-box {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-sm);
            background: var(--primary-light);
            border: 1px solid var(--border-highlight);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #c4b5fd;
            margin-bottom: 18px;
        }

        .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .card-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            flex-grow: 1;
        }

        /* Notice Board Table & Grid */
        .notice-board-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .notice-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-dim);
            transition: var(--transition);
            font-size: 14px;
        }

        .notice-row:last-child {
            border-bottom: none;
        }

        .notice-row:hover {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(139, 92, 246, 0.3);
        }

        .notice-badge {
            font-size: 11px;
            padding: 3px 8px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            background: rgba(139, 92, 246, 0.15);
            color: #c4b5fd;
            margin-right: 12px;
        }

        .notice-badge.urgent {
            background: rgba(236, 72, 153, 0.15);
            color: #f472b6;
        }

        .notice-time {
            color: #64748b;
            font-size: 13px;
        }

        /* Video Showcase & Poster Grid */
        .poster-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .poster-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-highlight);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
        }

        .poster-thumb-wrap {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: #1e2230;
        }

        .poster-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .poster-card:hover .poster-thumb-wrap img {
            transform: scale(1.05);
        }

        .poster-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(11, 13, 19, 0.85);
            backdrop-filter: blur(4px);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            color: var(--cyan);
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .poster-rating {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.85);
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            color: #fbbf24;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .poster-body {
            padding: 16px;
        }

        .poster-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .poster-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Player Mockup Box */
        .player-mockup-frame {
            background: #000;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.7);
            position: relative;
        }

        .player-header-bar {
            background: #161a25;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-dim);
            font-size: 13px;
            color: var(--text-muted);
        }

        .player-controls-strip {
            background: rgba(15, 18, 26, 0.95);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-dim);
        }

        /* Matrix / Channel Entrances */
        .channel-chip {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-pill);
            padding: 12px 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text-main);
            transition: var(--transition);
        }

        .channel-chip:hover {
            background: var(--bg-elevated);
            border-color: var(--primary);
            color: #d8b4fe;
            transform: translateY(-2px);
        }

        /* Pricing / VIP Tier Grid */
        .price-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-lg);
            padding: 34px 28px;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .price-card.featured {
            border-color: var(--primary);
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, var(--bg-surface) 100%);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .featured-ribbon {
            position: absolute;
            top: -12px;
            right: 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #fff;
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 700;
        }

        .price-val {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--text-main);
            margin: 16px 0;
            display: flex;
            align-items: baseline;
        }

        .price-val small {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: normal;
            margin-left: 6px;
        }

        .perk-list {
            list-style: none;
            margin: 20px 0 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-grow: 1;
        }

        .perk-item {
            font-size: 14px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .perk-item i {
            color: #10b981;
            font-size: 13px;
        }

        /* Metric Counters */
        .stat-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-md);
            padding: 28px;
            text-align: center;
        }

        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--cyan);
            letter-spacing: -1px;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Testimonial Quote Bubble */
        .quote-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-md);
            padding: 24px;
            position: relative;
        }

        .quote-user {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .avatar-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            font-size: 14px;
        }

        .user-meta-name {
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text-main);
        }

        .user-meta-client {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* FAQ Section Accordion Override */
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-dim);
            border-radius: var(--radius-sm);
            margin-bottom: 14px;
            padding: 20px 24px;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.16);
        }

        .faq-question {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .faq-question i {
            color: var(--primary);
        }

        .faq-answer {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.75;
            padding-left: 28px;
        }

        /* Footer System */
        .site-footer {
            background: #07080c;
            border-top: 1px solid var(--border-dim);
            padding: 70px 0 30px;
        }

        .footer-logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-logo i {
            color: var(--primary);
        }

        .footer-desc {
            font-size: 13.5px;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            font-size: 13.5px;
            color: var(--text-muted);
        }

        .footer-links a:hover {
            color: var(--cyan);
            padding-left: 4px;
        }

        .copyright-bar {
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 13px;
            color: #475569;
        }

        /* Responsive Breakpoints */
        @media screen and (max-width: 1024px) {
            .hero-title {
                font-size: 2.3rem;
            }
            .section-block {
                padding: 55px 0;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links, .search-pill {
                display: none;
            }
            .hero-title {
                font-size: 1.95rem;
            }
            .stage-metrics {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .section-block {
                padding: 45px 0;
            }
        }

/* roulang page: category2 */
:root {
      --bg-deep: #0b0d13;
      --bg-surface: #141721;
      --bg-elevated: #1c2130;
      --primary: #8b5cf6;
      --primary-hover: #7c3aed;
      --primary-light: rgba(139, 92, 246, 0.15);
      --accent: #ec4899;
      --cyan: #06b6d4;
      --cyan-glow: rgba(6, 182, 212, 0.25);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --border-dim: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(139, 92, 246, 0.4);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 9999px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.3);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover, a:focus {
      color: var(--cyan);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Section Global Spacing */
    .section-block {
      padding: 60px 0;
      position: relative;
      border-bottom: 1px solid var(--border-dim);
    }
    .section-header {
      margin-bottom: 35px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: var(--primary-light);
      border: 1px solid var(--border-highlight);
      color: #c4b5fd;
      font-size: 13px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }
    .section-subtitle {
      font-size: 14.5px;
      color: var(--text-muted);
      max-width: 680px;
      line-height: 1.65;
    }

    /* Top Announcement & Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 13, 19, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-dim);
    }
    .top-notice-bar {
      background: rgba(20, 23, 33, 0.9);
      border-bottom: 1px solid var(--border-dim);
      padding: 7px 0;
      font-size: 13px;
    }
    .notice-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(6, 182, 212, 0.12);
      border: 1px solid rgba(6, 182, 212, 0.3);
      color: var(--cyan);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-weight: 500;
    }
    .pulse-dot {
      width: 7px;
      height: 7px;
      background-color: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--cyan);
      animation: pulse-glow 1.8s infinite;
    }
    @keyframes pulse-glow {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }
    .main-nav {
      padding: 14px 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 10px var(--primary));
    }
    .brand-logo span {
      background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      list-style: none;
      margin: 0;
    }
    .nav-links a {
      color: var(--text-muted);
      font-size: 14.5px;
      font-weight: 500;
      padding: 6px 4px;
      position: relative;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--text-main);
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: var(--radius-pill);
      box-shadow: 0 0 8px var(--primary);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
    }
    .search-pill {
      display: flex;
      align-items: center;
      background: var(--bg-elevated);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      width: 170px;
      transition: var(--transition);
    }
    .search-pill:focus-within {
      border-color: var(--primary);
      width: 205px;
      box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
    }
    .search-pill input {
      background: transparent;
      border: none;
      color: var(--text-main);
      font-size: 13px;
      margin-left: 8px;
      outline: none;
      width: 100%;
    }
    .search-pill input::placeholder {
      color: #64748b;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 20px;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #fff;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
    }
    .btn-primary:hover {
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.55);
      color: #fff;
      transform: translateY(-1px);
    }
    .btn-outline {
      background: var(--bg-elevated);
      border: 1px solid var(--border-dim);
      color: var(--text-main);
    }
    .btn-outline:hover {
      border-color: var(--cyan);
      color: var(--cyan);
      background: rgba(6, 182, 212, 0.08);
    }

    /* 面包屑规范 */
    .breadcrumbs-wrap {
      padding: 18px 0 6px;
      background: #0f121a;
      border-bottom: 1px solid var(--border-dim);
    }
    .breadcrumbs {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 13px;
      color: var(--text-muted);
    }
    .breadcrumbs li+li:before {
      content: "/";
      padding: 0 10px;
      color: #475569;
    }
    .breadcrumbs a {
      color: var(--text-muted);
    }
    .breadcrumbs a:hover {
      color: var(--text-main);
    }
    .breadcrumbs .current {
      color: var(--cyan);
      font-weight: 600;
    }

    /* 分类筛选器与主头部 (非全幅巨幕) */
    .category-filter-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-lg);
      padding: 28px 30px;
      box-shadow: var(--shadow-card);
      margin-top: 15px;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 16px;
      gap: 16px;
      font-size: 13.5px;
    }
    .filter-row:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      color: var(--text-muted);
      min-width: 54px;
      padding-top: 5px;
      font-weight: 500;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-pill {
      display: inline-block;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: var(--bg-elevated);
      color: #cbd5e1;
      font-size: 13px;
      border: 1px solid transparent;
      transition: var(--transition);
      cursor: pointer;
    }
    .filter-pill:hover {
      border-color: rgba(139, 92, 246, 0.4);
      color: var(--text-main);
    }
    .filter-pill.active {
      background: var(--primary);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
    }

    /* 本周高分榜推荐区 */
    .rank-mini-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      padding: 14px;
      display: flex;
      gap: 14px;
      align-items: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .rank-mini-card:hover {
      transform: translateY(-3px);
      border-color: var(--border-highlight);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }
    .rank-thumb {
      width: 76px;
      height: 106px;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      position: relative;
      background: var(--bg-elevated);
    }
    .rank-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    .rank-mini-card:hover .rank-thumb img {
      transform: scale(1.05);
    }
    .rank-badge-num {
      position: absolute;
      top: 4px;
      left: 4px;
      width: 22px;
      height: 22px;
      background: linear-gradient(135deg, var(--accent), #f43f5e);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    }
    .rank-meta h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.35;
    }
    .rank-meta p {
      font-size: 12.5px;
      color: var(--text-muted);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .rank-tag-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .score-badge {
      color: #f59e0b;
      font-weight: 700;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 3px;
    }

    /* 连续剧海报卡片网格主体 */
    .series-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
    }
    @media (max-width: 1200px) {
      .series-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 860px) {
      .series-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    }
    @media (max-width: 540px) {
      .series-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }

    .series-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      position: relative;
    }
    .series-card:hover {
      transform: translateY(-5px);
      border-color: rgba(139, 92, 246, 0.4);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    }
    .series-poster {
      position: relative;
      width: 100%;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: var(--bg-elevated);
    }
    .series-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    .series-card:hover .series-poster img {
      transform: scale(1.06);
    }
    .poster-badge-top {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(6px);
      color: #38bdf8;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 4px;
    }
    .poster-badge-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 8px 6px;
      background: linear-gradient(to top, rgba(11, 13, 19, 0.95), transparent);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-size: 12px;
    }
    .update-status {
      color: #cbd5e1;
      font-weight: 500;
    }
    .rating-value {
      color: #f59e0b;
      font-weight: 700;
    }
    .series-info {
      padding: 12px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .series-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .series-desc {
      font-size: 12px;
      color: var(--text-muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 8px;
    }
    .series-meta-foot {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11.5px;
      color: #64748b;
    }

    /* 分页器 */
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .page-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 38px;
      padding: 0 10px;
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      color: #cbd5e1;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
    }
    .page-item:hover {
      border-color: var(--primary);
      color: var(--text-main);
    }
    .page-item.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 3px 12px rgba(139, 92, 246, 0.4);
    }

    /* 专题内容联动支撑区 (2列图文) */
    .feature-topic-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--shadow-card);
    }
    .topic-img-box {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    .topic-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    .feature-topic-card:hover .topic-img-box img {
      transform: scale(1.05);
    }
    .topic-tag-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(139, 92, 246, 0.85);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
    }
    .topic-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .topic-body h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .topic-body p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .topic-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-top: 1px solid var(--border-dim);
      padding-top: 16px;
    }
    .topic-list li {
      font-size: 13px;
      color: #cbd5e1;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .topic-list li span:first-child {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .topic-list li i {
      color: var(--cyan);
      font-size: 11px;
    }

    /* 行业快报与分类关联资讯区 */
    .news-compact-list {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .news-item-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-dim);
      transition: var(--transition);
      gap: 16px;
    }
    .news-item-row:last-child {
      border-bottom: none;
    }
    .news-item-row:hover {
      background: var(--bg-elevated);
    }
    .news-title-side {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14.5px;
      color: var(--text-main);
      font-weight: 500;
    }
    .news-cat-chip {
      font-size: 11.5px;
      padding: 2px 8px;
      border-radius: 4px;
      background: var(--primary-light);
      color: #c4b5fd;
      border: 1px solid var(--border-highlight);
      flex-shrink: 0;
    }
    .news-meta-side {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 13px;
      color: #64748b;
      white-space: nowrap;
    }

    /* 分类专区常见问题排查 (Foundation Accordion 自定义) */
    .custom-accordion {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .accordion-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      margin-bottom: 14px;
      overflow: hidden;
      transition: var(--transition);
    }
    .accordion-item.is-active {
      border-color: rgba(139, 92, 246, 0.4);
    }
    .accordion-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      font-size: 15.5px;
      font-weight: 600;
      color: var(--text-main);
      cursor: pointer;
      user-select: none;
    }
    .accordion-title::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      color: var(--primary);
      transition: var(--transition);
    }
    .accordion-item.is-active .accordion-title::after {
      transform: rotate(180deg);
    }
    .accordion-content {
      display: none;
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      border-top: 1px solid var(--border-dim);
      background: rgba(28, 33, 48, 0.3);
    }
    .accordion-item.is-active .accordion-content {
      display: block;
      padding-top: 16px;
    }

    /* Footer 全局统一 */
    .site-footer {
      background: #090a0f;
      border-top: 1px solid var(--border-dim);
      padding: 60px 0 25px;
      color: var(--text-muted);
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .footer-logo i {
      color: var(--primary);
    }
    .footer-desc {
      font-size: 13.5px;
      line-height: 1.75;
      color: #94a3b8;
      margin-bottom: 20px;
    }
    .footer-heading {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #94a3b8;
      font-size: 13.5px;
    }
    .footer-links a:hover {
      color: var(--cyan);
      padding-left: 4px;
    }
    .copyright-bar {
      border-top: 1px solid var(--border-dim);
      margin-top: 40px;
      padding-top: 25px;
      font-size: 12.5px;
      color: #64748b;
      text-align: center;
    }

/* roulang page: category1 */
:root {
      --bg-deep: #0b0d13;
      --bg-surface: #141721;
      --bg-elevated: #1c2130;
      --bg-highlight: #23293d;
      --primary: #8b5cf6;
      --primary-hover: #7c3aed;
      --primary-light: rgba(139, 92, 246, 0.15);
      --accent: #ec4899;
      --cyan: #06b6d4;
      --cyan-glow: rgba(6, 182, 212, 0.25);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --text-dim: #64748b;
      --border-dim: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(139, 92, 246, 0.4);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 9999px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.3);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover, a:focus {
      color: var(--cyan);
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Top Announcement & Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 13, 19, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-dim);
    }

    .top-notice-bar {
      background: rgba(20, 23, 33, 0.95);
      border-bottom: 1px solid var(--border-dim);
      padding: 6px 0;
      font-size: 13px;
    }

    .notice-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(6, 182, 212, 0.12);
      border: 1px solid rgba(6, 182, 212, 0.3);
      color: var(--cyan);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-weight: 500;
    }

    .pulse-dot {
      width: 7px;
      height: 7px;
      background-color: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--cyan);
      animation: pulseAnim 1.8s infinite;
    }

    @keyframes pulseAnim {
      0% { transform: scale(0.9); opacity: 0.8; }
      50% { transform: scale(1.3); opacity: 1; }
      100% { transform: scale(0.9); opacity: 0.8; }
    }

    .main-nav {
      padding: 14px 0;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }

    .brand-logo i {
      color: var(--primary);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 10px var(--primary));
    }

    .brand-logo span {
      background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0;
    }

    .nav-links a {
      color: var(--text-muted);
      font-size: 14.5px;
      font-weight: 500;
      padding: 6px 4px;
      position: relative;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--text-main);
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: var(--radius-pill);
      box-shadow: 0 0 8px var(--primary);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
    }

    .search-pill {
      display: flex;
      align-items: center;
      background: var(--bg-elevated);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      width: 170px;
      transition: var(--transition);
    }

    .search-pill:focus-within {
      border-color: var(--primary);
      width: 210px;
      box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
    }

    .search-pill input {
      background: transparent;
      border: none;
      color: var(--text-main);
      font-size: 13px;
      margin-left: 8px;
      outline: none;
      width: 100%;
    }

    .search-pill input::placeholder {
      color: #64748b;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #fff;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
      color: #fff;
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-dim);
      color: var(--text-main);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--text-muted);
      color: #fff;
    }

    .btn-sm {
      padding: 5px 14px;
      font-size: 12.5px;
    }

    /* Breadcrumbs */
    .breadcrumbs-wrap {
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border-dim);
      padding: 12px 0;
    }

    .breadcrumbs {
      margin: 0;
      list-style: none;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-dim);
    }

    .breadcrumbs li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .breadcrumbs li:not(:last-child)::after {
      content: '/';
      color: #475569;
    }

    .breadcrumbs a {
      color: var(--text-muted);
    }

    .breadcrumbs a:hover {
      color: var(--cyan);
    }

    .breadcrumbs .current {
      color: var(--text-main);
      font-weight: 600;
    }

    /* Section Global */
    .category-section {
      padding: 50px 0;
      border-bottom: 1px solid var(--border-dim);
      position: relative;
    }

    .section-header {
      margin-bottom: 30px;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background: var(--primary-light);
      border: 1px solid var(--border-highlight);
      color: #c4b5fd;
      font-size: 12.5px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .section-subtitle {
      font-size: 14.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Block 1: Filter Area */
    .filter-box-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      padding: 24px 28px;
      box-shadow: var(--shadow-card);
    }

    .category-title-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border-dim);
    }

    .category-h1 {
      font-size: 2.1rem;
      font-weight: 800;
      margin: 0;
      background: linear-gradient(135deg, #ffffff 30%, #a78bfa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    .stats-chip {
      font-size: 13px;
      color: var(--text-muted);
      background: var(--bg-elevated);
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-dim);
    }

    .filter-group-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 14px;
    }

    .filter-group-row:last-child {
      margin-bottom: 0;
    }

    .filter-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dim);
      min-width: 60px;
      padding-top: 5px;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-pill {
      font-size: 13px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      color: var(--text-muted);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-pill:hover {
      color: var(--text-main);
      background: var(--bg-elevated);
    }

    .filter-pill.active {
      background: var(--primary);
      color: #ffffff;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
    }

    /* Block 2: Spotlight Top Rated */
    .spotlight-card {
      display: flex;
      gap: 16px;
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      padding: 14px;
      height: 100%;
      position: relative;
      transition: var(--transition);
      overflow: hidden;
    }

    .spotlight-card:hover {
      border-color: var(--border-highlight);
      transform: translateY(-4px);
      box-shadow: var(--shadow-glow);
    }

    .spotlight-poster {
      width: 95px;
      flex-shrink: 0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      aspect-ratio: 2 / 3;
      position: relative;
    }

    .spotlight-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .spotlight-card:hover .spotlight-poster img {
      transform: scale(1.06);
    }

    .spotlight-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }

    .spotlight-rank {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 1.3rem;
      font-weight: 800;
      font-style: italic;
      color: rgba(255, 255, 255, 0.12);
    }

    .spotlight-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
      line-height: 1.4;
    }

    .spotlight-score {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: #fbbf24;
      font-weight: 700;
      font-size: 13.5px;
      margin-bottom: 6px;
    }

    .spotlight-meta {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.5;
    }

    /* Block 3: Main Blockbusters Grid */
    .movie-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: var(--transition);
      position: relative;
    }

    .movie-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-highlight);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.2);
    }

    .poster-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: var(--bg-elevated);
    }

    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .movie-card:hover .poster-wrap img {
      transform: scale(1.08);
    }

    .poster-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 13, 19, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      padding: 3px 8px;
      font-size: 11.5px;
      font-weight: 700;
      color: #38bdf8;
      border-radius: 4px;
      letter-spacing: 0.5px;
    }

    .poster-audio {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(139, 92, 246, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 700;
      color: #ffffff;
      border-radius: 4px;
    }

    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(11, 13, 19, 0.95) 100%);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 12px;
      opacity: 0.95;
    }

    .overlay-rating {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 13.5px;
      font-weight: 800;
      color: #fbbf24;
    }

    .overlay-quality {
      font-size: 11.5px;
      color: #cbd5e1;
      background: rgba(255, 255, 255, 0.12);
      padding: 2px 6px;
      border-radius: 4px;
    }

    .movie-body {
      padding: 14px 12px;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
    }

    .movie-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .movie-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 11.5px;
      color: var(--text-dim);
    }

    .movie-tags span {
      background: var(--bg-elevated);
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid var(--border-dim);
    }

    /* Block 4: Pagination */
    .pagination-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .pager-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      border-radius: var(--radius-pill);
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      color: var(--text-muted);
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .pager-btn:hover {
      border-color: var(--primary);
      color: var(--text-main);
      background: var(--bg-elevated);
    }

    .pager-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      box-shadow: 0 0 14px rgba(139, 92, 246, 0.5);
    }

    .pager-dots {
      color: var(--text-dim);
      font-size: 14px;
      padding: 0 4px;
    }

    .pager-jump {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-left: 10px;
    }

    .pager-input {
      width: 48px;
      height: 38px;
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-sm);
      color: var(--text-main);
      text-align: center;
      font-size: 13px;
      outline: none;
    }

    .pager-input:focus {
      border-color: var(--primary);
    }

    /* Block 5: Thematic Curations */
    .thematic-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      transition: var(--transition);
    }

    .thematic-card:hover {
      border-color: var(--cyan);
      box-shadow: 0 12px 30px var(--cyan-glow);
    }

    .thematic-hero-img {
      height: 190px;
      position: relative;
      overflow: hidden;
    }

    .thematic-hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .thematic-card:hover .thematic-hero-img img {
      transform: scale(1.05);
    }

    .thematic-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(6, 182, 212, 0.9);
      color: #0b0d13;
      font-weight: 800;
      font-size: 12px;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
    }

    .thematic-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
    }

    .thematic-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .thematic-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .thematic-meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--border-dim);
      font-size: 12.5px;
      color: var(--text-dim);
    }

    /* Block 6: Film Industry Reports */
    .news-compact-list {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .news-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 24px;
      border-bottom: 1px solid var(--border-dim);
      transition: var(--transition);
    }

    .news-item:last-child {
      border-bottom: none;
    }

    .news-item:hover {
      background: var(--bg-elevated);
    }

    .news-left {
      display: flex;
      align-items: center;
      gap: 14px;
      flex: 1;
    }

    .news-tag {
      font-size: 12px;
      padding: 3px 8px;
      border-radius: 4px;
      background: rgba(139, 92, 246, 0.12);
      color: #c4b5fd;
      border: 1px solid var(--border-highlight);
      white-space: nowrap;
    }

    .news-title {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.5;
    }

    .news-date {
      font-size: 12.5px;
      color: var(--text-dim);
      white-space: nowrap;
    }

    /* Block 7: Category FAQ */
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-card:hover {
      border-color: rgba(255, 255, 255, 0.15);
    }

    .faq-question {
      padding: 18px 24px;
      font-size: 15.5px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
    }

    .faq-question i {
      color: var(--primary);
      transition: var(--transition);
    }

    .faq-card.open .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px solid transparent;
    }

    .faq-card.open .faq-answer {
      border-top-color: var(--border-dim);
      padding-top: 14px;
    }

    /* Site Footer */
    .site-footer {
      background: #08090e;
      border-top: 1px solid var(--border-dim);
      padding: 60px 0 24px;
    }

    .footer-logo {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-logo i {
      color: var(--primary);
    }

    .footer-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-heading {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }

    .footer-links {
      list-style: none;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-links a:hover {
      color: var(--cyan);
      padding-left: 4px;
    }

    .copyright-bar {
      border-top: 1px solid var(--border-dim);
      margin-top: 40px;
      padding-top: 24px;
      text-align: center;
      font-size: 12.5px;
      color: var(--text-dim);
    }

    @media print, screen and (max-width: 64em) {
      .brand-logo { font-size: 1.3rem; }
      .category-h1 { font-size: 1.8rem; }
    }

    @media print, screen and (max-width: 40em) {
      .category-section { padding: 36px 0; }
      .category-title-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
      .category-h1 { font-size: 1.5rem; }
      .filter-group-row { flex-direction: column; gap: 6px; }
      .filter-label { min-width: auto; padding-top: 0; }
      .news-item { flex-direction: column; align-items: flex-start; gap: 8px; }
    }

/* roulang page: category3 */
:root {
      --bg-deep: #0b0d13;
      --bg-surface: #141721;
      --bg-elevated: #1c2130;
      --primary: #8b5cf6;
      --primary-hover: #7c3aed;
      --primary-light: rgba(139, 92, 246, 0.15);
      --accent: #ec4899;
      --cyan: #06b6d4;
      --cyan-glow: rgba(6, 182, 212, 0.25);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --border-dim: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(139, 92, 246, 0.4);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 9999px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.3);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover, a:focus {
      color: var(--cyan);
      text-decoration: none;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Section Global Spacing */
    .section-block {
      padding: 60px 0;
      position: relative;
      border-bottom: 1px solid var(--border-dim);
    }
    .section-header {
      margin-bottom: 35px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: var(--primary-light);
      border: 1px solid var(--border-highlight);
      color: #c4b5fd;
      font-size: 13px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }
    .section-subtitle {
      font-size: 14.5px;
      color: var(--text-muted);
      max-width: 680px;
      line-height: 1.7;
    }

    /* Top Announcement & Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 13, 19, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-dim);
    }
    .top-notice-bar {
      background: rgba(20, 23, 33, 0.85);
      border-bottom: 1px solid var(--border-dim);
      font-size: 13px;
      padding: 8px 0;
    }
    .notice-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(6, 182, 212, 0.12);
      border: 1px solid rgba(6, 182, 212, 0.3);
      color: var(--cyan);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-weight: 500;
    }
    .pulse-dot {
      width: 7px;
      height: 7px;
      background: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--cyan);
      animation: pulse-animation 1.8s infinite;
    }
    @keyframes pulse-animation {
      0% { opacity: 0.4; transform: scale(0.9); }
      50% { opacity: 1; transform: scale(1.2); }
      100% { opacity: 0.4; transform: scale(0.9); }
    }
    .main-nav {
      padding: 14px 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 10px var(--primary));
    }
    .brand-logo span {
      background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0;
    }
    .nav-links a {
      color: var(--text-muted);
      font-size: 14.5px;
      font-weight: 500;
      padding: 6px 4px;
      position: relative;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--text-main);
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: var(--radius-pill);
      box-shadow: 0 0 8px var(--primary);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
    }
    .search-pill {
      display: flex;
      align-items: center;
      background: var(--bg-elevated);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      width: 170px;
      transition: var(--transition);
    }
    .search-pill:focus-within {
      border-color: var(--primary);
      width: 210px;
      box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
    }
    .search-pill input {
      background: transparent;
      border: none;
      color: var(--text-main);
      font-size: 13px;
      margin-left: 8px;
      outline: none;
      width: 100%;
      margin-bottom: 0;
      box-shadow: none;
    }
    .search-pill input::placeholder {
      color: #64748b;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #fff;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, var(--primary-hover) 0%, #db2777 100%);
      color: #fff;
      box-shadow: 0 6px 20px rgba(139, 92, 246, 0.55);
      transform: translateY(-2px);
    }

    /* Semantic Breadcrumb */
    .breadcrumbs-wrap {
      background: #0f121a;
      border-bottom: 1px solid var(--border-dim);
      padding: 12px 0;
    }
    .breadcrumbs-wrap .breadcrumbs {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .breadcrumbs-wrap .breadcrumbs li:not(:last-child)::after {
      content: '/';
      margin-left: 8px;
      color: #475569;
    }
    .breadcrumbs-wrap .breadcrumbs a {
      color: var(--text-muted);
    }
    .breadcrumbs-wrap .breadcrumbs a:hover {
      color: var(--cyan);
    }
    .breadcrumbs-wrap .breadcrumbs li.current {
      color: #e2e8f0;
      font-weight: 500;
    }

    /* Filter Header Area */
    .filter-zone {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: 25px;
      margin-bottom: 10px;
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 14px;
      font-size: 13.5px;
    }
    .filter-row:last-child {
      margin-bottom: 0;
    }
    .filter-label {
      width: 60px;
      color: var(--text-muted);
      font-weight: 600;
      padding-top: 4px;
      flex-shrink: 0;
    }
    .filter-items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-pill {
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: var(--bg-elevated);
      color: #cbd5e1;
      border: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 13px;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-pill:hover {
      background: rgba(139, 92, 246, 0.2);
      color: #fff;
      border-color: var(--primary);
    }
    .filter-pill.active {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    }

    /* Card Systems */
    .anime-poster-card {
      background: var(--bg-surface);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-dim);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
    }
    .anime-poster-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-highlight);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), var(--shadow-glow);
    }
    .poster-img-wrap {
      position: relative;
      width: 100%;
      padding-top: 140%; /* 2:3 approx ratio */
      overflow: hidden;
      background: #1a1e2b;
    }
    .poster-img-wrap img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .anime-poster-card:hover .poster-img-wrap img {
      transform: scale(1.06);
    }
    .badge-episode {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(11, 13, 19, 0.85);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #38bdf8;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 8px;
      border-radius: 6px;
      z-index: 2;
    }
    .badge-score {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(236, 72, 153, 0.9);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
      z-index: 2;
    }
    .card-meta-wrap {
      padding: 14px 12px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .anime-title {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .anime-subtext {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Trending Mini Cards */
    .trending-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: var(--transition);
      position: relative;
    }
    .trending-card:hover {
      border-color: var(--cyan);
      background: var(--bg-elevated);
      transform: translateY(-3px);
    }
    .trending-rank {
      font-size: 1.6rem;
      font-weight: 900;
      font-style: italic;
      width: 32px;
      text-align: center;
      line-height: 1;
    }
    .rank-1 { color: #f59e0b; }
    .rank-2 { color: #94a3b8; }
    .rank-3 { color: #d97706; }
    .rank-other { color: #475569; }
    .trending-thumb {
      width: 60px;
      height: 80px;
      border-radius: var(--radius-sm);
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
    }
    .trending-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .trending-info {
      flex-grow: 1;
      overflow: hidden;
    }
    .trending-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .trending-tag-row {
      display: flex;
 align-items: center;
      gap: 6px;
      font-size: 11px;
      color: #38bdf8;
    }

    /* Thematic Showcase */
    .thematic-block-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
    }
    .thematic-block-card:hover {
      border-color: var(--border-highlight);
      transform: translateY(-4px);
    }
    .thematic-img-box {
      position: relative;
      height: 190px;
      overflow: hidden;
    }
    .thematic-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .thematic-block-card:hover .thematic-img-box img {
      transform: scale(1.05);
    }
    .thematic-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(11, 13, 19, 0.85);
      border: 1px solid var(--border-highlight);
      color: #c4b5fd;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: var(--radius-pill);
    }
    .thematic-content {
      padding: 22px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .thematic-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .thematic-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    /* Pagination */
    .pagination-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .page-btn {
      min-width: 40px;
      height: 40px;
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 600;
      transition: var(--transition);
      cursor: pointer;
    }
    .page-btn:hover {
      border-color: var(--primary);
      color: var(--text-main);
      background: var(--bg-elevated);
    }
    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #ffffff;
      box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
    }

    /* News & Industry List */
    .news-compact-list {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .news-item-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-dim);
      transition: var(--transition);
    }
    .news-item-row:last-child {
      border-bottom: none;
    }
    .news-item-row:hover {
      background: var(--bg-elevated);
    }
    .news-main-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      overflow: hidden;
    }
    .news-tag {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 4px;
      background: rgba(6, 182, 212, 0.15);
      color: var(--cyan);
      border: 1px solid rgba(6, 182, 212, 0.3);
      flex-shrink: 0;
    }
    .news-title {
      font-size: 14.5px;
      color: #e2e8f0;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .news-date {
      font-size: 12.5px;
      color: #64748b;
      flex-shrink: 0;
      margin-left: 16px;
    }

    /* FAQ Custom Accordion */
    .custom-accordion {
      background: transparent;
      border: none;
      list-style: none;
      margin: 0;
    }
    .accordion-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim) !important;
      border-radius: var(--radius-md) !important;
      margin-bottom: 12px;
      overflow: hidden;
    }
    .accordion-title {
      background: transparent !important;
      color: var(--text-main) !important;
      font-size: 15px;
      font-weight: 600;
      padding: 18px 22px;
      border: none !important;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .accordion-title::before {
      display: none;
    }
    .accordion-title:hover {
      background: var(--bg-elevated) !important;
      color: var(--cyan) !important;
    }
    .accordion-content {
      background: #11141d !important;
      border: none !important;
      border-top: 1px solid var(--border-dim) !important;
      color: var(--text-muted);
      font-size: 13.5px;
      line-height: 1.75;
      padding: 20px 22px;
    }

    /* Footer */
    .site-footer {
      background: #08090e;
      border-top: 1px solid var(--border-dim);
      padding: 60px 0 25px;
      margin-top: 40px;
    }
    .footer-logo {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }
    .footer-logo i {
      color: var(--primary);
    }
    .footer-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .footer-heading {
      font-size: 15px;
      font-weight: 700;
      color: #e2e8f0;
      margin-bottom: 16px;
      position: relative;
      padding-bottom: 8px;
    }
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--primary);
    }
    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--text-muted);
      font-size: 13.5px;
    }
    .footer-links a:hover {
      color: var(--cyan);
      padding-left: 4px;
    }
    .copyright-bar {
      border-top: 1px solid var(--border-dim);
      padding-top: 24px;
      margin-top: 30px;
      text-align: center;
      font-size: 12.5px;
      color: #64748b;
    }

    @media print, screen and (max-width: 63.99875em) {
      .section-block { padding: 50px 0; }
      .search-pill { display: none; }
    }
    @media print, screen and (max-width: 39.99875em) {
      .section-block { padding: 40px 0; }
      .filter-row { flex-direction: column; gap: 8px; }
      .filter-label { width: 100%; }
      .brand-logo { font-size: 1.25rem; }
      .section-title { font-size: 1.5rem; }
    }

/* roulang page: category5 */
:root {
      --bg-deep: #0b0d13;
      --bg-surface: #141721;
      --bg-elevated: #1c2130;
      --primary: #8b5cf6;
      --primary-hover: #7c3aed;
      --primary-light: rgba(139, 92, 246, 0.15);
      --accent: #ec4899;
      --cyan: #06b6d4;
      --cyan-glow: rgba(6, 182, 212, 0.25);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --border-dim: rgba(255, 255, 255, 0.08);
      --border-highlight: rgba(139, 92, 246, 0.4);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-pill: 9999px;
      --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
      --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.3);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover, a:focus {
      color: var(--cyan);
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Section Global Spacing */
    .section-block {
      padding: 60px 0;
      position: relative;
      border-bottom: 1px solid var(--border-dim);
    }
    .section-header {
      margin-bottom: 35px;
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      background: var(--primary-light);
      border: 1px solid var(--border-highlight);
      color: #c4b5fd;
      font-size: 13px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }
    .section-subtitle {
      font-size: 14.5px;
      color: var(--text-muted);
      max-width: 720px;
      line-height: 1.7;
    }

    /* Top Announcement & Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(11, 13, 19, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-dim);
    }
    .top-notice-bar {
      background: rgba(20, 23, 33, 0.85);
      border-bottom: 1px solid var(--border-dim);
      padding: 7px 0;
      font-size: 12.5px;
    }
    .notice-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(6, 182, 212, 0.12);
      border: 1px solid rgba(6, 182, 212, 0.3);
      color: var(--cyan);
      padding: 2px 10px;
      border-radius: var(--radius-pill);
      font-weight: 600;
    }
    .pulse-dot {
      width: 7px;
      height: 7px;
      background: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--cyan);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(0.95); opacity: 0.8; }
      50% { transform: scale(1.3); opacity: 1; }
      100% { transform: scale(0.95); opacity: 0.8; }
    }
    .main-nav {
      padding: 14px 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: 0.5px;
    }
    .brand-logo i {
      color: var(--primary);
      font-size: 1.6rem;
      filter: drop-shadow(0 0 10px var(--primary));
    }
    .brand-logo span {
      background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      list-style: none;
      margin: 0;
    }
    .nav-links a {
      color: var(--text-muted);
      font-size: 14.5px;
      font-weight: 500;
      padding: 6px 4px;
      position: relative;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--text-main);
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      border-radius: var(--radius-pill);
      box-shadow: 0 0 8px var(--primary);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
    }
    .search-pill {
      display: flex;
      align-items: center;
      background: var(--bg-elevated);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-pill);
      padding: 6px 14px;
      color: var(--text-muted);
      font-size: 13px;
      width: 170px;
      transition: var(--transition);
    }
    .search-pill:focus-within {
      border-color: var(--primary);
      width: 210px;
      box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
    }
    .search-pill input {
      background: transparent;
      border: none;
      color: var(--text-main);
      font-size: 13px;
      margin-left: 8px;
      outline: none;
      width: 100%;
    }
    .search-pill input::placeholder {
      color: #64748b;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 20px;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      color: #fff;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, var(--primary-hover) 0%, #db2777 100%);
      color: #fff;
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }
    .btn-outline {
      background: rgba(255, 255, 255, 0.04);
      color: var(--text-main);
      border: 1px solid var(--border-dim);
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--cyan);
      color: var(--cyan);
    }

    /* Breadcrumbs */
    .breadcrumbs-wrap {
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border-dim);
      padding: 12px 0;
    }
    .breadcrumbs {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .breadcrumbs li {
      display: flex;
      align-items: center;
    }
    .breadcrumbs li:not(:last-child)::after {
      content: '/';
      margin-left: 8px;
      color: #475569;
    }
    .breadcrumbs a {
      color: var(--text-muted);
    }
    .breadcrumbs a:hover {
      color: var(--primary);
    }

    /* Filter & Category Header */
    .category-hero {
      padding: 40px 0 30px;
      background: linear-gradient(180deg, rgba(20, 23, 33, 0.9) 0%, rgba(11, 13, 19, 1) 100%);
      border-bottom: 1px solid var(--border-dim);
    }
    .category-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .filter-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: 25px;
      box-shadow: var(--shadow-card);
    }
    .filter-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    }
    .filter-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .filter-label {
      width: 85px;
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 600;
      padding-top: 5px;
      flex-shrink: 0;
    }
    .filter-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      flex: 1;
    }
    .filter-pill {
      font-size: 13px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      color: #cbd5e1;
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-pill:hover {
      background: rgba(139, 92, 246, 0.12);
      border-color: var(--primary);
      color: var(--text-main);
    }
    .filter-pill.active {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      font-weight: 600;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    }

    /* Highlight Banner Cards */
    .highlight-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      position: relative;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
      height: 100%;
    }
    .highlight-card:hover {
      transform: translateY(-4px);
      border-color: var(--cyan);
      box-shadow: 0 12px 28px rgba(6, 182, 212, 0.2);
    }
    .highlight-poster {
      width: 120px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    .highlight-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .highlight-card:hover .highlight-poster img {
      transform: scale(1.06);
    }
    .highlight-info {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }
    .highlight-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.4;
    }
    .badge-spec {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      background: rgba(236, 72, 153, 0.15);
      border: 1px solid rgba(236, 72, 153, 0.35);
      color: #f472b6;
      margin-bottom: 6px;
    }
    .highlight-meta {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Movie Grid Cards */
    .disc-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      transition: var(--transition);
      box-shadow: var(--shadow-card);
    }
    .disc-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-highlight);
      box-shadow: 0 14px 30px rgba(139, 92, 246, 0.25);
    }
    .poster-wrap {
      position: relative;
      aspect-ratio: 2/3;
      overflow: hidden;
      background: #000;
    }
    .poster-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .disc-card:hover .poster-wrap img {
      transform: scale(1.08);
    }
    .poster-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 13, 19, 0.95) 0%, rgba(11, 13, 19, 0.2) 50%, rgba(11, 13, 19, 0.6) 100%);
      opacity: 0.85;
      transition: var(--transition);
    }
    .disc-card:hover .poster-overlay {
      opacity: 0.95;
    }
    .tag-top-left {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .badge-resolution {
      font-size: 11px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 4px;
      background: #dc2626;
      color: #fff;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
    }
    .badge-audio {
      font-size: 10px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      background: rgba(11, 13, 19, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--cyan);
    }
    .rating-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(250, 204, 21, 0.4);
      color: #facc15;
      font-weight: 700;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .card-play-hover {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      opacity: 0;
      transform: scale(0.85);
      transition: var(--transition);
    }
    .disc-card:hover .card-play-hover {
      opacity: 1;
      transform: scale(1);
    }
    .play-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    }
    .disc-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
      background: var(--bg-surface);
    }
    .disc-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.4;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .disc-desc {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
      line-height: 1.5;
      height: 36px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }
    .disc-specs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 14px;
    }
    .spec-chip {
      font-size: 11px;
      padding: 1px 7px;
      border-radius: 4px;
      background: var(--bg-elevated);
      color: #94a3b8;
      border: 1px solid var(--border-dim);
    }
    .disc-footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--border-dim);
      padding-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }
    .bitrate-value {
      color: var(--cyan);
      font-weight: 600;
    }

    /* Pagination */
    .pagination-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 45px;
    }
    .page-btn {
      min-width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      font-size: 13px;
      font-weight: 600;
      border-radius: var(--radius-sm);
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      color: var(--text-muted);
      transition: var(--transition);
    }
    .page-btn:hover {
      background: var(--bg-elevated);
      border-color: var(--primary);
      color: var(--text-main);
    }
    .page-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    }
    .page-jump {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .page-jump input {
      width: 48px;
      height: 38px;
      text-align: center;
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-sm);
      color: var(--text-main);
      margin: 0;
      font-size: 13px;
    }
    .page-jump input:focus {
      border-color: var(--primary);
      outline: none;
    }

    /* Topic Showcase Section */
    .topic-card {
      background: linear-gradient(145deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-lg);
      padding: 30px;
      position: relative;
      overflow: hidden;
      height: 100%;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .topic-card::after {
      content: '';
      position: absolute;
      top: -30%;
      right: -20%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
      pointer-events: none;
    }
    .topic-title {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: #fff;
    }
    .topic-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .topic-specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }
    .topic-stat-item {
      background: rgba(11, 13, 19, 0.6);
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-dim);
    }
    .stat-label {
      font-size: 11px;
      color: #64748b;
      margin-bottom: 3px;
    }
    .stat-value {
      font-size: 15px;
      font-weight: 700;
      color: var(--cyan);
    }

    /* Industry Articles */
    .article-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      transition: var(--transition);
    }
    .article-item:hover {
      border-color: var(--border-highlight);
      transform: translateX(4px);
      background: var(--bg-elevated);
    }
    .article-main {
      flex: 1;
    }
    .article-date {
      font-size: 12px;
      color: #64748b;
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px;
    }
    .article-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .article-excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .article-tag {
      font-size: 11px;
      padding: 3px 9px;
      border-radius: var(--radius-pill);
      background: rgba(139, 92, 246, 0.12);
      color: #c4b5fd;
      border: 1px solid rgba(139, 92, 246, 0.3);
      white-space: nowrap;
    }

    /* FAQ Section */
    .faq-accordion-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-dim);
      border-radius: var(--radius-md);
      margin-bottom: 14px;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-header-btn {
      width: 100%;
      text-align: left;
      padding: 18px 24px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }
    .faq-header-btn:hover {
      color: var(--cyan);
    }
    .faq-header-btn i {
      color: var(--primary);
      transition: transform 0.3s ease;
    }
    .faq-body-content {
      padding: 0 24px 20px;
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.8;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 14px;
    }

    /* Footer */
    .site-footer {
      background: #07090e;
      border-top: 1px solid var(--border-dim);
      padding: 65px 0 30px;
    }
    .footer-logo {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .footer-logo i {
      color: var(--primary);
    }
    .footer-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .footer-heading {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--cyan);
      padding-left: 4px;
    }
    .copyright-bar {
      border-top: 1px solid var(--border-dim);
      margin-top: 45px;
      padding-top: 25px;
      text-align: center;
      font-size: 12.5px;
      color: #64748b;
    }

    @media (max-width: 1024px) {
      .highlight-card {
        flex-direction: column;
      }
      .highlight-poster {
        width: 100%;
        height: 140px;
      }
    }
    @media (max-width: 768px) {
      .section-block {
        padding: 45px 0;
      }
      .category-title {
        font-size: 1.6rem;
      }
      .filter-box {
        padding: 16px;
      }
      .filter-row {
        flex-direction: column;
        gap: 8px;
      }
      .filter-label {
        width: 100%;
      }
      .article-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .topic-specs-grid {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category4 */
:root {
    --bg-deep: #0b0d13;
    --bg-surface: #141721;
    --bg-elevated: #1c2130;
    --primary: #8b5cf6;
    --primary-hover: #7c3aed;
    --primary-light: rgba(139, 92, 246, 0.15);
    --accent: #ec4899;
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.25);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-dim: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(139, 92, 246, 0.4);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 25px rgba(139, 92, 246, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  * {
    box-sizing: border-box;
  }
  body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
  }
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }
  a:hover, a:focus {
    color: var(--cyan);
    text-decoration: none;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Header & Nav */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 13, 19, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-dim);
  }
  .top-notice-bar {
    background: #07090e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6px 0;
    font-size: 12.5px;
  }
  .notice-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--cyan);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-weight: 500;
  }
  .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
  }
  .main-nav {
    padding: 14px 0;
  }
  .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.5px;
  }
  .brand-logo i {
    color: var(--primary);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px var(--primary));
  }
  .brand-logo span {
    background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
  }
  .nav-links a {
    color: var(--text-muted);
    font-size: 14.5px;
    font-weight: 500;
    padding: 6px 4px;
    position: relative;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
  }
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-pill);
    box-shadow: 0 0 8px var(--primary);
  }
  .nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
  }
  .search-pill {
    display: flex;
    align-items: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    color: var(--text-muted);
    font-size: 13px;
    width: 170px;
    transition: var(--transition);
  }
  .search-pill:focus-within {
    border-color: var(--primary);
    width: 210px;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
  }
  .search-pill input {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 13px;
    margin-left: 8px;
    outline: none;
    width: 100%;
    margin-bottom: 0;
    box-shadow: none;
    height: auto;
    padding: 0;
  }
  .search-pill input::placeholder {
    color: #64748b;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
  }
  .btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  }
  .btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    color: var(--text-main);
  }
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan);
    border-color: var(--cyan);
  }

  /* Breadcrumbs */
  .breadcrumb-nav {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(20, 23, 33, 0.5);
  }
  .breadcrumbs {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .breadcrumbs li {
    display: inline-flex;
    align-items: center;
  }
  .breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #475569;
  }
  .breadcrumbs li.current {
    color: var(--cyan);
    font-weight: 600;
  }

  /* Section Spacing */
  .section-block {
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid var(--border-dim);
  }
  .section-header {
    margin-bottom: 35px;
  }
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: var(--primary-light);
    border: 1px solid var(--border-highlight);
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.6;
  }

  /* Blueprint Hero: Trial & Qualification Form Banner */
  .category-hero-box {
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.18), transparent 60%),
                linear-gradient(180deg, #161a26 0%, #10131c 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
  }
  .category-hero-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: url('/assets/images/8ea892a725c54bb5.jpg') center/cover no-repeat;
    opacity: 0.12;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    pointer-events: none;
  }
  .badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }
  .badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
  }
  .badge-hero.purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #c4b5fd;
  }
  .category-h1 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.25;
  }
  .category-lead {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 24px;
  }
  .trial-form-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    background: rgba(11, 13, 19, 0.6);
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-dim);
    max-width: 580px;
  }
  .trial-form-inline input {
    flex: 1;
    min-width: 200px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    margin-bottom: 0;
    box-shadow: none;
  }
  .trial-form-inline input:focus {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  /* Multi-Dimension Filter Bar */
  .filter-matrix {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 30px;
  }
  .filter-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  }
  .filter-row:last-child {
    border-bottom: none;
  }
  .filter-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    min-width: 70px;
  }
  .filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .filter-pill {
    padding: 4px 14px;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-pill);
    transition: var(--transition);
    border: 1px solid transparent;
  }
  .filter-pill:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
  }
  .filter-pill.active {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
  }

  /* Short High-Score Cards */
  .rank-mini-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .rank-mini-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-card);
  }
  .rank-number {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    font-style: italic;
    color: rgba(255, 255, 255, 0.12);
    min-width: 32px;
  }
  .rank-mini-card:nth-child(1) .rank-number {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
  }
  .rank-mini-card:nth-child(2) .rank-number {
    color: #e2e8f0;
    text-shadow: 0 0 15px rgba(226, 232, 240, 0.4);
  }
  .rank-mini-card:nth-child(3) .rank-number {
    color: #f97316;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
  }
  .rank-img {
    width: 64px;
    height: 84px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
  }
  .rank-detail {
    flex: 1;
    min-width: 0;
  }
  .rank-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .rank-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .score-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
    padding: 1px 8px;
    border-radius: var(--radius-pill);
  }

  /* Catalog Grid Cards */
  .media-poster-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
  }
  .media-poster-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  }
  .poster-wrapper {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #1e2433;
  }
  .poster-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .media-poster-card:hover .poster-wrapper img {
    transform: scale(1.08);
  }
  .poster-top-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(11, 13, 19, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #38bdf8;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
  }
  .poster-score-float {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(245, 158, 11, 0.9);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .card-caption {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .caption-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;
  }
  .caption-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    lineheight: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .caption-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
  }

  /* Pagination */
  .pagination-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
  }
  .page-link:hover {
    border-color: var(--primary);
    color: var(--text-main);
  }
  .page-link.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 14px rgba(139, 92, 246, 0.4);
  }
  .load-more-btn-wrap {
    margin-top: 30px;
    text-align: center;
  }

  /* Two Column Curated Feature Showcase */
  .feature-showcase-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
  }
  .feature-showcase-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-card);
  }
  .showcase-cover {
    height: 220px;
    position: relative;
    overflow: hidden;
  }
  .showcase-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .feature-showcase-card:hover .showcase-cover img {
    transform: scale(1.05);
  }
  .showcase-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .showcase-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .showcase-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
  }
  .showcase-summary {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .showcase-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
  }
  .showcase-list li {
    font-size: 13px;
    color: #cbd5e1;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .showcase-list li i {
    color: #10b981;
    font-size: 12px;
  }

  /* Compact News Feed */
  .news-feed-list {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    padding: 10px 24px;
  }
  .news-feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .news-feed-item:last-child {
    border-bottom: none;
  }
  .news-feed-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
  }
  .news-cat-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    white-space: nowrap;
  }
  .news-title-link {
    font-size: 14.5px;
    font-weight: 500;
    color: #e2e8f0;
  }
  .news-title-link:hover {
    color: var(--cyan);
  }
  .news-date {
    font-size: 12.5px;
    color: #64748b;
    white-space: nowrap;
  }

  /* Accordion FAQ */
  .accordion-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
  }
  .accordion-header {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-main);
  }
  .accordion-header:hover {
    background: rgba(255, 255, 255, 0.04);
  }
  .accordion-header i {
    color: var(--primary);
    transition: transform 0.3s ease;
  }
  .accordion-content {
    padding: 0 22px 18px 22px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
  }

  /* Footer */
  .site-footer {
    background: #080a0f;
    border-top: 1px solid var(--border-dim);
    padding: 60px 0 25px 0;
    position: relative;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
  }
  .footer-logo i {
    color: var(--primary);
  }
  .footer-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
  }
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
  }
  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .footer-links a {
    font-size: 13px;
    color: #94a3b8;
  }
  .footer-links a:hover {
    color: var(--cyan);
    padding-left: 4px;
  }
  .copyright-bar {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 12.5px;
    color: #475569;
  }

  @media (max-width: 1024px) {
    .section-title {
      font-size: 1.6rem;
    }
  }
  @media (max-width: 768px) {
    .category-hero-box {
      padding: 24px 20px;
    }
    .category-h1 {
      font-size: 1.6rem;
    }
    .trial-form-inline {
      border-radius: var(--radius-md);
      flex-direction: column;
      align-items: stretch;
    }
    .trial-form-inline input {
      width: 100%;
    }
    .news-feed-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }
