/* roulang page: index */
:root {
            --bg-deep: #0B0B13;
            --bg-soft: #131320;
            --surface-card: #1B1B2F;
            --primary: #FF4D24;
            --primary-rgb: 255, 77, 36;
            --primary-2: #FF8A47;
            --accent-gold: #FFC247;
            --accent-jade: #3BE0C5;
            --gradient-fire: linear-gradient(120deg, #FF4D24 0%, #FFB347 100%);
            --text-primary: #F4F5FA;
            --text-secondary: #B9BCCB;
            --text-muted: #7A7C8D;
            --border-line: #2A2A42;
            --radius-card: 20px;
            --radius-large: 28px;
            --shadow-card: 0 10px 40px -12px rgb(0 0 0 / 0.5);
            --shadow-hover: 0 22px 60px -12px rgb(255 77 36 / 0.25);
            --font-display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
            --font-body: "Inter", "Noto Sans SC", "PingFang SC", sans-serif;
        }

        /* ----- Reset & Base ----- */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        button,
        input {
            font-family: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: var(--font-display);
            font-weight: 900;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        .container {
            max-width: 1320px;
        }

        .section-padding {
            padding: 110px 0;
        }

        .text-gradient-fire {
            background: var(--gradient-fire);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ----- Preloader? No, just body bg animation accent ----- */
        body::before {
            content: "";
            position: fixed;
            top: -30%;
            left: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgb(255 77 36 / 0.08), transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        /* ----- Navigation ----- */
        .navbar-wukong {
            background-color: rgb(11 11 19 / 0.82);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgb(255 194 71 / 0.12);
            padding: 14px 0;
            transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
            z-index: 1050;
        }

        .navbar-wukong.scrolled {
            background-color: rgb(11 11 19 / 0.95);
            border-bottom-color: rgb(255 194 71 / 0.25);
            box-shadow: 0 6px 30px rgb(0 0 0 / 0.4);
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .brand-icon {
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-fire);
            border-radius: 14px;
            font-size: 1.5rem;
            color: #fff;
            box-shadow: 0 4px 20px rgb(255 77 36 / 0.4);
            flex-shrink: 0;
        }

        .brand-name {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: 1.4rem;
            letter-spacing: -0.01em;
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-name .zh {
            color: var(--text-primary);
            font-size: 1.25rem;
        }

        .brand-name .zh .hot {
            color: var(--primary-2);
        }

        .nav-menu-wukong {
            display: flex;
            align-items: center;
            gap: 34px;
            margin-left: 42px;
        }

        .nav-menu-wukong .nav-link {
            color: var(--text-secondary);
            font-weight: 600;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
            white-space: nowrap;
        }
        
        .nav-menu-wukong .nav-link::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-fire);
            transition: width 0.3s ease;
        }

        .nav-menu-wukong .nav-link:hover,
        .nav-menu-wukong .nav-link.active {
            color: var(--text-primary);
        }
        
        .nav-menu-wukong .nav-link:hover::before,
        .nav-menu-wukong .nav-link.active::before {
            width: 100%;
        }

        .search-command {
            display: flex;
            align-items: center;
            background: rgb(255 255 255 / 0.06);
            border: 1px solid transparent;
            border-radius: 50px;
            padding: 8px 18px;
            max-width: 300px;
            flex: 1;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            margin-left: 20px;
        }
        
        .search-command:hover,
        .search-command:focus-within {
            border-color: rgb(255 194 71 / 0.5);
            box-shadow: 0 0 0 4px rgb(255 194 71 / 0.08);
        }
        
        .search-command i {
            color: var(--text-muted);
            margin-right: 10px;
        }
        
        .search-command input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-primary);
            font-size: 0.9rem;
            width: 100%;
        }
        
        .search-command input::placeholder {
            color: var(--text-muted);
        }
        
        .search-command .kbd {
            margin-left: auto;
            background: rgb(255 255 255 / 0.08);
            border-radius: 6px;
            padding: 1px 8px;
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: 16px;
        }
        
        .avatar-stack {
            display: flex;
            align-items: center;
        }
        
        .avatar-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--bg-deep);
            background: linear-gradient(145deg, #3A3A56, #252540);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-secondary);
            margin-left: -8px;
            cursor: pointer;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        
        .avatar-circle:first-child {
            margin-left: 0;
        }
        
        .avatar-circle:hover {
            transform: translateY(-3px);
            border-color: var(--accent-gold);
        }
        
        .avatar-circle.add {
            background: rgb(255 77 36 / 0.15);
            color: var(--primary-2);
            border-color: rgb(255 77 36 / 0.3);
            font-weight: 800;
            font-size: 1rem;
            line-height: 1;
        }
        
        .avatar-circle.online::after {
            content: "";
            width: 8px;
            height: 8px;
            background: var(--accent-jade);
            border-radius: 50%;
            position: absolute;
            top: 2px;
            right: 2px;
            border: 1px solid var(--bg-deep);
        }
        
        .avatar-circle {
            position: relative;
        }

        .btn-fire {
            background: var(--gradient-fire);
            color: #fff;
            font-weight: 700;
            border-radius: 16px;
            padding: 10px 24px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgb(255 77 36 / 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid transparent;
        }
        
        .btn-fire:hover,
        .btn-fire:focus {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 40px rgb(255 77 36 / 0.5);
            background: linear-gradient(120deg, #FF6A40 0%, #FFC056 100%);
            outline: none;
        }

        .btn-ghost-light {
            background: transparent;
            border: 1px solid rgb(255 255 255 / 0.25);
            color: var(--text-primary);
            font-weight: 500;
            border-radius: 16px;
            padding: 10px 24px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-ghost-light:hover,
        .btn-ghost-light:focus {
            background: rgb(255 255 255 / 0.06);
            border-color: var(--accent-gold);
            color: var(--text-primary);
            outline: none;
        }

        .btn-outline-gold {
            background: transparent;
            border: 1px solid rgb(255 194 71 / 0.4);
            color: var(--accent-gold);
            font-weight: 600;
            border-radius: 16px;
            padding: 12px 30px;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-outline-gold:hover,
        .btn-outline-gold:focus {
            background: rgb(255 194 71 / 0.08);
            border-color: var(--accent-gold);
            outline: none;
        }

        .navbar-toggler-wukong {
            display: none;
            background: transparent;
            border: 1px solid rgb(255 255 255 / 0.3);
            border-radius: 12px;
            width: 46px;
            height: 46px;
            z-index: 1060;
            color: var(--text-primary);
            font-size: 1.4rem;
            align-items: center;
            justify-content: center;
        }
        
        .navbar-toggler-wukong:hover {
            border-color: var(--primary);
        }

        .mobile-menu-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(88vw, 380px);
            height: 100vh;
            background: var(--bg-deep);
            z-index: 1040;
            transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            padding: 92px 30px 30px;
            border-left: 1px solid var(--border-line);
            box-shadow: -10px 0 60px rgb(0 0 0 / 0.6);
        }
        
        .mobile-menu-panel.open {
            right: 0;
        }
        
        .mobile-menu-panel a {
            display: block;
            font-size: 1.15rem;
            font-weight: 600;
            padding: 18px 0;
            border-bottom: 1px solid rgb(255 255 255 / 0.06);
            color: var(--text-secondary);
            transition: color 0.3s, padding-left 0.3s;
        }
        
        .mobile-menu-panel a:hover,
        .mobile-menu-panel a.active {
            color: var(--primary-2);
            padding-left: 8px;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgb(0 0 0 / 0.7);
            backdrop-filter: blur(4px);
            z-index: 1030;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
        }
        
        .mobile-menu-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        /* ----- Hero section ----- */
        .hero {
            position: relative;
            background: url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            isolation: isolate;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgb(0 0 0 / 0.88) 0%, rgb(0 0 0 / 0.5) 45%, rgb(11 11 19 / 0.15) 100%);
            z-index: -1;
        }
        
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 40%, rgb(255 77 36 / 0.2) 0%, transparent 55%);
            z-index: -1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgb(255 194 71 / 0.1);
            border: 1px solid rgb(255 194 71 / 0.3);
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }
        
        .hero-badge .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            display: inline-block;
            animation: pulse 1.6s infinite;
        }

        .hero h1 {
            font-size: clamp(2.6rem, 6vw, 5.2rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin-bottom: 38px;
            line-height: 1.8;
        }

        .hero-ctas {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 54px;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 10px;
        }

        .stat-badge {
            background: rgb(255 255 255 / 0.04);
            border: 1px solid rgb(255 255 255 / 0.08);
            border-radius: 20px;
            padding: 8px 24px 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 160px;
            backdrop-filter: blur(10px);
        }
        
        .stat-badge .num {
            font-size: 1.95rem;
            font-weight: 800;
            color: var(--accent-gold);
            font-feature-settings: "tnum";
            line-height: 1;
            font-family: var(--font-display);
        }
        
        .stat-badge .num.jade {
            color: var(--accent-jade);
        }
        
        .stat-badge .lbl {
            color: var(--text-muted);
            font-size: 0.8rem;
            line-height: 1.3;
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-ring {
            width: min(38vw, 420px);
            aspect-ratio: 1;
            border-radius: 50%;
            border: 1px dashed rgb(255 194 71 / 0.25);
            position: relative;
            animation: spin 40s linear infinite;
        }
        
        .hero-ring::before {
            content: "";
            position: absolute;
            inset: 18%;
            border-radius: 50%;
            border: 2px solid rgb(255 77 36 / 0.3);
            border-top-color: var(--primary);
            animation: spin 6s linear infinite;
        }
        
        .hero-center-icon {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.6rem;
            filter: drop-shadow(0 0 40px rgb(255 77 36 / 0.4));
            z-index: 1;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgb(255 77 36 / 0.7); }
            50% { opacity: 0.6; box-shadow: 0 0 0 8px rgb(255 77 36 / 0); }
        }

        /* Section common */
        .section-head {
            margin-bottom: 48px;
        }
        
        .section-head .pre-title {
            color: var(--primary-2);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
            font-family: var(--font-display);
        }
        
        .section-head h2 {
            font-size: clamp(1.8rem, 3vw, 2.75rem);
            font-weight: 900;
            margin-bottom: 12px;
        }
        
        .section-head .section-desc {
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 640px;
        }

        /* ----- Channel Slider (Kickers) ----- */
        .channel-slider {
            background: var(--bg-deep);
        }
        
        .channel-slider .card-scroll {
            display: flex;
            overflow-x: auto;
            gap: 22px;
            padding: 10px 4px 30px;
            scroll-snap-type: x mandatory;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) rgb(255 255 255 / 0.05);
        }
        
        .channel-slider .card-scroll::-webkit-scrollbar {
            height: 6px;
        }
        
        .channel-slider .card-scroll::-webkit-scrollbar-track {
            background: rgb(255 255 255 / 0.04);
            border-radius: 99px;
        }
        
        .channel-slider .card-scroll::-webkit-scrollbar-thumb {
            background: var(--gradient-fire);
            border-radius: 99px;
        }

        .channel-slider .slide-item {
            flex: 0 0 auto;
            width: 260px;
            scroll-snap-align: start;
            transition: transform 0.3s ease;
        }
        
        @media (max-width: 992px) {
            .channel-slider .slide-item { width: 230px; }
        }
        
        .channel-slider .slide-item:hover {
            transform: translateY(-8px);
        }

        .cover-card {
            background: var(--surface-card);
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-line);
            box-shadow: var(--shadow-card);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
        }
        
        .cover-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgb(255 194 71 / 0.4);
        }
        
        .cover-card .thumb {
            aspect-ratio: 2 / 2.3;
            background: var(--bg-soft);
            position: relative;
            overflow: hidden;
        }
        
        .cover-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .cover-card:hover .thumb img {
            transform: scale(1.07);
        }
        
        .cover-card .thumb::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgb(0 0 0 / 0.65), transparent 40%);
        }
        
        .cover-card .play-layer {
            position: absolute;
            inset: 0;
        }

        .card-badge-top {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 5;
            background: rgb(11 11 19 / 0.8);
            border: 1px solid rgb(255 194 71 / 0.5);
            color: var(--accent-gold);
            font-size: 0.58rem;
            font-weight: 800;
            padding: 5px 14px;
            border-radius: 99px;
            letter-spacing: 0.08em;
            backdrop-filter: blur(8px);
            font-family: var(--font-display);
        }

        .card-bottom-info {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 3;
        }
        
        .card-bottom-info .title {
            font-weight: 700;
            color: #fff;
            font-size: 1.05rem;
            text-shadow: 0 1px 15px rgb(0 0 0 / 0.5);
            margin-bottom: 2px;
        }
        
        .card-bottom-info .meta {
            color: rgb(255 255 255 / 0.8);
            font-size: 0.75rem;
            letter-spacing: 0.03em;
        }

        /* Trending Cards */
        .trend-grid-card {
            background: var(--surface-card);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-line);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
            height: 100%;
            position: relative;
        }
        
        .trend-grid-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgb(255 194 71 / 0.3);
        }
        
        .trend-grid-card .media {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: var(--bg-soft);
        }
        
        .trend-grid-card .media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .trend-grid-card:hover .media img {
            transform: scale(1.06);
        }
        
        .trend-grid-card .media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent 70%, rgb(0 0 0 / 0.55));
        }

        .trend-card-body {
            padding: 26px 28px 28px;
        }
        
        .trend-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }
        
        .mini-tag {
            background: rgb(255 77 36 / 0.1);
            border: 1px solid rgb(255 77 36 / 0.2);
            color: var(--primary-2);
            font-size: 0.65rem;
            font-weight: 600;
            padding: 3px 14px;
            border-radius: 99px;
            letter-spacing: 0.05em;
            transition: background 0.3s;
        }
        
        .trend-tags .mini-tag.gold {
            background: rgb(255 194 71 / 0.08);
            border-color: rgb(255 194 71 / 0.2);
            color: var(--accent-gold);
        }

        .trend-grid-card .body-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .trend-grid-card .body-desc {
            color: var(--text-secondary);
            font-size: 0.92rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 18px;
        }
        
        .trend-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .heat-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgb(255 194 71 / 0.1);
            color: var(--accent-gold);
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 99px;
            padding: 5px 16px;
            font-family: var(--font-display);
        }

        .top-number {
            position: absolute;
            top: -1px;
            left: 28px;
            transform: translateY(-50%);
            z-index: 9;
            background: var(--bg-deep);
            border-radius: 50%;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--accent-gold);
            border: 2px solid rgb(255 194 71 / 0.5);
            box-shadow: 0 10px 35px rgb(0 0 0 / 0.6);
            font-family: var(--font-display);
        }

        /* 2 Column CTA / Mixed layout : Weekly playlist */
        .weekly-playlist {
            background: var(--bg-soft);
            border-radius: var(--radius-large);
        }

        .weekly-list-item {
            background: var(--bg-deep);
            border-radius: 18px;
            border: 1px solid var(--border-line);
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 18px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .weekly-list-item:hover {
            border-color: rgb(255 194 71 / 0.4);
            transform: translateX(6px);
            background: rgb(19 19 32 / 0.8);
        }
        
        .item-index {
            color: var(--text-muted);
            font-weight: 200;
            font-size: 1.6rem;
            font-family: var(--font-display);
            line-height: 1;
            width: 30px;
            text-align: center;
        }
        
        .weekly-list-item .title {
            flex: 1;
            font-weight: 600;
        }
        
        .weekly-list-item .mini-time {
            border-radius: 50%;
            font-size: 0.75rem;
            color: var(--text-muted);
            padding: 1px 4px;
        }

        .cat-grid-entry {
            background: var(--surface-card);
            border-radius: 22px;
            padding: 28px 22px;
            transition: transform 0.3s ease, border 0.3s, box-shadow 0.3s ease;
            border: 1px solid transparent;
            min-height: 140px;
            position: relative;
            overflow: hidden;
        }
        
        .cat-grid-entry::before {
            content: "";
            position: absolute;
            top: -20%;
            right: -20%;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: radial-gradient(circle, rgb(255 77 36 / 0.15), transparent);
        }
        
        .cat-grid-entry:hover {
            border: 1px solid rgb(255 194 71 / 0.4);
            box-shadow: 0 12px 40px rgb(255 77 36 / 0.1);
        }
        
        .cat-grid-entry .cat-icon {
            font-size: 2rem;
            color: var(--primary-2);
            margin-bottom: 14px;
        }
        
        .cat-grid-entry .title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }
        
        .cat-grid-entry .text-muted {
            font-size: 0.78rem;
        }
        
        .cat-arrow {
            position: absolute;
            right: 16px;
            bottom: 16px;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }
        
        .cat-grid-entry:hover .cat-arrow {
            color: var(--accent-gold);
            transform: translateX(4px);
        }

        /* ----- Membership Panel ----- */
        .vip-cta {
            background: linear-gradient(145deg, #171A2C, #0E1420);
            border: 1px solid rgb(255 194 71 / 0.18);
            border-radius: 32px;
            padding: 64px clamp(24px, 6vw, 90px);
            position: relative;
            overflow: hidden;
            margin: 70px 0;
        }
        
        .vip-cta::before {
            content: "";
            position: absolute;
            top: -20%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgb(255 77 36 / 0.19), transparent 70%);
            z-index: 0;
        }
        
        .vip-cta .vip-content {
            z-index: 2;
            position: relative;
        }
        
        .vip-cta .vip-title {
            font-size: clamp(1.9rem, 3.5vw, 3rem);
            margin-bottom: 18px;
            font-weight: 900;
        }

        .vip-features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 32px;
        }
        
        .vip-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.88rem;
        }
        
        .vip-feature-item i {
            color: var(--accent-gold);
            background: rgb(255 194 71 / 0.1);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1rem;
        }

        /* ---- News / CMS ---- */
        .news-card {
            background: var(--surface-card);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-line);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.35s, border-color 0.3s;
            box-shadow: rgba(0, 0, 0, 0.2) 0 8px 25px;
        }
        
        .news-card:hover {
            transform: translateY(-4px);
            border-color: rgb(255 194 71 / 0.2);
        }
        
        .news-card .news-media {
            height: 180px;
            background: var(--bg-soft);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .news-card .news-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .news-card .news-body {
            padding: 22px 20px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .news-card .news-title {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.48;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-card .news-excerpt {
            color: var(--text-secondary);
            font-size: 0.88rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 16px;
            flex: 1;
        }
        
        .news-card .news-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            border-top: 1px solid rgb(255 255 255 / 0.04);
            padding-top: 14px;
            margin-top: 8px;
            color: var(--text-muted);
            font-size: 0.78rem;
        }
        
        .news-card .news-meta i {
            color: var(--primary);
        }

        .empty-news {
            background: var(--bg-soft);
            border-radius: var(--radius-large);
            padding: 80px 40px;
            text-align: center;
            grid-column: 1 / -1;
            border: 2px dashed rgb(255 255 255 / 0.06);
        }
        
        .empty-news .empty-icon {
            font-size: 3.8rem;
            display: block;
            margin-bottom: 18px;
            opacity: 0.8;
        }
        
        .empty-news p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .link-arrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary-2);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .link-arrow i {
            transition: transform 0.3s;
        }
        
        .link-arrow:hover i {
            transform: translateX(4px);
        }

        /* ---- FAQ ---- */
        .faq-section {
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-soft) 100%);
        }
        
        .faq-accordion .accordion-item {
            background-color: transparent;
            border: 1px solid var(--border-line);
            border-radius: 20px !important;
            margin-bottom: 18px;
            overflow: hidden;
            transition: border-color 0.3s ease, background-color 0.3s ease;
        }
        
        .faq-accordion .accordion-item:hover {
            border-color: rgb(255 194 71 / 0.3);
        }
        
        .faq-accordion .accordion-button {
            background-color: transparent;
            color: var(--text-primary);
            padding: 28px 32px;
            font-size: 1.1rem;
            font-weight: 700;
            box-shadow: none;
            font-family: var(--font-display);
        }
        
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgb(255 194 71 / 0.04);
            color: var(--accent-gold);
            box-shadow: none;
        }
        
        .faq-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC247'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3e%3c/svg%3e");
        }
        
        .faq-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC247'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3e%3c/svg%3e");
        }

        .faq-accordion .accordion-body {
            padding: 0 32px 28px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .faq-side {
            position: sticky;
            top: 100px;
            background: var(--bg-soft);
            border-radius: var(--radius-large);
            border: 1px solid var(--border-line);
            padding: 32px;
        }
        
        .faq-side h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        .faq-side p {
            font-size: 0.875rem;
        }

        /* ---- Footer ---- */
        .site-footer {
            background: #08080F;
            border-top: 1px solid rgb(255 255 255 / 0.05);
            padding-top: 80px;
        }

        .footer-brand {
            margin-bottom: 30px;
        }
        
        .footer-brand .brand-icon-lg {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-fire);
            border-radius: 16px;
            color: #fff;
            font-size: 1.7rem;
        }

        .footer-col h5 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 22px;
        }
        
        .footer-col ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 14px;
        }
        
        .footer-col ul a {
            color: var(--text-muted);
            font-size: 0.86rem;
            line-height: 1.4;
        }
        
        .footer-col ul a:hover {
            color: var(--primary-2);
        }

        .copyright-bar {
            border-top: 1px solid rgb(255 255 255 / 0.06);
            padding: 22px 0 28px;
            margin-top: 60px;
        }
        
        .copyright-bar p {
            color: var(--text-muted);
            font-size: 0.78rem;
            margin: 0;
        }
        
        .copyright-bar p a {
            color: var(--text-muted);
        }

        /* Search overlay mobile */
        .search-fullscreen-overlay {
            position: fixed;
            inset: 0;
            background: rgb(11 11 20 / 0.98);
            z-index: 1200;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 15vh 20px;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s ease;
            backdrop-filter: blur(12px);
        }
        
        .search-fullscreen-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .search-fullscreen-overlay .search-panel {
            width: min(100%, 640px);
        }
        
        .search-fullscreen-overlay input {
            width: 100%;
            background: rgb(255 255 255 / 0.06);
            border: 1px solid var(--border-line);
            border-radius: 24px;
            padding: 18px 24px;
            font-size: 1.1rem;
            color: var(--text-primary);
        }

        .search-toggle-mobile {
            display: none;
            background: transparent;
            border: 1px solid rgb(255 255 255 / 0.2);
            color: var(--text-primary);
            border-radius: 10px;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
        }
        
        .search-toggle-mobile.mobile-only {
            background: transparent;
            border: 1px solid rgb(255 255 255 / 0.25);
            color: var(--text-primary);
            border-radius: 10px;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            display: inline-flex;
        }

        .card-scroll-control {
            display: flex;
            gap: 8px;
        }

        .btn-circle-nav {
            width: 42px;
            height: 42px;
            background: var(--bg-soft);
            border: 1px solid var(--border-line);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.3s;
        }
        
        .btn-circle-nav:hover {
            color: var(--text-primary);
            border-color: var(--accent-gold);
            background: rgb(255 194 71 / 0.08);
        }

        /* Keyboard focus; all items a11y */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 3px;
        }

        /* Top badge watermark */
        .logo-watermark {
            background-color: rgb(255 77 36 / 0.85);
            color: #fff;
            font-size: 0.68rem;
            font-weight: 800;
            border-radius: 0 0 10px 0;
            padding: 4px 14px 4px 10px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 6;
            font-style: normal;
        }

        /* Responsive */
        @media (max-width: 1199px) {
            .search-command { max-width: 200px; }
            .nav-menu-wukong { gap: 25px; margin-left: 20px; }
            .header-actions { gap: 14px; }
            .hero-ring { width: 32vw; }
        }

        @media (max-width: 991px) {
            .navbar-wukong .nav-menu-wukong { display: none; }
            .search-command { display: none; }
            .header-actions .btn-fire span { display: none; }
            .header-actions .btn-fire { padding: 8px 16px; font-size: 0.85rem; }

            .search-toggle-mobile {
                display: inline-flex;
            }

            .navbar-toggler-wukong {
                display: inline-flex;
            }

            .avatar-stack {
                display: none;
            }

            .hero-visual { display: none; }
            .hero { min-height: 90vh; }
        }

        @media (max-width: 767px) {
            .hero-stats { gap: 14px; }
            .stat-badge { min-width: 150px; padding: 8px 4px 8px 12px; }
            .section-padding { padding: 64px 0; }
            .hero-subtitle { font-size: 1rem; }
        }
        
        @media (max-width: 575px) {
            .navbar-wukong { padding: 10px 0; }
            .brand-name .zh { font-size: 1.05rem; }
            .search-toggle-mobile { width: 36px; height: 36px; font-size: 1rem; }
            .hero h1 { font-size: clamp(2.2rem, 8vw, 4rem); }
            .footer-copyright-holder p { font-size: 0.68rem; }
        }

        .text-muted-2 {
            color: #6d6f80;
        }
        
        .btn:focus, .btn:active:focus {
            outline: 2px solid var(--accent-gold);
        }

        .active-menu-gold {
            color: var(--accent-gold) !important;
        }
        
        .section-channels:before {
            background: transparent;
        }
        
        .overflow-hidden {
            overflow: hidden;
        }

/* roulang page: category1 */
:root{
  --bg-deep:#0B0B13;
  --bg-soft:#131320;
  --surface-card:#1B1B2F;
  --primary:#FF4D24;
  --primary-rgb:255,77,36;
  --primary-2:#FF8A47;
  --accent-gold:#FFC247;
  --accent-jade:#3BE0C5;
  --gradient-fire:linear-gradient(120deg,#FF4D24 0%,#FFB347 100%);
  --text-primary:#F4F5FA;
  --text-secondary:#B9BCCB;
  --text-muted:#7A7C8D;
  --border-line:#2A2A42;
  --radius-card:20px;
  --radius-card-lg:28px;
  --shadow-card:0 10px 40px -12px rgb(0 0 0 / .5);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg-deep);color:var(--text-primary);font-family:"Inter","Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;line-height:1.7;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;transition:color .2s ease, background .2s ease}
button,input{font-family:inherit}
:focus-visible{outline:2px solid var(--accent-gold);outline-offset:2px}
.container{max-width:1320px}
.text-muted{color:var(--text-muted)!important}
.bg-soft{background:var(--bg-soft)}

/* 品牌区 */
.brand-logo{display:inline-flex;align-items:center;gap:.55rem;color:var(--text-primary);font-weight:800}
.brand-logo:hover{color:#fff}
.brand-icon{width:42px;height:42px;flex:0 0 42px;border-radius:14px;background:var(--gradient-fire);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.4rem;box-shadow:0 8px 24px -6px rgba(255,77,36,.6)}
.brand-name{display:flex;flex-direction:column;line-height:1.1}
.brand-name .zh{font-size:1.32rem;letter-spacing:-.02em;color:#fff}
.brand-name .zh .hot{color:var(--primary);}
.brand-name small{font-size:.62rem;color:var(--text-muted);letter-spacing:.18em;margin-top:2px}

/* 顶部导航 */
.site-header{position:sticky;top:0;z-index:1080;background:rgba(11,11,20,.88);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border-bottom:1px solid rgba(255,194,71,.18)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1.1rem;padding:.9rem 0}
.nav-menu-wukong{display:flex;align-items:center;gap:.25rem;margin:0;padding:0;list-style:none}
.nav-link{padding:.58rem .85rem;border-radius:12px;color:var(--text-secondary);font-weight:600;font-size:.93rem;letter-spacing:.01em;transition:all .2s ease;border:1px solid transparent}
.nav-link:hover{color:#fff;background:rgba(255,255,255,.06)}
.nav-link.active{color:#fff;background:rgba(255,77,36,.12);border-color:rgba(255,77,36,.26)}
.header-tools{display:flex;align-items:center;gap:.6rem}
.command-search{display:flex;align-items:center;gap:.5rem;width:min(300px,22vw);background:rgba(255,255,255,.06);border:1px solid transparent;border-radius:999px;padding:.42rem .95rem;transition:border-color .2s}
.command-search:hover,.command-search:focus-within{border-color:rgba(255,194,71,.55)}
.command-search i{color:var(--text-muted)}
.command-search input{background:transparent;border:0;color:#fff;font-size:.85rem;flex:1;min-width:0;outline:0}
.command-search input::placeholder{color:#6e7182}
.command-key{font-size:.68rem;color:var(--text-muted);border:1px solid var(--border-line);border-radius:6px;padding:0 .35rem;background:rgba(0,0,0,.2)}
.avatar-stack{display:flex;align-items:center}
.avatar-stack .avatar{width:34px;height:34px;border-radius:50%;border:2px solid var(--bg-deep);background:var(--surface-card);display:flex;align-items:center;justify-content:center;color:var(--accent-gold);font-size:.8rem;margin-left:-6px}
.avatar-stack .avatar:first-child{margin-left:0}
.avatar-stack .avatar.plus{background:rgba(255,255,255,.07);color:#fff}
.btn-main{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;background:var(--gradient-fire);border:0;border-radius:14px;padding:.62rem 1.15rem;color:#fff;font-weight:700;font-size:.88rem;white-space:nowrap;box-shadow:0 8px 24px -8px rgba(255,77,36,.55);transition:all .22s}
.btn-main:hover{color:#fff;filter:brightness(1.08);box-shadow:0 12px 32px -8px rgba(255,77,36,.72);transform:translateY(-1px)}
.btn-main i{font-size:1rem}
.btn-outline-light{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.24);border-radius:14px;padding:.65rem 1.15rem;color:#fff;font-weight:600;font-size:.88rem;transition:all .2s}
.btn-outline-light:hover{color:#fff;background:rgba(255,255,255,.09);border-color:var(--accent-gold)}
.mobile-nav-toggle{background:transparent;color:#fff;border:1px solid var(--border-line);font-size:1.2rem;width:42px;height:42px;border-radius:12px;display:none;align-items:center;justify-content:center}

/* Hero */
.page-hero{position:relative;padding:5.6rem 0 5.2rem;background:
linear-gradient(100deg,rgba(11,11,19,.92) 0%,rgba(11,11,19,.68) 48%,rgba(255,77,36,.2) 100%),
radial-gradient(circle at 82% 26%,rgba(255,77,36,.32) 0%,transparent 30%),
url("/assets/images/backpic/back-1.png") center/cover no-repeat;border-bottom:1px solid rgba(255,194,71,.15);overflow:hidden}
.page-hero:before{content:"";position:absolute;top:-180px;right:-160px;width:440px;height:440px;border:1px solid rgba(255,77,36,.3);border-radius:50%;box-shadow:0 0 0 46px rgba(255,77,36,.04),0 0 0 90px rgba(255,77,36,.025)}
.page-hero .container{position:relative;z-index:2}
.eyebrow-tag{display:inline-flex;align-items:center;gap:.4rem;background:rgba(255,77,36,.13);border:1px solid rgba(255,77,36,.34);color:#FF9A6B;border-radius:999px;padding:.35rem .9rem;font-size:.78rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-bottom:1.2rem}
.eyebrow-tag .pulse{width:7px;height:7px;border-radius:50%;background:#FF4D24;box-shadow:0 0 0 0 rgba(255,77,36,.8);animation:pulse-dot 2s infinite}
@keyframes pulse-dot{0%{box-shadow:0 0 0 0 rgba(255,77,36,.8)}70%{box-shadow:0 0 0 8px rgba(255,77,36,0)}100%{box-shadow:0 0 0 0 rgba(255,77,36,0)}}
.page-hero h1{font-weight:900;font-size:clamp(2.6rem,5.4vw,4.8rem);line-height:1.15;letter-spacing:-.03em;margin:0 0 1rem}
.grad-text{background:linear-gradient(120deg,#FFC247,#FF4D24);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
.hero-lead{font-size:1.18rem;color:var(--text-secondary);max-width:620px;margin:0 0 1.1rem}
.hero-lead strong{color:#fff}
.hero-note{display:flex;flex-wrap:wrap;gap:.75rem;color:var(--text-secondary);font-size:.92rem;margin:1.6rem 0 0}
.hero-note span{display:inline-flex;align-items:center;gap:.4rem}
.hero-note i{color:var(--accent-jade)}
.stat-strip{display:flex;flex-wrap:wrap;gap:1rem;padding:1.4rem 1.7rem;border-radius:var(--radius-card-lg);background:rgba(13,13,24,.82);border:1px solid var(--border-line);margin-top:2.6rem;box-shadow:var(--shadow-card);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}
.stat-item{flex:1;min-width:130px}
.stat-item .num{font-size:1.7rem;font-weight:900;color:var(--accent-gold);line-height:1.1;font-feature-settings:"tnum"}
.stat-item .label{color:var(--text-muted);font-size:.82rem;letter-spacing:.06em;margin-top:.15rem}
.stat-item.jade .num{color:var(--accent-jade)}

/* 区块 */
.section-block{padding:5.2rem 0}
.section-block-sm{padding:3.6rem 0}
.section-head{display:flex;flex-wrap:wrap;align-items:end;justify-content:space-between;gap:1.2rem;margin-bottom:2.6rem}
.section-head h2{font-weight:800;font-size:clamp(1.7rem,3vw,2.6rem);letter-spacing:-.02em;margin:0}
.section-head p{color:var(--text-muted);margin:.35rem 0 0;font-size:.98rem}
.arrow-link{display:inline-flex;align-items:center;gap:.3rem;color:var(--accent-gold);font-weight:700;background:none;border:0;font-size:.92rem;transition:gap .2s}
.arrow-link i{transition:transform .2s}
.arrow-link:hover{color:#FFD37C}
.arrow-link:hover i{transform:translateX(4px)}

/* 精选内容 */
.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem}
.collection-card{position:relative;background:var(--surface-card);border-radius:var(--radius-card-lg);overflow:hidden;border:1px solid var(--border-line);box-shadow:var(--shadow-card);transition:transform .28s, box-shadow .28s, border-color .28s;height:100%}
.collection-card:hover{transform:translateY(-6px);box-shadow:0 22px 60px -14px rgba(255,77,36,.28);border-color:rgba(255,194,71,.3)}
.collection-card .cc-image{position:relative;aspect-ratio:16/9;overflow:hidden}
.collection-card .cc-image img{width:100%;height:100%;object-fit:cover}
.collection-card .cc-image:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 35%,rgba(0,0,0,.75) 100%)}
.cc-badge{position:absolute;z-index:2;top:1rem;left:1rem;display:inline-flex;align-items:center;gap:.35rem;background:rgba(10,10,18,.66);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,.18);color:#fff;font-size:.74rem;font-weight:600;border-radius:999px;padding:.3rem .75rem}
.cc-badge i{color:var(--accent-gold)}
.cc-top-no{position:absolute;z-index:2;top:-18px;right:1.25rem;width:52px;height:52px;background:var(--gradient-fire);color:#fff;font-weight:900;font-size:1.45rem;display:flex;align-items:center;justify-content:center;border-radius:18px;box-shadow:0 10px 20px -6px rgba(255,77,36,.6);border:2px solid rgba(255,255,255,.15)}
.collection-card .cc-body{padding:1.4rem 1.4rem 1.5rem}
.collection-card h3{font-size:1.2rem;font-weight:800;margin:0 0 .35rem;color:#fff}
.collection-card p{color:var(--text-secondary);font-size:.9rem;line-height:1.7;margin:0 0 .9rem}
.cc-meta{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:.95rem}
.chip{display:inline-flex;align-items:center;gap:.25rem;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.09);color:var(--text-secondary);border-radius:999px;font-size:.72rem;padding:.2rem .65rem}
.chip i{color:var(--primary-2);font-size:.8rem}

/* 榜单 */
.rank-panel{background:var(--bg-soft);border-radius:var(--radius-card-lg);padding:2.1rem 2.4rem;border:1px solid var(--border-line)}
.rank-list{list-style:none;margin:0;padding:0}
.rank-item{display:flex;align-items:center;gap:1.15rem;padding:1.1rem .2rem;border-bottom:1px solid rgba(255,255,255,.06)}
.rank-item:last-child{border-bottom:0}
.rank-no{width:38px;height:38px;flex:0 0 38px;display:flex;align-items:center;justify-content:center;background:rgba(255,77,36,.11);color:var(--primary-2);border-radius:13px;font-weight:900;font-size:1.1rem;font-feature-settings:"tnum"}
.rank-item:nth-child(2) .rank-no{background:rgba(255,194,71,.13);color:var(--accent-gold)}
.rank-item:nth-child(3) .rank-no{background:rgba(255,255,255,.07);color:#C9CCDB}
.rank-main{flex:1;min-width:0}
.rank-main h4{font-size:1rem;font-weight:700;margin:0 0 .12rem;color:#fff}
.rank-main p{font-size:.84rem;color:var(--text-muted);margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rank-meta{display:flex;align-items:center;gap:.9rem;color:var(--text-muted);font-size:.8rem;white-space:nowrap}
.rank-meta .heart{color:var(--accent-jade)}
.rank-arrow{width:36px;height:36px;flex:0 0 36px;display:inline-flex;align-items:center;justify-content:center;border-radius:12px;background:rgba(255,255,255,.05);color:#fff}
.rank-item:hover .rank-arrow{background:var(--gradient-fire);color:#fff}

/* 工具说明横幅 */
.tool-band{position:relative;border-radius:var(--radius-card-lg);padding:2.7rem;background:
linear-gradient(115deg,rgba(255,77,36,.15),rgba(255,255,255,.02) 42%),
var(--surface-card);
border:1px solid rgba(255,77,36,.25);overflow:hidden}
.tool-band:before{content:"";position:absolute;right:-60px;bottom:-60px;width:220px;height:220px;border:1px solid var(--accent-gold);border-radius:50%;opacity:.3}
.tool-band h3{font-size:1.55rem;font-weight:800;margin:0 0 .6rem}
.tool-band p{color:var(--text-secondary);max-width:620px;margin:0}
.tool-tick{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.tool-tick li{display:flex;align-items:center;gap:.5rem;color:var(--text-secondary);list-style:none;font-size:.9rem}
.tool-tick li i{color:var(--accent-jade)}

/* 手风琴 */
.wukong-accordion .accordion-item{background:var(--surface-card);border:1px solid var(--border-line);border-radius:var(--radius-card)!important;overflow:hidden;margin-bottom:.9rem}
.wukong-accordion .accordion-button{background:var(--surface-card);color:#fff;font-weight:600;padding:1.05rem 1.2rem;box-shadow:none;font-size:1rem}
.wukong-accordion .accordion-button:not(.collapsed){background:rgba(255,194,71,.06);color:var(--accent-gold)}
.wukong-accordion .accordion-button::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFC247' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E")}
.wukong-accordion .accordion-body{color:var(--text-secondary);border-top:1px solid rgba(255,255,255,.05);padding:1.1rem 1.2rem}

/* 大CTA */
.cta-panel{position:relative;border-radius:34px;padding:4rem 2.4rem;text-align:center;overflow:hidden;background:
radial-gradient(circle at 18% 0%,rgba(255,77,36,.36),transparent 45%),
radial-gradient(circle at 82% 100%,rgba(255,194,71,.2),transparent 42%),
var(--surface-card);
border:1px solid rgba(255,194,71,.18)}
.cta-panel h2{font-weight:900;font-size:clamp(1.9rem,3.5vw,3rem);letter-spacing:-.03em}
.cta-panel .subtle{font-size:1.05rem;color:var(--text-secondary);margin:1rem auto 2rem;max-width:570px}

/* Footer */
.site-footer{background:#08080F;border-top:1px solid rgba(255,194,71,.12);padding:4rem 0 1.6rem;margin-top:1rem}
.footer-brand p{font-size:.9rem;line-height:1.75;color:var(--text-muted);margin-top:.9rem}
.btn-circle-nav{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:var(--text-secondary);transition:all .2s}
.btn-circle-nav:hover{background:var(--gradient-fire);border-color:transparent;color:#fff;transform:translateY(-2px)}
.footer-col h5{font-size:.95rem;font-weight:700;letter-spacing:.02em;margin-bottom:1rem}
.footer-col ul{list-style:none;padding:0;margin:0}
.footer-col li{margin-bottom:.55rem}
.footer-col a{color:var(--text-muted);font-size:.88rem}
.footer-col a:hover{color:var(--accent-gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);margin-top:2.6rem;padding-top:1.6rem;display:flex;flex-wrap:wrap;gap:.7rem;justify-content:space-between;color:var(--text-muted);font-size:.82rem}
.footer-bottom a{color:var(--text-muted)}
.footer-bottom a:hover{color:var(--accent-gold)}

/* 移动 下拉 */
.offcanvas-wukong{background:var(--bg-deep);color:#fff;max-width:300px}
.offcanvas-wukong .offcanvas-header{border-bottom:1px solid var(--border-line)}
.offcanvas-wukong .nav-link-m{display:block;padding:.8rem 1.1rem;color:var(--text-secondary);border-bottom:1px solid rgba(255,255,255,.05);font-weight:600}
.offcanvas-wukong .nav-link-m:hover{color:#fff;background:rgba(255,255,255,.04)}
.offcanvas-wukong .nav-link-m.active{color:var(--primary-2);background:rgba(255,77,36,.09)}

/* Responsive */
@media (max-width: 1200px){
.command-search{width:200px}
}
@media (max-width: 992px){
.header-inner{gap:.7rem}
.mobile-nav-toggle{display:inline-flex}
.nav-menu-wukong{display:none!important}
.avatar-stack{display:none}
.command-search{width:auto;padding:.42rem .6rem}
.command-search input,.command-key{display:none}
.command-search i{color:#fff}
.btn-main{padding:.58rem .9rem}
.page-hero{padding:4.2rem 0}
.rank-meta .tags-hide{display:none}
.rank-item{flex-wrap:wrap}
.rank-main p{white-space:normal}
}
@media (max-width: 768px){
.hero-lead{font-size:1.02rem}
.stat-strip{padding:1.2rem}
.feature-grid{grid-template-columns:1fr}
.section-block{padding:3.5rem 0}
.btn-main{font-size:.8rem}
.rank-panel{padding:1.4rem .9rem}
.tool-band{padding:1.8rem}
.cta-panel{padding:2.8rem 1.2rem}
.footer-bottom{flex-direction:column;align-items:center;text-align:center}
.brand-name .zh{font-size:1.1rem}
}
@media (max-width: 576px){
.page-hero h1{font-size:2.35rem}
.stat-item{min-width:calc(50% - 1rem)}
.stat-item .num{font-size:1.45rem}
.collection-card .cc-body{padding:1.15rem}
.rank-item{gap:.75rem}
.rank-meta{gap:.4rem;font-size:.75rem}
.rank-no{width:32px;height:32px;flex:0 0 32px;font-size:.9rem}
.section-head h2{font-size:1.6rem}
}

/* roulang page: article */
:root {
            --bg-deep: #0B0B13;
            --bg-soft: #12121e;
            --surface-card: #1A1B2B;
            --surface-2: #23263A;
            --primary: #FF4D24;
            --primary-rgb: 255, 77, 36;
            --primary-2: #FF8A47;
            --accent-gold: #FFC247;
            --accent-jade: #3BE0C5;
            --gradient-fire: linear-gradient(120deg, #FF4D24 0%, #FFB347 100%);
            --text-main: #F4F5FA;
            --text-secondary: #B9BCCB;
            --text-muted: #7A7C8D;
            --border-line: rgba(255, 255, 255, .08);
            --border-gold: rgba(255, 194, 71, .24);
            --radius-card: 20px;
            --radius-large: 28px;
            --shadow-card: 0 10px 40px -12px rgba(0, 0, 0, .55);
            --shadow-hover: 0 24px 60px -14px rgba(255, 77, 36, .28);
            --font-head: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Inter", system-ui, sans-serif;
            --font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-body);
            background: var(--bg-deep);
            color: var(--text-main);
            line-height: 1.7;
            letter-spacing: .01em;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-card);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        a:hover {
            color: var(--accent-gold);
        }

        button,
        input {
            font-family: inherit;
        }

        p {
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1280px;
        }

        .section-pad {
            padding-top: 92px;
            padding-bottom: 92px;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px solid rgba(255, 194, 71, .82);
            outline-offset: 3px;
            border-radius: 8px;
        }

        .text-gradient-brand {
            background: linear-gradient(135deg, #FFC247, #FF7A3D);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        /* ============ Header / Nav ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1080;
            background: rgba(11, 11, 19, .78);
            border-bottom: 1px solid rgba(255, 255, 255, .055);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
        }

        .site-header.is-scrolled {
            background: rgba(9, 9, 16, .88);
            border-bottom-color: rgba(255, 194, 71, .18);
            box-shadow: 0 18px 36px -18px rgba(0, 0, 0, .6);
        }

        .header-row {
            height: 76px;
            gap: 18px;
            position: relative;
        }

        .brand-block {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-width: 210px;
            flex-shrink: 0;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: var(--gradient-fire);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.35rem;
            box-shadow: 0 0 22px rgba(255, 77, 36, .34);
            flex-shrink: 0;
        }

        .brand-copy {
            display: flex;
            flex-direction: column;
            line-height: 1.05;
        }

        .brand-copy strong {
            font-family: var(--font-head);
            font-weight: 900;
            font-size: 1.34rem;
            letter-spacing: -.02em;
            color: #fff;
        }

        .brand-copy strong .kg {
            color: var(--primary-2);
        }

        .brand-copy em {
            font-style: normal;
            font-size: .72rem;
            letter-spacing: .2em;
            margin-top: 5px;
            color: #b8b5c8;
            font-weight: 600;
        }

        .nav-center-box {
            flex: 1;
            display: flex;
            justify-content: center;
            min-width: 0;
        }

        .nav-menu-wukong {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, .035);
            border: 1px solid rgba(255, 255, 255, .05);
            padding: 6px;
            border-radius: 100px;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, .012);
        }

        .nav-menu-wukong .nav-link {
            padding: .5rem 1.1rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: .94rem;
            color: var(--text-secondary);
            letter-spacing: .02em;
            white-space: nowrap;
            transition: background .2s, color .2s, box-shadow .2s;
        }

        .nav-menu-wukong .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, .07);
        }

        .nav-menu-wukong .nav-link.active {
            background: var(--gradient-fire);
            color: #fff;
            box-shadow: 0 8px 24px -8px rgba(255, 77, 36, .72);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-actions .search-box {
            width: min(268px, 24vw);
            height: 44px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid transparent;
            border-radius: 100px;
            padding: 0 14px 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: border-color .2s, box-shadow .2s, background .2s;
        }

        .nav-actions .search-box:hover {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 194, 71, .22);
        }

        .nav-actions .search-box:focus-within {
            border-color: rgba(255, 194, 71, .6);
            box-shadow: 0 0 0 3px rgba(255, 194, 71, .12);
            background: rgba(255, 255, 255, .1);
        }

        .nav-actions .search-box i {
            color: var(--text-muted);
            font-size: .9rem;
        }

        .nav-actions .search-box input {
            width: 100%;
            background: transparent;
            border: 0;
            outline: 0;
            color: var(--text-main);
            font-size: .88rem;
        }

        .nav-actions .search-box input::placeholder {
            color: #8b8e9c;
        }

        .nav-actions .search-box kbd {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 7px;
            color: #8b8e9c;
            font-size: .72rem;
            padding: 2px 7px;
            white-space: nowrap;
        }

        .avatar-stack {
            display: flex;
            align-items: center;
            padding-left: 4px;
        }

        .avatar-chip {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid var(--bg-deep);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .82);
            font-size: .85rem;
            margin-left: -8px;
            position: relative;
            background: linear-gradient(135deg, #3B3070, #67549D);
        }

        .avatar-chip:nth-child(2) {
            background: linear-gradient(135deg, #B1462C, #E67E54);
        }

        .avatar-chip:nth-child(3) {
            background: linear-gradient(135deg, #1E6E77, #34A79A);
        }

        .avatar-chip:first-child {
            margin-left: 0;
        }

        .avatar-chip.avatar-more {
            background: var(--surface-2);
            border-color: rgba(255, 255, 255, .16);
            color: var(--accent-gold);
            font-weight: 800;
            font-size: 1rem;
        }

        .btn-fire {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: var(--gradient-fire);
            color: #fff;
            font-weight: 700;
            padding: .58rem 1.4rem;
            border-radius: 14px;
            border: 0;
            letter-spacing: .03em;
            transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
            box-shadow: 0 8px 22px -8px rgba(255, 77, 36, .6);
            white-space: nowrap;
        }

        .btn-fire:hover {
            color: #fff;
            filter: brightness(1.08);
            transform: translateY(-2px);
            box-shadow: 0 14px 30px -8px rgba(255, 77, 36, .66);
        }

        .btn-fire.small {
            padding: .42rem 1.02rem;
            font-size: .88rem;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .2);
            color: var(--text-main);
            font-weight: 600;
            padding: .58rem 1.4rem;
            border-radius: 14px;
            white-space: nowrap;
            transition: border-color .2s, background .2s, transform .2s, color .2s;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, .07);
            border-color: var(--accent-gold);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-icon {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #cfd1dd;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .06);
            border-radius: 14px;
            font-size: 1.2rem;
            transition: .2s;
        }

        .btn-icon:hover {
            color: #fff;
            background: rgba(255, 255, 255, .1);
            border-color: rgba(255, 194, 71, .32);
        }

        .mobile-search-btn,
        .nav-hamburger {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .06);
        }

        .mobile-search-panel {
            display: none;
            position: absolute;
            left: 0;
            right: 0;
            top: 76px;
            background: rgba(11, 11, 19, .96);
            border-bottom: 1px solid var(--border-gold);
            padding: 18px 20px;
            z-index: 30;
            backdrop-filter: blur(20px);
        }

        .mobile-search-panel.is-open {
            display: block;
        }

        .mobile-search-panel .ms-input-wrap {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 0 14px;
            height: 48px;
            gap: 10px;
        }

        .mobile-search-panel input {
            width: 100%;
            background: transparent;
            border: 0;
            outline: 0;
            color: #fff;
        }

        .offcanvas.wukong-canvas {
            --bs-offcanvas-bg: #10101C;
            --bs-offcanvas-color: #F4F5FA;
            max-width: 340px;
            border-left: 1px solid rgba(255, 194, 71, .2);
        }

        .offcanvas-header {
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .offcanvas-logo {
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
        }

        .offcanvas-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 6px;
            border-radius: 12px;
            color: var(--text-secondary);
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, .04);
        }

        .offcanvas-nav a:hover {
            color: #fff;
            background: rgba(255, 255, 255, .04);
        }

        .offcanvas-nav a i {
            font-size: .8rem;
            color: var(--text-muted);
        }

        /* ============ Article Hero ============ */
        .article-hero-wrap {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(11, 11, 19, .55) 0%, rgba(11, 11, 19, .92) 100%), radial-gradient(ellipse at 80% 0%, rgba(255, 77, 36, .13) 0%, transparent 55%), url('/assets/images/backpic/back-2.png') center top / cover no-repeat;
        }

        .article-hero {
            position: relative;
            padding: 74px 0 88px;
            border-bottom: 1px solid rgba(255, 255, 255, .055);
        }

        .article-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-gold);
            font-size: .78rem;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
            margin-bottom: 24px;
            padding: 6px 14px;
            border: 1px solid rgba(255, 194, 71, .2);
            background: rgba(255, 194, 71, .06);
            border-radius: 100px;
        }

        .article-title {
            max-width: 960px;
            font-family: var(--font-head);
            font-weight: 900;
            line-height: 1.22;
            letter-spacing: -.025em;
            font-size: clamp(2rem, 4.4vw, 3.85rem);
            color: #fff;
            margin: 0 0 24px;
            text-wrap: balance;
        }

        .article-lead {
            max-width: 840px;
            font-size: 1.08rem;
            color: #c0c2d0;
            line-height: 1.85;
            margin-bottom: 0;
        }

        .article-meta-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px 22px;
            margin-top: 30px;
            color: var(--text-muted);
            font-size: .92rem;
        }

        .article-meta-line .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .article-meta-line .meta-item i {
            color: var(--primary-2);
            font-size: 1rem;
        }

        .article-cat-badge {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            padding: 4px 14px;
            background: rgba(255, 77, 36, .13);
            border: 1px solid rgba(255, 77, 36, .24);
            color: #FF9D70;
            border-radius: 100px;
            font-size: .84rem;
            font-weight: 700;
            margin-right: 2px;
        }

        .author-mini {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 28px;
            color: var(--text-secondary);
            font-size: .92rem;
        }

        .author-mini .avatar-chip {
            width: 36px;
            height: 36px;
            color: #fff;
            border: 0;
        }

        .article-breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: .92rem;
            margin-bottom: 32px;
        }

        .article-breadcrumb a {
            color: #a9adbc;
            transition: color .2s;
        }

        .article-breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .article-breadcrumb i {
            font-size: .78rem;
            color: rgba(255, 255, 255, .25);
        }

        .article-breadcrumb .current {
            color: #d5d8e5;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ============ Article Layout ============ */
        .article-main {
            padding: 80px 0 24px;
        }

        .article-inner {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .article-body {
            font-size: 17px;
            line-height: 1.92;
            color: #c9ccd9;
            word-break: break-word;
        }

        .article-body > *:first-child {
            margin-top: 0;
        }

        .article-body p {
            margin: 0 0 1.6em;
        }

        .article-body h2,
        .article-body h3,
        .article-body h4 {
            font-family: var(--font-head);
            color: #fff;
            line-height: 1.4;
            letter-spacing: -.015em;
            margin: 2em 0 .8em;
        }

        .article-body h2 {
            font-size: 1.75rem;
            font-weight: 800;
            padding-left: 18px;
            border-left: 4px solid var(--primary-2);
            border-radius: 2px;
        }

        .article-body h3 {
            font-size: 1.32rem;
            font-weight: 800;
        }

        .article-body a {
            color: #FF9865;
            text-decoration: underline;
            text-decoration-color: rgba(255, 152, 101, .4);
            text-underline-offset: 4px;
        }

        .article-body a:hover {
            color: var(--accent-gold);
        }

        .article-body ul,
        .article-body ol {
            margin: 0 0 1.7em;
            padding-left: 1.25em;
        }

        .article-body ul li,
        .article-body ol li {
            margin-bottom: .56em;
        }

        .article-body ul li::marker {
            color: var(--primary-2);
        }

        .article-body blockquote {
            margin: 2em 0;
            padding: 20px 24px 18px 28px;
            border-left: 4px solid var(--accent-gold);
            border-radius: 0 16px 16px 0;
            background: rgba(255, 194, 71, .07);
            color: #e9eaf2;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .article-body blockquote p {
            margin-bottom: .4em;
        }

        .article-body img {
            border-radius: 18px;
            margin: 1.8em 0 1em;
            box-shadow: var(--shadow-card);
            width: 100%;
            object-fit: cover;
        }

        .article-body hr {
            border: 0;
            height: 1px;
            background: repeating-linear-gradient(90deg, transparent, rgba(255, 255, 255, .1) 10%);
            margin: 2.6em 0;
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8em 0;
            font-size: .95rem;
            background: rgba(255, 255, 255, .025);
            border-radius: 12px;
            overflow: hidden;
        }

        .article-body th,
        .article-body td {
            border: 1px solid rgba(255, 255, 255, .08);
            padding: 12px 14px;
            text-align: left;
            color: #c9cbda;
        }

        .article-body th {
            background: rgba(255, 77, 36, .1);
            color: #fff;
            font-weight: 700;
        }

        .article-body code {
            display: inline-block;
            background: rgba(0, 0, 0, .35);
            border: 1px solid rgba(255, 255, 255, .1);
            color: #FFC6A7;
            padding: .15em .55em;
            border-radius: 8px;
            font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
            font-size: .88em;
        }

        .article-body pre {
            background: #0C0C15;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 16px;
            padding: 20px;
            overflow-x: auto;
            margin: 1.8em 0;
            line-height: 1.7;
        }

        .article-body pre code {
            background: transparent;
            border: 0;
            padding: 0;
            color: #DFE1EC;
            font-size: .9rem;
        }

        .article-foot {
            max-width: 860px;
            margin: 44px auto 0;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 28px;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .tag-list .tag-label {
            color: var(--text-muted);
            font-size: .86rem;
            margin-right: 4px;
        }

        .tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            font-size: .82rem;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, .045);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 100px;
            transition: .2s;
        }

        .tag-pill:hover {
            color: var(--accent-gold);
            border-color: var(--border-gold);
            background: rgba(255, 194, 71, .06);
        }

        .share-block {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .share-block .btn-circle-nav {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            color: var(--text-secondary);
            font-size: .9rem;
            transition: .2s;
        }

        .share-block .btn-circle-nav:hover {
            color: #fff;
            border-color: var(--border-gold);
            background: rgba(255, 77, 36, .14);
        }

        /* ============ Empty state ============ */
        .empty-article {
            text-align: center;
            padding: 64px 24px;
            background: rgba(255, 255, 255, .025);
            border: 1px dashed rgba(255, 255, 255, .12);
            border-radius: var(--radius-large);
            margin: 30px 0 70px;
        }

        .empty-article .empty-icon {
            width: 88px;
            height: 88px;
            margin: 0 auto 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, rgba(255, 77, 36, .2), rgba(255, 194, 71, .1));
            color: var(--accent-gold);
            font-size: 2.2rem;
        }

        .empty-article h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
        }

        .empty-article p {
            color: var(--text-muted);
            margin-bottom: 26px;
        }

        /* ============ Prev / Next ============ */
        .article-pagination {
            border-top: 1px solid rgba(255, 255, 255, .07);
            border-bottom: 1px solid rgba(255, 255, 255, .07);
            margin: 60px 0 0;
            padding: 18px 0;
        }

        .article-pagination .arr-box {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: .88rem;
            color: var(--text-muted);
        }

        .article-pagination .arr-box i {
            transition: transform .2s;
            color: var(--primary-2);
        }

        .article-pagination .arr-box a:hover i {
            transform: translateX(3px);
        }

        /* ============ Related ============ */
        .related-section {
            padding: 80px 0 40px;
            background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .012));
        }

        .section-heading {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 44px;
        }

        .section-kicker {
            display: inline-block;
            color: var(--primary-2);
            font-weight: 700;
            font-size: .78rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-head);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.02em;
            line-height: 1.3;
            font-size: clamp(1.8rem, 3vw, 2.75rem);
            margin: 0;
        }

        .section-side a {
            font-size: .92rem;
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-bottom: 1px solid transparent;
            padding-bottom: 3px;
        }

        .section-side a:hover {
            color: var(--accent-gold);
            border-color: var(--accent-gold);
        }

        .related-card {
            position: relative;
            height: 100%;
            background: var(--surface-card);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .related-card:hover {
            transform: translateY(-7px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(255, 194, 71, .36);
        }

        .related-card .rel-thumb {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--bg-soft);
        }

        .related-card .rel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            position: absolute;
            inset: 0;
            transition: transform .4s ease;
        }

        .related-card:hover .rel-thumb img {
            transform: scale(1.04);
        }

        .rel-thumb .cover-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 3;
            padding: 4px 12px;
            background: rgba(11, 11, 19, .72);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 100px;
            color: #fff;
            font-size: .75rem;
            font-weight: 600;
        }

        .rel-thumb .cover-dur {
            position: absolute;
            right: 14px;
            bottom: 14px;
            z-index: 3;
            color: rgba(255, 255, 255, .9);
            font-size: .78rem;
            background: rgba(0, 0, 0, .4);
            border-radius: 100px;
            padding: 3px 10px;
            backdrop-filter: blur(6px);
        }

        .related-card .rel-content {
            padding: 22px 22px 20px;
        }

        .related-card h3 {
            font-size: 1.08rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.5;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card h3 a:hover {
            color: var(--accent-gold);
        }

        .related-card .rel-summary {
            color: var(--text-muted);
            font-size: .9rem;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.2em;
            margin-bottom: 16px;
        }

        .related-card .rel-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: .83rem;
            color: var(--text-muted);
        }

        /* ============ CTA ============ */
        .cta-single-section {
            padding: 80px 0;
        }

        .cta-panel {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 26px;
            padding: 54px 60px;
            background: linear-gradient(135deg, #181028, #10101B 40%, #12101D), url('/assets/images/backpic/back-3.png') center/cover no-repeat;
            border: 1px solid rgba(255, 194, 71, .22);
            box-shadow: 0 0 60px rgba(255, 77, 36, .08) inset;
        }

        .cta-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(22, 18, 38, .96), rgba(12, 12, 22, .78));
            pointer-events: none;
        }

        .cta-copy,
        .cta-action {
            position: relative;
            z-index: 2;
        }

        .cta-copy h2 {
            font-family: var(--font-head);
            color: #fff;
            font-size: clamp(1.7rem, 3vw, 2.7rem);
            font-weight: 800;
            line-height: 1.35;
            margin: 0 0 14px;
            letter-spacing: -.02em;
        }

        .cta-copy h2 .grad {
            background: linear-gradient(90deg, #FFC247, #FF7A3D);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-copy p {
            max-width: 680px;
            font-size: 1rem;
            color: #B9BCCB;
            margin: 0;
        }

        /* ============ Footer ============ */
        .site-footer {
            background: #08080F;
            padding-top: 92px;
            border-top: 1px solid rgba(255, 255, 255, .05);
            overflow: hidden;
        }

        .footer-brand .brand-logo {
            position: relative;
            left: 0 !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-brand .brand-icon {
            width: 46px;
            height: 46px;
            border-radius: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-fire);
            color: #fff;
            font-size: 1.5rem;
            box-shadow: 0 0 32px rgba(255, 77, 36, .3);
        }

        .footer-brand .brand-name {
            font-family: var(--font-head);
            font-weight: 800;
            font-size: 1.45rem;
            color: #fff;
            display: inline-flex;
            align-items: baseline;
            gap: 4px;
        }

        .footer-brand .brand-name .hot {
            color: #FF7A3D;
        }

        .footer-brand .brand-name small {
            font-size: .66rem;
            letter-spacing: .16em;
            color: var(--text-muted);
            margin-left: 8px;
        }

        .footer-brand p {
            color: #868a9e;
            font-size: .96rem;
            line-height: 1.8;
            max-width: 400px;
            margin-top: 22px;
        }

        .btn-circle-nav {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            color: var(--text-secondary);
            transition: .2s;
        }

        .btn-circle-nav:hover {
            color: #fff;
            border-color: rgba(255, 194, 71, .6);
            background: rgba(255, 77, 36, .14);
            transform: translateY(-2px);
        }

        .footer-col h5 {
            font-weight: 700;
            color: #fff;
            font-size: 1.02rem;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h5::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 34px;
            height: 2px;
            background: var(--gradient-fire);
            border-radius: 2px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li+li {
            margin-top: 10px;
        }

        .footer-col ul a {
            color: #8F93AC;
            font-size: .9rem;
            transition: .2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-col ul a:hover {
            color: var(--accent-gold);
            transform: translateX(4px);
        }

        .footer-store-note {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 12px 14px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .06);
            color: #8F93AC;
            font-size: .84rem;
            line-height: 1.7;
        }

        .footer-store-note i {
            color: var(--accent-jade);
            font-size: 1.06rem;
            margin-top: 2px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .05);
            padding: 28px 0 34px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 20px;
            color: #62667A;
            font-size: .82rem;
            margin-top: 60px;
        }

        .footer-bottom .legal-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom .legal-links a {
            color: #62667A;
        }

        .footer-bottom .legal-links a:hover {
            color: #fff;
        }

        /* ============ responsive ============ */
        @media (max-width: 1199.98px) {
            .nav-actions .search-box {
                width: 220px;
            }
        }

        @media (max-width: 991.98px) {
            .header-row {
                height: 68px;
            }
            .brand-copy strong {
                font-size: 1.2rem;
            }
            .brand-mark {
                width: 38px;
                height: 38px;
                font-size: 1.15rem;
            }
            .btn-fire {
                font-size: .86rem;
                padding: .5rem 1.05rem;
            }
            .navbar-cta-desktop {
                display: none;
            }
            .mobile-search-panel {
                top: 68px;
            }
            .related-section {
                padding: 64px 0 32px;
            }
        }

        @media (max-width: 767.98px) {
            .section-pad {
                padding-top: 60px;
                padding-bottom: 60px;
            }
            .brand-copy em {
                display: none;
            }
            .brand-copy strong {
                font-size: 1.1rem;
            }
            .header-row {
                gap: 10px;
            }
            .brand-block {
                min-width: 0;
            }
            .article-hero {
                padding: 55px 0 62px;
            }
            .article-title {
                font-size: 2.05rem;
            }
            .article-meta-line {
                gap: 10px;
            }
            .article-body {
                font-size: 16px;
                line-height: 1.85;
            }
            .article-foot {
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-panel {
                padding: 40px 24px;
                border-radius: 24px;
            }
            .site-footer {
                padding-top: 68px;
            }
            .footer-bottom {
                flex-direction: column;
                justify-content: center;
                text-align: center;
            }
            .footer-store-note {
                max-width: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .article-main {
                padding: 46px 0 20px;
            }
            .article-inner {
                padding: 0 16px;
            }
            .article-body img {
                border-radius: 14px;
            }
            .related-section {
                padding: 50px 0 30px;
            }
            .section-heading {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
                margin-bottom: 30px;
            }
            .section-heading .section-side {
                display: none;
            }
            .article-pagination .arr-box span:not(.only-text) {
                display: none;
            }
            .cta-panel {
                flex-direction: column;
                align-items: flex-start;
                padding: 34px 20px 26px;
            }
            .cta-panel .btn-fire {
                width: 100%;
            }
            .shard-hide,
            .footer-bottom .legal-links {
                display: none;
            }
        }

/* roulang page: category2 */
:root{
  --bg-deep:#0B0B13;
  --bg-soft:#131320;
  --surface-card:#1B1B2F;
  --primary:#FF4D24;
  --primary-rgb:255,77,36;
  --primary-2:#FF8A47;
  --accent-gold:#FFC247;
  --accent-jade:#3BE0C5;
  --gradient-fire:linear-gradient(120deg,#FF4D24 0%,#FFB347 100%);
  --text-primary:#F4F5FA;
  --text-secondary:#B9BCCB;
  --text-muted:#7A7C8D;
  --border-line:#2A2A42;
  --card-radius:20px;
  --card-radius-lg:28px;
  --shadow-card:0 10px 40px -12px rgb(0 0 0 / 0.5);
  --shadow-hover:0 22px 60px -12px rgb(var(--primary-rgb) / 0.25);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg-deep);
  color:var(--text-primary);
  font-family:"Inter","Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a{color:var(--accent-gold);text-decoration:none;}
a:hover{color:#FFD47A;}
img{max-width:100%;height:auto;}
.container{max-width:1280px;padding-left:1.5rem;padding-right:1.5rem;}
.btn{font-weight:600;letter-spacing:.02em;}
.btn:focus,.btn:focus-visible,.form-control:focus,.form-control:focus-visible,.form-select:focus,.form-select:focus-visible,a:focus-visible,button:focus-visible{
  outline:2px solid var(--accent-gold)!important;
  outline-offset:2px;
  box-shadow:none!important;
}
.btn-gradient{
  background-image:var(--gradient-fire);
  color:#fff;
  border:none;
  border-radius:16px;
  padding:.75rem 1.9rem;
  font-weight:600;
  letter-spacing:.02em;
  box-shadow:0 8px 30px -8px rgb(255 77 36 / .45);
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
}
.btn-gradient::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.18),transparent);
  transform:translateX(-100%);
  transition:transform .5s ease;
}
.btn-gradient:hover{
  color:#fff;
  filter:brightness(1.08);
  box-shadow:0 14px 40px -8px rgb(255 77 36 / .55);
  transform:translateY(-2px);
}
.btn-gradient:hover::before{transform:translateX(100%);}
.btn-ghost{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.2);
  color:var(--text-primary);
  border-radius:16px;
  padding:.75rem 1.8rem;
  font-weight:600;
  transition:all .3s ease;
}
.btn-ghost:hover{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,194,71,.6);
  color:var(--accent-gold);
  transform:translateY(-2px);
}
.text-gradient-fire{
  background:linear-gradient(120deg,#FFB347,#FF4D24);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.text-gradient-gold{
  background:linear-gradient(120deg,#FFE1A0,#FFC247,#FF8A47);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.badge-custom{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  background:rgba(255,194,71,.12);
  border:1px solid rgba(255,194,71,.3);
  color:var(--accent-gold);
  border-radius:999px;
  padding:.3rem .9rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.05em;
}
.badge-fire{
  background:rgba(var(--primary-rgb),.12);
  border:1px solid rgba(var(--primary-rgb),.35);
  color:#FF8A47;
}
.badge-jade{
  background:rgba(59,224,197,.1);
  border:1px solid rgba(59,224,197,.3);
  color:var(--accent-jade);
}
/* ===== 导航 ===== */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1030;
  background:rgba(11,11,19,.86);
  border-bottom:1px solid transparent;
  transition:background .3s ease,backdrop-filter .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.site-header.scrolled{
  background:rgba(11,11,19,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom-color:rgba(255,194,71,.18);
  box-shadow:0 12px 40px -12px rgb(0 0 0/.6);
}
.navbar-wrap{padding:.95rem 0;transition:padding .3s ease;}
.brand-logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  left:0!important;
}
.brand-icon{
  width:42px;height:42px;
  border-radius:14px;
  background:radial-gradient(circle at 30% 30%,#FFB347,var(--primary));
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.2rem;
  box-shadow:0 0 20px rgb(255 77 36/.35),inset 0 1px 0 rgb(255 255 255/.2);
  flex-shrink:0;
}
.brand-name{
  display:flex;
  align-items:baseline;
  line-height:1.1;
  gap:.25rem;
  flex-wrap:wrap;
}
.brand-name .zh{
  font-size:1.3rem;
  font-weight:900;
  color:#fff;
  letter-spacing:-.02em;
}
.brand-name .zh .hot{
  background:linear-gradient(120deg,#FFD6A0,#FF8A47,#FF4D24);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.brand-name small{
  font-size:.68rem;
  color:var(--accent-gold);
  letter-spacing:.18em;
  font-weight:600;
}
.nav-menu-wukong{
  gap:.15rem;
  margin-left:.5rem;
}
.nav-menu-wukong .nav-link{
  color:var(--text-secondary);
  font-size:.95rem;
  font-weight:500;
  padding:.5rem .95rem;
  border-radius:12px;
  transition:all .25s ease;
}
.nav-menu-wukong .nav-link:hover{
  color:#fff;
  background:rgba(255,255,255,.05);
}
.nav-menu-wukong .nav-link.active{
  color:var(--accent-gold);
  background:rgba(255,194,71,.1);
  font-weight:600;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:.6rem;
}
.search-box{
  position:relative;
  width:280px;
  max-width:100%;
}
.search-box .form-control{
  background:rgba(255,255,255,.06);
  border:1px solid transparent;
  border-radius:14px;
  padding:.55rem 1.1rem .55rem 2.5rem;
  color:#EDEEF6;
  font-size:.9rem;
  height:44px;
  transition:all .3s ease;
}
.search-box .form-control::placeholder{
  color:var(--text-muted);
  letter-spacing:.02em;
}
.search-box .form-control:focus{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,194,71,.4);
  box-shadow:0 0 0 4px rgb(255 194 71/.1);
  color:#fff;
}
.search-box > i{
  position:absolute;
  left:1rem;top:50%;
  transform:translateY(-50%);
  color:var(--text-muted);
  font-size:.95rem;
  pointer-events:none;
  z-index:2;
}
.search-kbd{
  position:absolute;
  right:.8rem;top:50%;
  transform:translateY(-50%);
  font-size:.7rem;
  color:var(--text-muted);
  border:1px solid rgba(255,255,255,.12);
  border-radius:6px;
  padding:0 .35rem;
  background:rgba(255,255,255,.04);
  pointer-events:none;
  letter-spacing:.05em;
  z-index:2;
}
.avatar-stack{display:flex;align-items:center;}
.avatar-stack .avatar-item{
  width:36px;height:36px;
  border-radius:50%;
  border:2px solid var(--bg-deep);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  background:var(--surface-card);
  color:var(--text-secondary);
  margin-left:-8px;
  transition:transform .2s ease,border-color .2s ease;
}
.avatar-stack .avatar-item:first-child{margin-left:0;}
.avatar-stack .avatar-item:hover{transform:translateY(-3px);border-color:var(--accent-gold);}
.avatar-stack .avatar-add{
  border:2px dashed rgba(255,255,255,.2);
  background:transparent;
  color:var(--text-muted);
  font-size:.8rem;
}
.header-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background-image:var(--gradient-fire);
  color:#fff;
  border:none;
  border-radius:14px;
  padding:.55rem 1.5rem .55rem 1.3rem;
  font-weight:700;
  font-size:.92rem;
  letter-spacing:.04em;
  transition:all .3s ease;
  box-shadow:0 6px 24px -6px rgb(255 77 36/.5);
  white-space:nowrap;
}
.header-cta-btn .pulse-dot{
  width:7px;height:7px;
  border-radius:50%;
  background:#fff;
  position:relative;
  flex-shrink:0;
}
.header-cta-btn .pulse-dot::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.6);
  animation:pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring{
  0%{transform:scale(.6);opacity:.9;}
  100%{transform:scale(1.6);opacity:0;}
}
.header-cta-btn:hover{
  color:#fff;
  filter:brightness(1.1);
  box-shadow:0 10px 32px -6px rgb(255 77 36/.65);
  transform:translateY(-2px);
}
.nav-toggle-btn{
  width:44px;height:44px;
  border-radius:13px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.2rem;
  transition:all .2s;
}
.nav-toggle-btn:hover{
  background:rgba(255,255,255,.12);
  border-color:var(--accent-gold);
}
.nav-toggle-btn:focus{outline:2px solid var(--accent-gold);outline-offset:2px;}
/* 移动抽屉 */
.mobile-drawer{
  position:fixed;
  top:0;left:0;bottom:0;
  width:min(88vw,360px);
  background:var(--bg-deep);
  border-right:1px solid var(--border-line);
  z-index:1060;
  padding:1.5rem;
  transform:translateX(-105%);
  transition:transform .35s cubic-bezier(.22,.68,0,1);
  overflow-y:auto;
}
.mobile-drawer.open{transform:translateX(0);}
.drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(4px);
  z-index:1055;
  opacity:0;
  visibility:hidden;
  transition:all .3s;
}
.drawer-backdrop.show{opacity:1;visibility:visible;}
.mobile-drawer .nav-link{
  display:block;
  padding:.85rem 1rem;
  color:var(--text-secondary);
  font-size:1.02rem;
  border-radius:14px;
  margin-bottom:.3rem;
  transition:all .2s;
}
.mobile-drawer .nav-link:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}
.mobile-drawer .nav-link.active{
  background:rgba(255,194,71,.1);
  color:var(--accent-gold);
  font-weight:700;
}
/* 全屏搜索 */
.fullscreen-search{
  position:fixed;
  inset:0;
  background:rgba(11,11,19,.96);
  backdrop-filter:blur(16px);
  z-index:1070;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:16vh 1.5rem 2rem;
  opacity:0;
  visibility:hidden;
  transition:all .3s;
}
.fullscreen-search.show{opacity:1;visibility:visible;}
.fullscreen-search .search-panel{width:100%;max-width:680px;}
.fullscreen-search .form-control{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,194,71,.25);
  border-radius:20px;
  padding:1.1rem 1.5rem 1.1rem 3.2rem;
  font-size:1.1rem;
  color:#fff;
}
.fullscreen-search .form-control:focus{border-color:var(--accent-gold);box-shadow:0 0 0 5px rgb(255 194 71/.1);}
.fullscreen-search .search-icon-pos{position:absolute;left:1.2rem;top:1.25rem;font-size:1.2rem;color:var(--accent-gold);}

/* ===== 页面通用 ===== */
.page-main{padding-top:0;}
.section-pad{padding:5.5rem 0;}
.pill-title{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.1em;
  color:var(--accent-gold);
  background:rgba(255,194,71,.08);
  border:1px solid rgba(255,194,71,.2);
  border-radius:999px;
  padding:.4rem 1.2rem;
  margin-bottom:1.1rem;
}
.sec-title{font-size:clamp(1.7rem,3.1vw,2.8rem);font-weight:900;letter-spacing:-.03em;line-height:1.22;margin-bottom:.5rem;}
.sec-sub{color:var(--text-muted);font-size:1.02rem;max-width:720px;margin-bottom:2.5rem;}

/* ===== Hero 区 ===== */
.category-hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  padding:130px 0 5.5rem;
  background-image:url('/assets/images/backpic/back-3.png');
  background-size:cover;
  background-position:center;
  z-index:1;
  overflow:hidden;
}
.category-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg,rgba(11,11,19,.92) 0%,rgba(11,11,19,.68) 48%,rgba(11,11,19,.28) 100%);
  z-index:-1;
}
.category-hero::after{
  content:"";
  position:absolute;
  top:-25%;
  right:-10%;
  width:620px;height:620px;
  background:radial-gradient(circle,rgb(59 224 197 / .12),transparent 65%);
  z-index:-1;
  border-radius:50%;
}
.category-hero .widget-ring{
  width:42px;height:42px;border-radius:50%;
  border:2px solid var(--accent-jade);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1.5rem;
  background:rgb(59 224 197/.08);
  box-shadow:0 0 0 8px rgb(59 224 197/.06);
  color:var(--accent-jade);
  font-size:1rem;
}
.category-hero h1{
  font-size:clamp(2.4rem,5.6vw,4.5rem);
  font-weight:900;
  line-height:1.14;
  letter-spacing:-.035em;
  margin-bottom:1.2rem;
}
.category-hero h1 .wukong-highlight{
  background:linear-gradient(120deg,#FFE1A0,#FFC247,#FF8A47);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}
.category-hero .hero-sub{
  color:var(--text-secondary);
  font-size:clamp(1.02rem,1.6vw,1.22rem);
  max-width:660px;
  line-height:1.9;
  margin-bottom:2.2rem;
  border-left-color:rgb(59 224 197/.4);
}
.category-hero .hero-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-bottom:2.4rem;
}
.hero-stat-row{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  margin-top:2.6rem;
  padding-top:1.8rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.hero-stat-item .num{
  font-size:1.8rem;
  font-weight:900;
  color:var(--accent-gold);
  font-feature-settings:"tnum";
  letter-spacing:-.02em;
  line-height:1.2;
}
.hero-stat-item .lbl{font-size:.8rem;color:var(--text-muted);letter-spacing:.08em;}
.hero-stat-item.jade .num{color:var(--accent-jade);}

/* ===== 精选内容区 ===== */
.feature-grid .cover-card-large{
  border-radius:var(--card-radius-lg);
  overflow:hidden;
  min-height:330px;
  position:relative;
  border:1px solid var(--border-line);
  box-shadow:var(--shadow-card);
  transition:all .35s ease;
  background:var(--surface-card);
}
.feature-grid .cover-card-large:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(255,194,71,.35);
}
.feature-grid .card-img-zone{position:relative;height:100%;min-height:330px;}
.feature-grid .card-img-zone img{width:100%;height:100%;min-height:330px;object-fit:cover;position:absolute;inset:0;}
.feature-grid .card-img-zone::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(11,11,19,.92) 0%,rgba(11,11,19,.28) 55%,rgba(11,11,19,.06) 100%);
}
.feature-grid .card-content{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:2rem 1.8rem 1.4rem;
  z-index:2;
}
.feature-grid .card-content .topic-tag{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background:rgb(11 11 19/.45);
  border:1px solid rgb(255 255 255/.14);
  border-radius:999px;
  padding:.25rem .9rem;
  font-size:.82rem;
  color:var(--accent-jade);
  backdrop-filter:blur(8px);
  margin-bottom:.9rem;
}
.feature-grid .card-content h3{font-size:1.35rem;font-weight:800;color:#fff;margin-bottom:.5rem;letter-spacing:-.01em;}
.feature-grid .card-content p{color:rgb(180 186 200/.85);font-size:.9rem;margin-bottom:.7rem;max-width:560px;}
.feature-grid .card-content .count-badge{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.78rem;
  color:var(--accent-gold);
  font-weight:700;
}
.feature-grid.small .cover-card-small{
  border-radius:20px;
  overflow:hidden;
  height:100%;
  background:var(--surface-card);
  border:1px solid var(--border-line);
  transition:all .3s;
  position:relative;
}
.feature-grid.small .cover-card-small:hover{
  transform:translateY(-5px);
  border-color:rgba(255,194,71,.3);
  box-shadow:var(--shadow-hover);
}
.feature-grid.small .thumb-zone{
  height:168px;
  position:relative;
  overflow:hidden;
  background:var(--bg-soft);
}
.feature-grid.small .thumb-zone img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.feature-grid.small .cover-card-small:hover .thumb-zone img{transform:scale(1.05);}
.feature-grid.small .thumb-zone::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgb(11 11 19/.55),transparent 55%);
}
.feature-grid.small .free-label{
  position:absolute;
  top:.8rem;left:.8rem;
  z-index:2;
  background:rgb(59 224 197/.86);
  color:#071B18;
  font-size:.72rem;
  font-weight:700;
  border-radius:999px;
  padding:.2rem .75rem;
  letter-spacing:.04em;
}
.feature-grid.small .body-zone{padding:1.1rem 1.2rem 1.2rem;}
.feature-grid.small .body-zone h4{font-size:1.05rem;font-weight:700;color:#fff;margin-bottom:.35rem;line-height:1.4;}
.feature-grid.small .body-zone p{color:var(--text-secondary);font-size:.86rem;line-height:1.7;margin-bottom:.6rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}

/* ===== 热门排行区 ===== */
.hot-ranking{
  background:var(--bg-soft);
  position:relative;
  overflow:hidden;
}
.hot-ranking::before{
  content:"";
  position:absolute;
  top:-120%;
  right:-15%;
  width:520px;height:520px;
  border-radius:50%;
  background:radial-gradient(circle,rgb(59 224 197/.08),transparent 68%);
  pointer-events:none;
}
.rank-list-item{
  display:flex;
  align-items:center;
  gap:1.2rem;
  background:var(--surface-card);
  border:1px solid var(--border-line);
  border-radius:20px;
  padding:1.15rem 1.5rem;
  margin-bottom:.9rem;
  transition:all .3s ease;
}
.rank-list-item:hover{
  transform:translateX(6px);
  border-color:rgba(255,194,71,.3);
  box-shadow:0 10px 30px -12px rgb(0 0 0/.6);
  background:rgb(27 27 47/.95);
}
.rank-index{
  width:52px;font-size:2rem;
  font-weight:900;
  color:#26263B;
  letter-spacing:-.05em;
  font-style:italic;
  transition:color .3s ease;
  font-family:"Georgia",serif;
  line-height:1;
  flex-shrink:0;
}
.rank-list-item:nth-child(1) .rank-index,.rank-list-item:nth-child(2) .rank-index,.rank-list-item:nth-child(3) .rank-index{color:var(--accent-gold);}
.rank-list-item .rank-title{font-size:1.06rem;font-weight:700;color:#fff;margin-bottom:.15rem;}
.rank-list-item .rank-desc{font-size:.82rem;color:var(--text-secondary);line-height:1.55;}
.rank-list-item .rank-tag{flex-shrink:0;}
.rank-list-item .rank-arrow{
  width:40px;height:40px;
  border-radius:13px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text-muted);
  transition:all .28s ease;
  margin-left:auto;
  flex-shrink:0;
}
.rank-list-item:hover .rank-arrow{
  background:rgba(var(--primary-rgb),.15);
  border-color:rgba(var(--primary-rgb),.35);
  color:var(--primary-2);
  transform:translateX(3px);
}

/* ===== 战术模块/流程 ===== */
.step-card{
  background:var(--surface-card);
  border:1px solid var(--border-line);
  border-radius:20px;
  padding:1.7rem 1.4rem;
  position:relative;
  transition:all .3s ease;
  height:100%;
  overflow:hidden;
}
.step-card:hover{
  border-color:rgba(255,194,71,.3);
  box-shadow:var(--shadow-hover);
}
.step-card::before{
  content:"";
  position:absolute;
  top:-1px;left:1.5rem;right:1.5rem;
  height:2px;
  background:var(--gradient-fire);
  opacity:0;
  transition:opacity .3s;
  border-radius:2px;
}
.step-card:hover::before{opacity:1;}
.step-num{
  font-size:1.1rem;
  font-weight:800;
  color:var(--accent-gold);
  margin-bottom:.9rem;
  display:flex;
  align-items:center;
  gap:.4rem;
}
.step-card i{font-size:1.3rem;}
.step-card h4{font-size:1.09rem;font-weight:700;color:#F4F5FA;margin-bottom:.4rem;}
.step-card p{font-size:.87rem;color:var(--text-muted);line-height:1.75;margin:0;}

/* ===== 数据面板区 ===== */
.stat-dashboard{
  background:var(--bg-deep);
  position:relative;
  overflow:hidden;
}
.stat-dashboard::before{
  content:"";
  position:absolute;
  bottom:-80%;left:-8%;
  width:55vw;
  height:55vw;
  background:radial-gradient(circle,rgb(var(--primary-rgb)/.07),transparent 60%);
  border-radius:50%;
  pointer-events:none;
}
.stat-dial-card{
  background:var(--bg-soft);
  border:1px solid var(--border-line);
  border-radius:var(--card-radius-lg);
  padding:2rem 1.8rem;
  text-align:center;
  height:100%;
  position:relative;
  overflow:hidden;
  transition:border-color .3s ease,transform .3s ease;
}
.stat-dial-card:hover{border-color:rgba(255,194,71,.28);transform:translateY(-5px);}
.stat-dial-card .dial-icon{
  width:52px;height:52px;border-radius:16px;
  background:rgba(255,77,36,.1);
  border:1px solid rgba(255,77,36,.2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--primary-2);
  font-size:1.3rem;
  margin-bottom:1rem;
}
.stat-dial-card .dial-icon.jade{
  background:rgba(59,224,197,.09);
  border-color:rgba(59,224,197,.22);
  color:var(--accent-jade);
}
.stat-dial-card .dial-icon.gold{
  background:rgba(255,194,71,.09);
  border-color:rgba(255,194,71,.22);
  color:var(--accent-gold);
}
.stat-digit{font-size:2rem;font-weight:900;color:#fff;line-height:1.2;font-feature-settings:"tnum";letter-spacing:-.02em;}
.stat-digit span{color:var(--accent-gold);}
.stat-label{font-size:.8rem;color:var(--text-muted);letter-spacing:.12em;margin-top:.3rem;text-transform:uppercase;}

/* ===== FAQ ===== */
.faq-section .accordion-item{
  background:transparent;
  border:1px solid var(--border-line);
  border-radius:18px!important;
  margin-bottom:.85rem;
  overflow:hidden;
  transition:border-color .25s;
}
.faq-section .accordion-item:has(.show){border-color:rgba(255,194,71,.35);background:rgb(255 194 71/.02);}
.faq-section .accordion-button{
  background:transparent;
  color:var(--text-primary);
  font-weight:600;
  font-size:1rem;
  padding:1.15rem 1.4rem;
  border:none;
  box-shadow:none;
}
.faq-section .accordion-button::after{
  background-image:none;
  content:"+";
  font-size:1.25rem;
  font-weight:400;
  color:var(--accent-gold);
  width:auto;height:auto;
  font-family:inherit;
  transition:transform .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}
.faq-section .accordion-button:not(.collapsed){
  background:transparent;
  color:var(--accent-gold);
}
.faq-section .accordion-button:not(.collapsed)::after{
  transform:rotate(45deg);
  color:var(--accent-gold);
}
.faq-section .accordion-body{
  color:var(--text-secondary);
  padding:0 1.4rem 1.2rem;
  font-size:.93rem;
  line-height:1.9;
}
.faq-aside{
  position:sticky;
  top:6rem;
  padding-right:1.5rem;
}
.faq-aside .icon-block{
  width:56px;height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,rgb(255 194 71/.16),rgb(255 77 36/.1));
  border:1px solid rgb(255 194 71/.2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  color:var(--accent-gold);
  margin-bottom:1.2rem;
}
.faq-aside h2{font-size:2rem;font-weight:900;color:#fff;letter-spacing:-.03em;margin-bottom:.6rem;}
.faq-aside p{color:var(--text-muted);font-size:.95rem;}

/* ===== CTA区 ===== */
.cta-section{
  position:relative;
  padding:6rem 0;
}
.cta-block-wrap{
  background:var(--bg-soft);
  border-radius:36px;
  border:1px solid rgba(255,194,71,.2);
  padding:3.6rem 3.2rem;
  position:relative;
  overflow:hidden;
}
.cta-block-wrap::before{
  content:"";
  position:absolute;
  top:-40%;right:-12%;
  width:600px;height:600px;
  border-radius:50%;
  background:radial-gradient(circle,rgb(255 77 36/.16),transparent 65%);
  pointer-events:none;
}
.cta-block-wrap::after{
  content:"";
  position:absolute;
  left:1.6rem;bottom:1.2rem;
  width:75px;height:75px;
  background:radial-gradient(circle,var(--primary),transparent);
  opacity:.13;
  filter:blur(18px);
}
.cta-block-wrap h2{font-size:clamp(1.9rem,4.2vw,3.1rem);font-weight:900;letter-spacing:-.03em;}
.cta-block-wrap p{color:var(--text-secondary);max-width:650px;}
.cta-mini-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.2rem;}

/* ===== 资讯预览区 ===== */
.news-sel-card{
  background:var(--surface-card);
  border:1px solid var(--border-line);
  border-radius:20px;
  overflow:hidden;
  transition:all .3s ease;
  height:100%;
}
.news-sel-card:hover{border-color:rgba(255,194,71,.3);box-shadow:var(--shadow-hover);transform:translateY(-5px);}
.news-sel-card .thumb{
  height:150px;
  background:var(--bg-soft);
  position:relative;
  overflow:hidden;
}
.news-sel-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.news-sel-card:hover .thumb img{transform:scale(1.06);}
.news-sel-card .news-body{padding:0 1.2rem 1.1rem;}

/* ===== 页脚 ===== */
.site-footer{
  background:#08080F;
  border-top:1px solid rgba(255,194,71,.1);
  padding:5rem 0 1.5rem;
  margin-top:auto;
}
.footer-brand p{font-size:.92rem;}
.btn-circle-nav{
  width:40px;height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  color:var(--text-secondary);
  transition:all .25s ease;
}
.btn-circle-nav:hover{background:rgba(255,194,71,.1);border-color:rgba(255,194,71,.3);color:var(--accent-gold);transform:translateY(-3px);}
.footer-col h5{
  font-size:1rem;
  font-weight:700;
  margin-bottom:1rem;
  letter-spacing:.03em;
}
.footer-col ul{list-style:none;padding:0;margin:0;}
.footer-col ul li{margin-bottom:.5rem;}
.footer-col ul li a{
  color:var(--text-muted);
  font-size:.9rem;
  transition:all .2s ease;
  display:inline-flex;
  align-items:center;
  gap:.25rem;
}
.footer-col ul li a:hover{color:var(--accent-gold);padding-left:4px;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:1.4rem;
  margin-top:3rem;
  color:var(--text-muted);
  font-size:.84rem;
}
.footer-bottom a{color:var(--text-muted);}
.footer-bottom a:hover{color:var(--accent-gold);}

/* ===== 面包屑 ===== */
.breadcrumb-line{background:var(--bg-deep);padding:108px 0 0;}
.breadcrumb-line .breadcrumb{background:transparent;margin:0;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,.06);}
.breadcrumb-line .breadcrumb-item{font-size:.86rem;color:var(--text-muted);}
.breadcrumb-line .breadcrumb-item a{color:var(--text-secondary);}
.breadcrumb-line .breadcrumb-item a:hover{color:var(--accent-gold);}
.breadcrumb-line .breadcrumb-item.active{color:var(--accent-gold);}
.breadcrumb-item+.breadcrumb-item::before{color:var(--text-muted);}

/* ==== 图表样式兼容 ==== */
.split-side-card{
  background:var(--surface-card);
  border:1px solid var(--border-line);
  border-radius:var(--card-radius-lg);
  overflow:hidden;
  height:100%;
  transition:all .3s ease;
}
.split-side-card:hover{border-color:rgba(255,194,71,.3);}
.split-side-card .content-side{padding:2rem;}
.split-side-card .img-side{position:relative;min-height:240px;}
.split-side-card .img-side img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.split-side-card .img-side::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right,transparent,rgb(11 11 19/.4));
}
@media(max-width:991px){
  .split-side-card .img-side{min-height:220px;}
  .split-side-card .img-side::after{background:linear-gradient(to top,rgb(11 11 19/.3),transparent);}
}
@media(max-width:575px){
  .split-side-card .content-side{padding:1.4rem;}
}

/* ===== 响应式 ===== */
@media(max-width:1199px){
  .search-box{width:200px;}
  .nav-menu-wukong .nav-link{padding:.5rem .7rem;font-size:.88rem;}
}
@media(max-width:991px){
  .category-hero{padding-top:120px;}
  .nav-menu-wukong{display:none!important;}
  .faq-aside{position:static;padding-right:0;margin-bottom:2rem;}
  .faq-aside h2{font-size:1.7rem;}
  .section-pad{padding:4rem 0;}
}
@media(max-width:767px){
  .category-hero{min-height:auto;}
  .category-hero .hero-sub{font-size:1rem;}
  .hero-stat-row{flex-wrap:wrap;gap:1rem;}
  .hero-stat-item{flex-basis:calc(50% - 1rem);}
  .rank-list-item{flex-wrap:wrap;padding:1rem;}
  .rank-number-big{font-size:1.4rem;}
  .cta-block-wrap{padding:2.2rem 1.5rem;border-radius:24px;}
  .brand-name .zh{font-size:1.15rem;}
}
@media(max-width:575px){
  .navbar-wrap{padding:.7rem 0;}
  .brand-icon{width:36px;height:36px;border-radius:12px;font-size:1rem;}
  .brand-name .zh{font-size:1.1rem;}
  .brand-name small{font-size:.6rem;}
  .header-cta-btn span.d-none{display:none!important;}
  .header-cta-btn{padding:.55rem 1rem;}
  .category-hero h1{font-size:2.2rem;}
  .search-box{width:auto;}
  .section-pad{padding:3.2rem 0;}
  .sec-title{font-size:1.6rem;}
  .rank-title{margin-bottom:.3rem;}
  .feature-grid.small .cover-card-small{max-width:460px;margin:0 auto;}
}
@media(max-width:400px){
  .brand-name small{display:none;}
}
/* section scroll offset */
section[id]{scroll-margin-top:90px;}
/* misc */
.mini-quote{
  font-size:.86rem;
  border-left:3px solid var(--accent-jade);
  padding:.15rem 0 .15rem 1rem;
  color:var(--text-muted);
}
.listplain{list-style:none;padding:0;margin:0;}
.card-glow-top{position:relative;}
.card-glow-top::before{
  content:"";
  position:absolute;
  top:-1px;left:25%;right:25%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgb(255 194 71/.55),transparent);
}
.xs-tag{
  font-size:.7rem;
  letter-spacing:.1em;
  color:var(--text-muted);
  border:1px solid rgba(255,255,255,.1);
  padding:.12rem .55rem;
  border-radius:6px;
  display:inline-block;
}

/* roulang page: category3 */
:root {
            --bg-deep: #0B0B13;
            --bg-soft: #131320;
            --surface-card: #1B1B2F;
            --primary: #FF4D24;
            --primary-rgb: 255, 77, 36;
            --primary-2: #FF8A47;
            --accent-gold: #FFC247;
            --accent-jade: #3BE0C5;
            --text-primary: #F4F5FA;
            --text-secondary: #B9BCCB;
            --text-muted: #7A7C8D;
            --border-line: #2A2A42;
            --shadow-card: 0 10px 40px -12px rgb(0 0 0 / 0.5);
            --shadow-fire: 0 22px 60px -12px rgb(255 77 36 / 0.25);
            --gradient-fire: linear-gradient(120deg, #FF4D24 0%, #FFB347 100%);
            --header-h: 76px;
            --radius-lg: 28px;
            --radius-md: 20px;
            --radius-sm: 14px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            --bs-body-font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
        }

        body.modal-open {
            padding-right: 0 !important;
        }

        .section {
            padding: 96px 0;
            position: relative;
        }

        .section-sm {
            padding: 64px 0;
        }

        .container-xxl {
            max-width: 1280px;
            position: relative;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        p {
            margin: 0;
        }

        .text-muted {
            color: var(--text-muted) !important;
        }

        .text-fire {
            color: var(--primary) !important;
        }

        .text-gold {
            color: var(--accent-gold) !important;
        }

        .bg-soft {
            background: var(--bg-soft);
        }

        .grad-text {
            background: var(--gradient-fire);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .grad-gold {
            background: linear-gradient(115deg, #FFC247 0%, #FF8A47 55%, #FF4D24 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            padding: 0.75rem 1.75rem;
            border: 1px solid transparent;
            letter-spacing: 0.02em;
            transition: all 0.25s ease;
        }

        .btn:focus-visible,
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-fire {
            background-image: var(--gradient-fire);
            background-color: var(--primary);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 10px 30px -10px rgb(255 77 36 / 0.6);
        }

        .btn-fire:hover {
            color: #fff;
            filter: brightness(1.08);
            box-shadow: 0 16px 42px -10px rgb(255 77 36 / 0.72);
            transform: translateY(-2px);
        }

        .btn-fire:active {
            transform: translateY(0);
            filter: brightness(0.96);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 194, 71, 0.7);
            color: #fff;
            transform: translateY(-2px);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            color: var(--accent-gold);
            text-transform: uppercase;
        }

        .footer-brand .eyebrow,
        .header-actions .eyebrow {
            text-transform: none;
        }

        .section-head h1,
        .section-head h2 {
            font-size: clamp(1.85rem, 3.2vw, 2.85rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.28;
            color: var(--text-primary);
            margin: 10px 0 18px;
            text-wrap: balance;
        }

        .section-head p {
            color: var(--text-secondary);
            max-width: 720px;
            font-size: 1.04rem;
            margin-bottom: 0;
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1010;
            background: rgba(11, 11, 20, 0.72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .site-header.is-scrolled {
            background: rgba(9, 9, 15, 0.92);
            border-bottom-color: rgba(255, 194, 71, 0.18);
            box-shadow: 0 14px 40px -22px rgb(0 0 0 / 0.7);
        }

        .header-inner {
            min-height: var(--header-h);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            gap: 12px;
            padding-top: 0.45rem;
            padding-bottom: 0.45rem;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            min-width: 0;
            left: 0;
            position: relative;
        }

        .brand-icon {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 20%, rgba(255, 77, 36, 0.35), rgba(255, 77, 36, 0.05));
            border: 1px solid rgba(255, 194, 71, 0.35);
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--accent-gold);
            font-family: "Noto Sans SC", "PingFang SC", sans-serif;
            box-shadow: 0 0 0 6px rgba(255, 77, 36, 0.05);
        }

        .brand-name {
            display: inline-block;
            font-size: 1.24rem;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1;
            color: #fff;
            white-space: nowrap;
        }

        .brand-name .zh {
            font-weight: 900;
        }

        .brand-name .hot {
            color: var(--primary);
        }

        .brand-name small {
            display: block;
            font-size: 0.56rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            color: var(--accent-gold);
            margin-top: 3px;
            white-space: nowrap;
        }

        .nav-menu-wukong {
            align-items: center;
            gap: 3px;
        }

        .nav-link {
            font-size: 0.94rem;
            font-weight: 600;
            color: var(--text-secondary);
            padding: 0.6rem 0.95rem !important;
            border-radius: 12px;
            letter-spacing: 0.02em;
            position: relative;
        }

        .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-link.active {
            color: #fff;
            background: rgba(255, 77, 36, 0.11);
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 3px;
            height: 2px;
            border-radius: 99px;
            background: var(--gradient-fire);
        }

        .header-actions {
            flex-shrink: 0;
        }

        .command-search {
            width: min(300px, 30vw);
            height: 44px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid transparent;
            border-radius: 999px;
            padding: 0 12px 0 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            transition: all 0.25s ease;
        }

        .command-search:focus-within {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 194, 71, 0.4);
            box-shadow: 0 0 0 4px rgba(255, 194, 71, 0.06);
        }

        .command-search i {
            font-size: 0.9rem;
        }

        .command-search input {
            width: 100%;
            background: transparent;
            border: 0;
            outline: none;
            color: var(--text-primary);
            font-size: 0.88rem;
        }

        .command-search input::placeholder {
            color: var(--text-muted);
        }

        .command-search kbd {
            white-space: nowrap;
            font-size: 0.7rem;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-secondary);
            border-radius: 8px;
            border: 0;
            padding: 3px 8px;
            font-weight: 600;
        }

        .avatar-pile {
            display: inline-flex;
            align-items: center;
        }

        .avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #11101b;
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--accent-gold);
            background: linear-gradient(135deg, #2d2540, #181826);
            margin-left: -8px;
            flex-shrink: 0;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .avatar.avatar-live {
            background: linear-gradient(135deg, rgba(255, 77, 36, 0.5), rgba(255, 138, 71, 0.85));
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        .nav-cta {
            padding: 0.6rem 1.25rem;
            white-space: nowrap;
        }

        .nav-cta::before {
            content: "";
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
            flex-shrink: 0;
        }

        .icon-btn {
            width: 44px;
            height: 44px;
            border-radius: 13px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid transparent;
            font-size: 1.25rem;
        }

        .icon-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .mobile-drawer {
            background: #11101b;
            color: var(--text-primary);
        }

        .mobile-drawer .offcanvas-body {
            padding: 1.5rem 1.25rem 2rem;
        }

        .drawer-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .drawer-link:hover,
        .drawer-link:focus {
            background: rgba(255, 77, 36, 0.12);
            color: #fff;
        }

        .drawer-link.active {
            color: #fff;
            border: 1px solid rgba(255, 194, 71, 0.22);
            background: rgba(255, 77, 36, 0.1);
        }

        /* ===== Category Hero ===== */
        .cat-hero {
            min-height: 760px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 120px 0 76px;
            border-bottom: 1px solid rgba(255, 194, 71, 0.12);
        }

        .cat-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(11, 11, 20, 0.94) 0%, rgba(11, 11, 20, 0.72) 40%, rgba(11, 11, 20, 0.25) 75%, transparent 100%),
                radial-gradient(900px 420px at 85% 20%, rgba(255, 77, 36, 0.22), transparent 65%),
                radial-gradient(800px 400px at 10% 90%, rgba(59, 224, 197, 0.08), transparent 60%);
            z-index: 0;
        }

        .cat-hero .container-xxl {
            z-index: 2;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-gold);
            border: 1px solid rgba(255, 194, 71, 0.35);
            background: rgba(255, 194, 71, 0.08);
            border-radius: 999px;
            padding: 7px 14px;
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            font-weight: 700;
        }

        .cat-hero h1 {
            font-size: clamp(2.6rem, 5.6vw, 4.4rem);
            font-weight: 900;
            letter-spacing: -0.04em;
            color: #fff;
            line-height: 1.18;
            margin: 24px 0 20px;
            text-wrap: balance;
        }

        .hero-lead {
            max-width: 640px;
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 44px;
        }

        .hero-stats {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 26px;
            max-width: 760px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 10px 14px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.04);
            min-width: 0;
        }

        .stat-num {
            font-size: clamp(1.3rem, 2.2vw, 2rem);
            font-weight: 900;
            color: var(--accent-gold);
            font-feature-settings: "tnum";
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            letter-spacing: 0.06em;
        }

        .hero-glow {
            pointer-events: none;
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
        }

        /* ===== Vision Feature ===== */
        .feature-vision {
            background:
                radial-gradient(700px 400px at 82% 14%, rgba(255, 77, 36, 0.1), transparent 62%),
                var(--bg-deep);
        }

        .vision-visual {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-card);
        }

        .vision-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 4 / 3;
            min-height: 300px;
        }

        .vision-badge {
            position: absolute;
            right: 16px;
            bottom: 16px;
            background: rgba(11, 11, 20, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 194, 71, 0.35);
            padding: 14px 18px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .vision-badge i {
            color: var(--accent-gold);
            font-size: 1.3rem;
        }

        .vision-badge small {
            display: block;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.76rem;
        }

        .feature-list {
            display: grid;
            gap: 18px;
            margin-top: 10px;
        }

        .feature-item {
            background: var(--surface-card);
            border: 1px solid var(--border-line);
            border-radius: 22px;
            padding: 22px;
            display: flex;
            gap: 16px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 194, 71, 0.3);
            box-shadow: 0 20px 50px -16px rgba(255, 77, 36, 0.22);
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 18px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            background: rgba(255, 77, 36, 0.12);
            color: var(--primary-2);
            border: 1px solid rgba(255, 77, 36, 0.2);
        }

        .feature-item h3 {
            font-size: 1.12rem;
            font-weight: 800;
            margin: 0 0 6px;
            color: #fff;
        }

        .feature-item p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.8;
            margin: 0;
        }

        /* ===== Project Grid ===== */
        .project-section {
            background: var(--bg-soft);
            overflow: hidden;
        }

        .project-section::before {
            content: "";
            position: absolute;
            right: -180px;
            top: 100px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 77, 36, 0.1), transparent 65%);
            filter: blur(24px);
            pointer-events: none;
        }

        .project-card {
            background: var(--surface-card);
            border: 1px solid var(--border-line);
            border-radius: 26px;
            overflow: hidden;
            height: 100%;
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            display: block;
        }

        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-fire);
            border-color: rgba(255, 194, 71, 0.28);
        }

        .project-thumb {
            overflow: hidden;
            min-height: 220px;
            background: var(--bg-soft);
        }

        .project-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 16 / 10;
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-thumb img {
            transform: scale(1.04);
        }

        .project-body {
            padding: 26px 24px 28px;
        }

        .project-body h3 {
            font-size: 1.42rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 8px;
            letter-spacing: -0.02em;
        }

        .project-body p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.75;
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 600;
        }

        .tag-item i {
            font-size: 0.7rem;
            color: var(--accent-gold);
        }

        .text-link-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            color: var(--primary-2);
            margin-top: 4px;
        }

        .text-link-more i {
            transition: transform 0.3s ease;
        }

        .text-link-more:hover {
            color: var(--accent-gold);
        }

        .text-link-more:hover i {
            transform: translateX(5px);
        }

        .project-card-feature .project-body {
            padding-top: 22px;
        }

        /* ===== Hot Rank ===== */
        .rank-section {
            background:
                radial-gradient(600px 340px at 10% 10%, rgba(255, 77, 36, 0.07), transparent 60%),
                var(--bg-deep);
        }

        .rank-panel {
            background: var(--surface-card);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            padding: clamp(18px, 3vw, 38px);
        }

        .rank-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.055);
            border-radius: 18px;
            transition: background 0.25s ease, transform 0.25s ease;
            margin: 0 -6px;
            padding-left: 12px;
            padding-right: 12px;
        }

        .rank-row:last-child {
            border-bottom: 0;
        }

        .rank-row:hover {
            background: rgba(255, 194, 71, 0.05);
            transform: translateX(4px);
        }

        .hot-index {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            background: rgba(255, 194, 71, 0.1);
            border: 1px solid rgba(255, 194, 71, 0.22);
            border-radius: 14px;
            font-feature-settings: "tnum";
        }

        .hot-info {
            min-width: 0;
            flex: 1;
        }

        .hot-title {
            color: #fff;
            font-weight: 800;
            font-size: 1.03rem;
            line-height: 1.45;
        }

        .hot-desc {
            color: var(--text-secondary);
            font-size: 0.86rem;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .hot-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .hot-meta {
            color: var(--text-muted);
            font-size: 0.8rem;
            white-space: nowrap;
        }

        .rank-arrow {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            transition: all 0.25s ease;
        }

        .rank-row:hover .rank-arrow {
            background: rgba(255, 77, 36, 0.15);
            color: #fff;
            transform: translateX(4px);
        }

        /* ===== Membership CTA ===== */
        .member-band {
            background:
                linear-gradient(115deg, rgba(255, 77, 36, 0.14), rgba(255, 138, 71, 0.03) 45%, transparent 70%),
                #0e0e1b;
            border: 1px solid rgba(255, 194, 71, 0.28);
            border-radius: var(--radius-lg);
            padding: clamp(30px, 6vw, 70px);
            overflow: hidden;
            box-shadow: 0 30px 80px -30px rgba(255, 77, 36, 0.3);
            color: #fff;
        }

        .member-band h2 {
            font-size: clamp(1.6rem, 3vw, 2.6rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.3;
            margin: 14px 0 16px;
        }

        .member-list {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
            display: grid;
            gap: 12px;
        }

        .member-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text-secondary);
            font-size: 0.96rem;
        }

        .member-list i {
            color: var(--accent-gold);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .member-benefit-badge {
            display: inline-block;
            border: 1px solid rgba(59, 224, 197, 0.32);
            color: var(--accent-jade);
            background: rgba(59, 224, 197, 0.07);
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--bg-soft);
        }

        .faq-acc .accordion-item {
            background: var(--surface-card);
            border: 1px solid var(--border-line);
            border-radius: 20px;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
        }

        .faq-acc .accordion-button {
            background-color: transparent;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1rem;
            padding: 20px 60px 20px 22px;
            border: 0;
            box-shadow: none;
            position: relative;
        }

        .faq-acc .accordion-button:not(.collapsed) {
            box-shadow: none;
            background: rgba(255, 194, 71, 0.06);
            color: #fff;
        }

        .faq-acc .accordion-button:focus {
            box-shadow: inset 0 0 0 2px rgba(255, 194, 71, 0.55);
        }

        .faq-acc .accordion-button::after {
            width: 22px;
            height: 22px;
            background-image: none;
            display: inline-block;
            position: absolute;
            top: 20px;
            right: 20px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.08);
            color: var(--accent-gold);
            content: "+";
            line-height: 1.5;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            transition: transform 0.3s ease;
            pointer-events: none;
        }

        .faq-acc .accordion-button:not(.collapsed)::after {
            transform: rotate(45deg);
        }

        .faq-acc .accordion-body {
            background: rgba(255, 255, 255, 0.012);
            color: var(--text-secondary);
            padding: 2px 22px 22px 24px;
            font-size: 0.95rem;
            line-height: 1.9;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        /* ===== Final CTA ===== */
        .final-cta {
            overflow: hidden;
            background:
                radial-gradient(740px 300px at 80% 0%, rgba(255, 77, 36, 0.18), transparent 60%),
                radial-gradient(600px 260px at 10% 100%, rgba(59, 224, 197, 0.08), transparent 60%),
                #0B0B13;
            padding: 0;
        }

        .final-cta-inner {
            background: transparent;
            border: 0;
            text-align: center;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 4.2vw, 3.6rem);
            color: #fff;
            font-weight: 900;
            letter-spacing: -0.035em;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #08080f;
            padding: 70px 0 28px;
            border-top: 1px solid rgba(255, 194, 71, 0.14);
            color: var(--text-secondary);
        }

        .site-footer .row {
            --bs-gutter-y: 30px;
        }

        .footer-brand {
            max-width: 360px;
        }

        .footer-col h5 {
            font-size: 1.02rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 22px;
            letter-spacing: 0.04em;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col li+li {
            margin-top: 10px;
        }

        .footer-col a {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-col a:hover {
            color: var(--primary-2);
            padding-left: 3px;
        }

        .btn-circle-nav {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.07);
            color: var(--text-secondary);
            font-size: 1rem;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            transition: all 0.25s ease;
        }

        .btn-circle-nav:hover {
            color: #111;
            background: var(--accent-gold);
            border-color: var(--accent-gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 22px;
            font-size: 0.82rem;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1199.98px) {
            .command-search {
                width: 240px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 72px 0;
            }
            .cat-hero {
                min-height: auto;
                padding: 90px 0 60px;
            }
            .header-inner {
                gap: 8px;
            }
            .brand-name {
                font-size: 1.06rem;
            }
            .brand-name small {
                letter-spacing: 0.1em;
            }
            .header-actions .btn-fire {
                padding-left: 0.9rem;
                padding-right: 0.9rem;
                font-size: 0.86rem;
            }
            .header-actions .avatar-pile {
                display: none !important;
            }
            .project-body h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 56px 0;
            }
            .cat-hero {
                padding: 70px 0 46px;
            }
            .hero-actions {
                margin-bottom: 28px;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .hero-stats {
                row-gap: 10px;
            }
            .feature-item {
                flex-direction: column;
            }
            .brand-logo {
                gap: 8px;
            }
            .brand-icon {
                width: 38px;
                height: 38px;
                font-size: 1.08rem;
            }
            .rank-row {
                gap: 14px;
                padding: 14px 8px;
                margin: 0;
            }
            .hot-desc {
                -webkit-line-clamp: 2;
            }
            .rank-arrow {
                display: none;
            }
            .hot-meta {
                font-size: 0.76rem;
                text-align: right;
            }
            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .section {
                padding: 40px 0;
            }
            .section-head h2 {
                font-size: 1.65rem;
                margin-bottom: 12px;
            }
            .cat-hero h1 {
                font-size: 2.1rem;
            }
            .brand-name {
                font-size: 1rem;
            }
            .brand-name small {
                display: none;
            }
            .header-actions .command-search {
                display: none;
            }
            .avatar-pile {
                display: none !important;
            }
            .project-thumb img {
                aspect-ratio: 4 / 3;
            }
            .member-band {
                padding: 26px 18px;
            }
            .member-list li {
                font-size: 0.88rem;
            }
        }

/* roulang page: category4 */
:root{
  --bg-deep:#0B0B13;
  --bg-soft:#131320;
  --bg-panel:#1B1B2F;
  --surface-card:#1E1E33;
  --primary:#FF4D24;
  --primary-rgb:255,77,36;
  --primary-2:#FF8A47;
  --accent-gold:#FFC247;
  --accent-jade:#3BE0C5;
  --gradient-fire:linear-gradient(120deg,#FF4D24 0%,#FFB347 100%);
  --text-primary:#F4F5FA;
  --text-secondary:#B9BCCB;
  --text-muted:#7A7C8D;
  --border-line:#2A2A42;
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;
  --shadow-card:0 10px 40px -12px rgb(0 0 0 / .55);
  --shadow-hover:0 22px 60px -12px rgb(255 77 36 / .25);
  --font-sans:"Inter","Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg-deep);
  color:var(--text-primary);
  font-family:var(--font-sans);
  font-size:1rem;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
a:hover{color:var(--accent-gold)}
button,input{font-family:inherit}
.extra-outline:focus-visible{outline:2px solid var(--accent-gold);outline-offset:2px;border-radius:6px}
:focus-visible{outline:2px solid var(--accent-gold);outline-offset:3px;border-radius:8px}
.container-custom{max-width:1280px;margin:0 auto;padding:0 24px}
.section-block{padding:80px 0}
.section-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.84rem;font-weight:700;letter-spacing:.16em;
  color:var(--accent-gold);background:rgba(255,194,71,.08);
  border:1px solid rgba(255,194,71,.2);
  padding:5px 14px;border-radius:999px;margin-bottom:14px;
}
.section-label i{font-size:1rem}
.sec-title{font-size:clamp(1.7rem,3vw,2.75rem);font-weight:900;letter-spacing:-.02em;line-height:1.25;margin:0}
.sec-sub{color:var(--text-secondary);font-size:1.05rem;max-width:640px;margin-top:10px}
.text-fire{
  background:var(--gradient-fire);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}
.text-gold{color:var(--accent-gold)}
.text-jade{color:var(--accent-jade)}
.bg-soft-bit{background:var(--bg-soft)}

/* Buttons */
.btn-fire{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  background:var(--gradient-fire);color:#fff;font-weight:700;font-size:1rem;
  padding:.72rem 1.8rem;border-radius:16px;border:0;letter-spacing:.01em;
  box-shadow:0 12px 34px -12px rgb(var(--primary-rgb) / .7);
  transition:all .25s ease;
}
.btn-fire:hover{color:#fff;filter:brightness(1.1);box-shadow:0 16px 42px -12px rgb(var(--primary-rgb) / .85);transform:translateY(-2px)}
.btn-fire:active{transform:scale(.98)}
.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  background:rgba(255,255,255,.04);color:var(--text-primary);font-weight:600;
  padding:.7rem 1.6rem;border-radius:16px;border:1px solid rgba(255,255,255,.18);
  transition:all .25s ease;
}
.btn-ghost:hover{background:rgba(255,255,255,.09);border-color:rgba(255,194,71,.55);color:#fff;transform:translateY(-2px)}
.btn-ghost:active{transform:scale(.98)}
.text-link-arrow{
  display:inline-flex;align-items:center;gap:5px;font-weight:600;color:var(--text-secondary);
  transition:color .2s ease;
}
.text-link-arrow i{transition:transform .2s ease}
.text-link-arrow:hover{color:var(--accent-gold)}
.text-link-arrow:hover i{transform:translateX(3px)}

/* ===== Header ===== */
.site-header{
  position:sticky;top:0;z-index:1030;
  background:rgba(11,11,20,.82);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,194,71,.08);
}
.header-row{
  display:flex;align-items:center;gap:28px;
  min-height:76px;padding:10px 0;
}
.brand-logo{display:inline-flex;align-items:center;gap:10px;min-width:224px}
.brand-icon{
  width:42px;height:42px;border-radius:14px;flex:0 0 auto;
  background:linear-gradient(135deg,#FF4D24,#FFB347);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;font-size:1.3rem;box-shadow:0 10px 24px -8px rgb(255 77 36 / .7);
}
.brand-name{display:flex;flex-direction:column;line-height:1.12}
.brand-name .zh{font-size:1.24rem;font-weight:900;letter-spacing:-.01em;color:#fff}
.brand-name .zh .hot{
  background:var(--gradient-fire);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.brand-name small{font-size:.68rem;font-weight:600;letter-spacing:.18em;color:var(--accent-gold)}
.nav-menu-wukong{display:flex;align-items:center;gap:6px;margin:0}
.nav-menu-wukong .nav-link{
  display:inline-flex;align-items:center;gap:6px;
  font-weight:600;color:var(--text-secondary);font-size:.96rem;
  padding:8px 14px;border-radius:999px;transition:all .2s ease;position:relative;margin:0;
}
.nav-menu-wukong .nav-link:hover{color:#fff;background:rgba(255,255,255,.06)}
.nav-menu-wukong .nav-link.active{color:#fff;background:rgba(255,194,71,.08)}
.nav-menu-wukong .nav-link.active::after{
  content:"";position:absolute;left:16px;right:16px;bottom:2px;height:2px;
  border-radius:2px;background:var(--gradient-fire);
}
.header-tools{display:flex;align-items:center;gap:14px;margin-left:auto}
.command-search{
  display:flex;align-items:center;gap:10px;width:260px;max-width:100%;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  border-radius:999px;padding:7px 14px;font-size:.9rem;color:var(--text-secondary);
  transition:all .25s ease;cursor:pointer;
}
.command-search:hover{border-color:rgba(255,194,71,.35);background:rgba(255,255,255,.09)}
.command-search:focus-within{outline:2px solid rgba(255,194,71,.6);outline-offset:2px}
.command-search i{font-size:.9rem;color:var(--accent-gold)}
.command-search .ph{color:#828497;font-weight:500}
.command-search kbd{margin-left:auto;font-size:.72rem;background:rgba(255,255,255,.1);color:#cfd0de;border-radius:6px;padding:1px 7px}
.avatar-stack{display:flex;align-items:center}
.avatar-stack .avatar{
  width:32px;height:32px;border-radius:50%;border:2px solid #111118;
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(145deg,#2b2b44,#191928);color:var(--text-secondary);
  font-size:.8rem;font-weight:700;margin-left:-8px;
}
.avatar-stack .avatar:first-child{margin-left:0}
.avatar-stack .avatar.add{background:rgba(255,77,36,.2);color:var(--accent-gold)}
.btn-main-cta{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--gradient-fire);color:#fff;font-weight:700;font-size:.92rem;
  padding:8px 18px;border-radius:999px;border:0;box-shadow:0 10px 26px -10px rgb(255 77 36/.75);
  transition:all .25s ease;white-space:nowrap;
}
.btn-main-cta:hover{color:#fff;filter:brightness(1.08);transform:translateY(-1px)}
.btn-main-cta .pulse{width:7px;height:7px;border-radius:50%;background:#fff;box-shadow:0 0 0 0 rgba(255,255,255,.7);animation:pulse-dot 1.8s infinite}
@keyframes pulse-dot{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,.7)}
  70%{box-shadow:0 0 0 8px rgba(255,255,255,0)}
  100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}
}
.menu-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);color:var(--text-primary);font-size:1.2rem;
}
@media(min-width:992px){.menu-toggle{display:none}}
.mobile-drawer{
  position:fixed;top:76px;left:0;right:0;z-index:1029;
  background:rgba(13,13,24,.97);
  border-bottom:1px solid rgba(255,194,71,.12);
  padding:20px 0 26px;transform:translateY(-16px);opacity:0;visibility:hidden;
  transition:all .3s ease;
  backdrop-filter:blur(20px);max-height:calc(100vh - 76px);overflow:auto;
}
.mobile-drawer.open{transform:translateY(0);opacity:1;visibility:visible}
.mobile-drawer .drawer-link{
  display:flex;align-items:center;gap:12px;color:var(--text-primary);
  font-weight:600;padding:12px 4px;border-radius:14px;font-size:1.04rem;
}
.mobile-drawer .drawer-link i{font-size:1.2rem;color:var(--accent-gold)}
.mobile-drawer .drawer-link:hover{background:rgba(255,255,255,.05)}
.mobile-drawer .drawer-cta{margin-top:16px;width:100%}
@media(max-width:991px){
  .nav-menu-wukong{display:none}
  .command-search{width:46px;padding:0;justify-content:center}
  .command-search .ph,.command-search kbd{display:none}
  .header-tools .desktop-cta{display:none}
}
@media(max-width:575px){
  .brand-logo{min-width:0}
  .brand-name .zh{font-size:1.08rem}
  .header-row{gap:12px}
  .avatar-stack{display:none}
}

/* ===== category hero ===== */
.category-hero{
  position:relative;overflow:hidden;
  padding:78px 0 90px;
  background:
    radial-gradient(900px 420px at 78% 18%,rgba(59,224,197,.14),transparent 62%),
    radial-gradient(800px 480px at 12% 90%,rgba(255,77,36,.2),transparent 60%),
    linear-gradient(180deg,#0e0e18 0%,var(--bg-deep) 100%);
  border-bottom:1px solid rgba(255,194,71,.1);
}
.category-hero::before{
  content:"";position:absolute;inset:0;z-index:0;opacity:.26;
  background:url('/assets/images/backpic/back-3.png') no-repeat center/cover;
}
.category-hero .container{position:relative;z-index:1}
.crumb-list{
  display:flex;flex-wrap:wrap;gap:6px;font-size:.88rem;color:var(--text-muted);
  margin-bottom:26px;
}
.crumb-list a{color:var(--text-muted)}
.crumb-list a:hover{color:var(--accent-gold)}
.crumb-list .sep{margin:0 4px}
.crumb-list .cur{color:var(--text-secondary)}
.eyebrow-badge{
  display:inline-flex;align-items:center;gap:10px;
  border:1px solid rgba(255,194,71,.28);background:rgba(255,194,71,.09);
  padding:7px 16px;border-radius:999px;color:var(--accent-gold);
  font-size:.82rem;font-weight:700;letter-spacing:.12em;margin-bottom:20px;
}
.eyebrow-badge i{font-size:1rem}
.category-hero h1{
  font-size:clamp(2.6rem,5.6vw,5rem);
  font-weight:900;line-height:1.05;
  letter-spacing:-.02em;color:#fff;margin:0 0 18px;
}
.category-hero h1 .fireword{
  background:var(--gradient-fire);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
}
.category-hero .hero-lead{
  font-size:clamp(1.1rem,1.6vw,1.4rem);
  color:rgba(244,245,250,.86);max-width:700px;
  font-weight:500;margin-bottom:12px;
}
.category-hero .hero-desc{
  color:var(--text-secondary);max-width:660px;font-size:1rem;margin-bottom:28px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.hero-metrics{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.09);border-radius:20px;
  overflow:hidden;max-width:620px;margin-top:44px;
}
.metric-cell{background:rgba(15,15,26,.94);padding:18px 22px}
.metric-cell .num{
  display:block;font-size:1.6rem;font-weight:900;color:var(--accent-gold);
  line-height:1.1;font-feature-settings:"tnum";
}
.metric-cell .num small{font-size:1rem;color:var(--accent-jade);font-weight:800}
.metric-cell .lab{font-size:.8rem;color:var(--text-muted);letter-spacing:.05em;margin-top:4px}
@media(max-width:575px){
  .category-hero{padding:60px 0 70px}
  .hero-metrics{grid-template-columns:1fr 1fr}
  .metric-cell:nth-child(3){grid-column:1/-1}
}

/* ===== section header with action ===== */
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:32px;flex-wrap:wrap}
.section-head .block-tag{
  display:inline-flex;align-items:center;gap:8px;font-size:.82rem;font-weight:700;
  letter-spacing:.06em;color:var(--accent-jade);background:rgba(59,224,197,.08);
  border:1px solid rgba(59,224,197,.22);padding:5px 12px;border-radius:999px;
  margin-bottom:12px;
}
.section-head .block-tag i{font-size:.85rem}
.section-head .more-line{color:var(--text-muted);font-size:.9rem}
@media(max-width:575px){.section-head{flex-direction:column;align-items:flex-start}}

/* ===== Topic grid ===== */
.topic-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.topic-grid .topic-card{
  position:relative;border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.07);
  background:var(--surface-card);overflow:hidden;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
  box-shadow:var(--shadow-card);
  min-height:390px;
}
.topic-grid .topic-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(255,194,71,.38);
}
.topic-card .topic-cover{position:relative;height:210px;overflow:hidden}
.topic-card .topic-cover img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;background:#232336;
}
.topic-card:hover .topic-cover img{transform:scale(1.04)}
.topic-card .topic-cover::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 35%,rgba(27,27,47,.72))}
.topic-card .topic-type{
  position:absolute;top:14px;left:14px;z-index:2;
  background:rgba(11,11,20,.62);color:var(--accent-gold);
  border:1px solid rgba(255,194,71,.2);padding:3px 11px;border-radius:999px;
  font-size:.76rem;font-weight:700;letter-spacing:.1em;backdrop-filter:blur(6px);
}
.topic-card .topic-body{padding:20px 22px 24px}
.topic-card h3{font-size:1.26rem;font-weight:800;color:#fff;margin:0 0 8px}
.topic-card p{color:var(--text-secondary);font-size:.95rem;margin:0 0 16px;line-height:1.65}
.topic-card .topic-foot{display:flex;gap:8px;flex-wrap:wrap}
.tag-chip{
  font-size:.76rem;font-weight:600;display:inline-flex;align-items:center;gap:5px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.09);
  color:var(--text-secondary);padding:3px 10px;border-radius:999px;
}
.tag-chip.hot{width:auto;background:rgba(255,77,36,.12);color:var(--primary-2);border-color:rgba(255,77,36,.28)}
.tag-chip.jade{background:rgba(59,224,197,.08);color:var(--accent-jade);border-color:rgba(59,224,197,.24)}
@media(max-width:767px){.topic-grid{grid-template-columns:1fr}}

/* ===== rank list ===== */
.rank-wrap{
  background:
    radial-gradient(400px 260px at 90% 0%,rgba(255,77,36,.13),transparent 70%),
    var(--bg-soft);
  border-radius:36px;
  border:1px solid rgba(255,255,255,.07);
  padding:38px;
  margin-top:48px;
}
.rank-list{display:flex;flex-direction:column}
.rank-item{
  display:grid;grid-template-columns:52px 92px 1fr auto;align-items:center;
  gap:28px;padding:18px 6px;border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .2s ease;border-radius:20px;
}
.rank-item:hover{background:rgba(255,255,255,.04)}
.rank-item:last-child{border-bottom:0}
.rank-pin{font-size:1.95rem;font-weight:900;font-style:italic;color:#33334c;line-height:1}
.rank-item:nth-child(1) .rank-pin{color:var(--accent-gold)}
.rank-item:nth-child(2) .rank-pin{color:#c9cad9}
.rank-item:nth-child(3) .rank-pin{color:#7a5b33}
.rank-thumb{
  width:92px;height:72px;border-radius:14px;overflow:hidden;background:#26263c;
}
.rank-thumb img{width:100%;height:100%;object-fit:cover}
.rank-info{min-width:0}
.rank-info h3{font-size:1.13rem;font-weight:800;color:#fff;margin:0 0 3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rank-info p{margin:0;font-size:.9rem;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rank-meta{color:var(--accent-gold);font-weight:700;white-space:nowrap}
@media(max-width:767px){
  .rank-wrap{padding:24px;border-radius:26px;overflow:hidden}
  .rank-item{grid-template-columns:32px 66px 1fr;gap:12px}
  .rank-info p{white-space:normal;line-height:1.4}
  .rank-thumb{width:66px;height:60px}
  .rank-meta{display:none}
}

/* ===== CTA split panel ===== */
.cta-split-panel{
  display:grid;grid-template-columns:1.08fr .92fr;gap:0;
  border-radius:40px;overflow:hidden;
  background:var(--surface-card);
  border:1px solid rgba(255,194,71,.14);
  box-shadow:0 20px 80px -28px rgb(0 0 0/.8);
}
.cta-split-text{
  padding:52px 32px 52px 52px;
  display:flex;flex-direction:column;justify-content:center;
}
.cta-split-text h2{font-size:clamp(1.5rem,2.4vw,2.2rem);font-weight:900;line-height:1.3;letter-spacing:-.01em;color:#fff}
.cta-split-text p{color:var(--text-secondary);font-size:1rem;max-width:480px;margin:16px 0 8px}
.cta-point-list{list-style:none;margin:18px 0 24px;padding:0;display:grid;gap:10px}
.cta-point-list li{display:flex;align-items:center;gap:10px;color:var(--text-secondary);font-weight:500}
.cta-point-list i{color:var(--accent-jade);font-size:1.05rem}
.cta-split-media{min-height:360px;position:relative}
.cta-split-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.cta-split-media::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(27,27,47,.92),rgba(11,11,20,.15) 42%,transparent)}
@media(max-width:991px){.cta-split-panel{grid-template-columns:1fr}.cta-split-text{padding:36px}.cta-split-media{min-height:260px;order:-1}.cta-split-media::after{background:linear-gradient(180deg,rgba(27,27,47,.55),rgba(11,11,20,.12))}}

/* ===== FAQ ===== */
.faq-section{position:relative}
.faq-head{position:relative;top:-8px;margin-bottom:98px}
.faq-side-title{
  font-size:clamp(1.9rem,3.2vw,3rem);font-weight:900;letter-spacing:-.03em;
  color:#fff;line-height:1.2;margin:0 0 16px;
}
.faq-side-title .fireword{
  background:var(--gradient-fire);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.faq-side-desc{color:var(--text-muted);max-width:300px;font-size:.95rem;margin-bottom:0}
.accordion-wukong{display:flex;flex-direction:column;gap:14px}
.accordion-wukong .accordion-item{
  background:var(--surface-card);border:1px solid rgba(255,255,255,.08);
  border-radius:20px;overflow:hidden;transition:border-color .3s ease;
}
.accordion-wukong .accordion-item:has(.accordion-button:not(.collapsed)){
  border-color:rgba(255,194,71,.32);
  background:rgba(255,194,71,.05);
}
.accordion-wukong .accordion-button{
  background:transparent;color:#fff;font-weight:700;font-size:1.03rem;
  padding:20px 22px;box-shadow:none;border-radius:18px;
}
.accordion-wukong .accordion-button.collapsed{background:rgba(255,255,255,.02)}
.accordion-wukong .accordion-button::after{
  background:none;content:"\F64D";font-family:"bootstrap-icons";color:var(--accent-gold);
  font-size:1.2rem;transition:transform .3s ease;display:flex;align-items:center;justify-content:center;
}
.accordion-wukong .accordion-button:not(.collapsed)::after{transform:rotate(180deg)}
.accordion-wukong .accordion-body{padding:0 22px 20px;color:var(--text-secondary);line-height:1.8}
@media(max-width:991px){
  .faq-side-meta{margin-bottom:20px}
  .faq-side-desc{max-width:100%}
  .accordion-wukong{padding-left:0}
}

/* ===== final cta ===== */
.final-cta{
  position:relative;overflow:hidden;border-radius:44px;
  background:
    radial-gradient(700px 320px at 84% -10%,rgba(255,77,36,.4),transparent 62%),
    radial-gradient(500px 280px at 2% 110%,rgba(255,194,71,.13),transparent 60%),
    linear-gradient(135deg,#181827,#15151f 56%,#1f1e2b);
  border:1px solid rgba(255,194,71,.2);
  padding:72px 30px;
  text-align:center;
}
.final-cta::before{
  content:"";position:absolute;inset:0;opacity:.15;
  background:url('/assets/images/backpic/back-2.png') center/cover no-repeat;
}
.final-cta .inner{position:relative;z-index:1;max-width:720px;margin:0 auto}
.final-cta h2{
  font-size:clamp(1.8rem,3vw,2.9rem);font-weight:900;line-height:1.2;
  letter-spacing:-.02em;color:#fff;margin-bottom:18px;
}
.final-cta h2 span{color:var(--accent-gold)}
.final-cta p{color:var(--text-secondary);font-size:1.05rem;margin-bottom:30px}
.final-cta .ctrl-group{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}

/* ===== Footer ===== */
.site-footer{
  background:#08080F;
  border-top:1px solid rgba(255,194,71,.08);
  padding:62px 0 0;
  margin-top:0;
}
.footer-brand .brand-logo{
  display:inline-flex;align-items:center;gap:10px;min-width:0;
  transform:translateX(-4px);
}
.footer-brand .brand-logo .brand-icon{width:44px;height:44px}
.footer-brand .brand-logo .brand-name .zh{font-size:1.4rem}
.footer-brand p{font-size:.95rem;line-height:1.8;color:var(--text-muted)}
.btn-circle-nav{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:12px;background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);color:var(--text-secondary);
  transition:all .25s ease;cursor:pointer;
}
.btn-circle-nav:hover{
  background:rgba(255,194,71,.12);color:var(--accent-gold);border-color:rgba(255,194,71,.3);
  transform:translateY(-3px);
}
.footer-col .footer-title{
  color:#fff;font-size:1.02rem;font-weight:800;margin-bottom:16px;
}
.footer-col ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.footer-col li a{color:var(--text-muted);font-size:.92rem;transition:all .2s}
.footer-col li a:hover{color:var(--accent-gold);padding-left:4px}
.footer-bottom{
  margin-top:34px;border-top:1px solid rgba(255,255,255,.07);
  padding:22px 0;color:#5f6172;font-size:.86rem;
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:8px;
}
.footer-bottom .muted-text{color:#5f6172}
.footer-ban{display:inline-flex;gap:16px}

/* responsive */
@media(max-width:1199px){
  .header-row{gap:16px}
  .brand-logo{min-width:196px}
  .nav-menu-wukong .nav-link{padding:7px 9px;font-size:.85rem}
}
@media(max-width:991px){.navbar-gap{height:0}}
@media(max-width:767px){
  .section-block{padding:60px 0}
  .topic-grid{grid-template-columns:1fr}
  .rank-item{grid-template-columns:32px 60px 1fr;gap:12px}
  .rank-thumb{width:60px;height:62px}
  .rank-pin{font-size:1.5rem}
  .final-cta{padding:54px 20px}
}
