/* roulang page: index */
:root {
            --pink: #F23B6F;
            --violet: #6B4EFF;
            --orange: #FF9D2E;
            --mint: #12B8A6;
            --ink: #17132A;
            --light-bg: #F6F4FA;
            --card-bg: #FFFFFF;
            --line: #E9E3F1;
            --text: #221C33;
            --muted: #6F6785;
            --dark: #241A1F;
            --gradient: linear-gradient(135deg, #F23B6F 0%, #6B4EFF 100%);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 8px 28px rgba(30, 18, 60, 0.06);
            --shadow-lg: 0 18px 44px rgba(30, 18, 60, 0.14);
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Segoe UI", sans-serif;
            --header-height: 72px;
            --section-space: 80px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.75;
            background: var(--light-bg);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            padding-bottom: 66px;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        a:hover {
            color: var(--violet);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        :focus-visible {
            outline: 3px solid rgba(242, 59, 111, 0.45);
            outline-offset: 3px;
            border-radius: 6px;
        }

        .container {
            max-width: 1260px;
        }

        .section {
            padding: var(--section-space) 0;
        }

        .section-heading {
            margin-bottom: 36px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .04em;
            color: var(--pink);
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .eyebrow::before {
            content: "";
            width: 18px;
            height: 2px;
            border-radius: 99px;
            background: var(--gradient);
        }

        .section-heading h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
            margin: 6px 0 10px;
            color: var(--text);
            letter-spacing: -0.02em;
        }

        .section-note {
            font-size: 16px;
            color: var(--muted);
            margin: 0;
            max-width: 780px;
            line-height: 1.8;
        }

        .btn {
            border-radius: 999px;
            font-weight: 600;
            padding: 12px 22px;
            transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
            border: 1px solid transparent;
        }

        .btn-main {
            background: var(--gradient);
            border: 0;
            color: #fff;
            box-shadow: 0 14px 32px rgba(242, 59, 111, 0.28);
        }

        .btn-main:hover,
        .btn-main:focus {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 18px 38px rgba(107, 78, 255, 0.34);
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: #fff;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-dark-ghost {
            background: transparent;
            border: 1px solid #D8CFE7;
            color: var(--text);
        }

        .btn-dark-ghost:hover {
            border-color: var(--violet);
            color: var(--violet);
            background: rgba(107, 78, 255, 0.06);
            transform: translateY(-2px);
        }

        .btn-sm {
            font-size: 14px;
            padding: 8px 16px;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--line);
            color: var(--text);
            transition: all .2s ease;
            flex: none;
        }

        .icon-btn:hover {
            border-color: var(--pink);
            color: var(--pink);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .icon-btn.liked {
            background: var(--pink);
            border-color: var(--pink);
            color: #fff;
        }

        .text-link {
            color: var(--violet);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .text-link:hover {
            color: var(--pink);
        }

        /*
        Header
        */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: var(--ink);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .header-inner {
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.28rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        .brand-logo {
            width: 34px;
            height: 34px;
            flex: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 8px 20px rgba(242, 59, 111, 0.28);
        }

        .brand:hover {
            color: #fff;
        }

        .brand em {
            font-style: normal;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .desktop-menu {
            display: none;
            align-items: center;
            gap: 4px;
        }

        .desktop-menu .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 9px 16px;
            border-radius: 999px;
            transition: all .2s ease;
        }

        .desktop-menu .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .desktop-menu .nav-link.active {
            color: #fff;
            background: rgba(242, 59, 111, 0.18);
        }

        .desktop-menu .nav-link.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 3px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--pink);
            transform: translateX(-50%);
        }

        .header-cta {
            display: none;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 18px;
            border-radius: 999px;
            font-size: 0.92rem;
            color: #fff;
            transition: all .2s ease;
        }

        .header-cta:hover {
            border-color: var(--pink);
            color: var(--pink);
        }

        @media (min-width: 992px) {
            .desktop-menu {
                display: flex;
            }

            .header-cta {
                display: inline-flex;
            }

            body {
                padding-bottom: 0;
            }
        }

        /*
        Mobile bottom tab
        */
        .mobile-tabbar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1050;
            display: flex;
            align-items: stretch;
            background: rgba(23, 19, 42, 0.93);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding-bottom: env(safe-area-inset-bottom);
        }

        .mobile-tabbar .tab {
            position: relative;
            flex: 1;
            min-height: 62px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            transition: color .2s ease;
        }

        .mobile-tabbar .tab-icon {
            width: 21px;
            height: 21px;
            color: currentColor;
            display: inline-flex;
        }

        .mobile-tabbar .tab.active {
            color: #fff;
        }

        .mobile-tabbar .tab.active::after {
            content: "";
            position: absolute;
            top: 8px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--pink);
        }

        .mobile-tabbar .tab.active .tab-icon {
            color: var(--pink);
        }

        @media (min-width: 992px) {
            .mobile-tabbar {
                display: none;
            }
        }

        /*
        Hero
        */
        .hero {
            position: relative;
            overflow: hidden;
            color: #fff;
            padding: 96px 0 86px;
            background: var(--ink);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.17;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: -22%;
            right: -8%;
            width: 560px;
            height: 560px;
            background: radial-gradient(circle, rgba(242, 59, 111, 0.42) 0%, transparent 68%);
            pointer-events: none;
        }

        .hero::before {
            content: "";
            position: absolute;
            left: -10%;
            bottom: -35%;
            width: 520px;
            height: 460px;
            background: radial-gradient(circle, rgba(107, 78, 255, 0.38) 0%, transparent 68%);
            pointer-events: none;
        }

        .hero-row {
            position: relative;
            z-index: 2;
        }

        .hero-copy {
            padding-right: 30px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 22px;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.12;
            margin: 0 0 14px;
        }

        .hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero em {
            display: block;
            font-style: normal;
            font-size: 22px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.92);
            margin-top: 12px;
            letter-spacing: -0.01em;
        }

        .hero-lead {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.9;
            max-width: 540px;
            margin: 0 0 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            margin-bottom: 46px;
        }

        .hero-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .metric-card {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px 12px 14px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 999px;
            color: #fff;
            backdrop-filter: blur(6px);
        }

        .metric-card .metric-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--orange);
            flex: none;
        }

        .metric-card b {
            font-size: 22px;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            margin-right: -4px;
        }

        .metric-card span {
            color: rgba(255, 255, 255, 0.76);
            font-size: 13px;
        }

        .hero-cover {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 32px 90px rgba(6, 3, 18, 0.44);
            background: rgba(255, 255, 255, 0.06);
            margin-right: 8px;
            transform: rotate(0deg);
        }

        .hero-cover img {
            width: 100%;
            height: 455px;
            object-fit: cover;
        }

        .hero-cover::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(23, 19, 42, 0) 40%, rgba(23, 19, 42, 0.86) 100%);
            pointer-events: none;
        }

        .hero-cover-badge {
            position: absolute;
            z-index: 2;
            top: 20px;
            right: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--orange);
            color: var(--dark);
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
            padding: 10px 14px;
            border-radius: 999px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
        }

        .hero-cover-caption {
            position: absolute;
            z-index: 2;
            left: 26px;
            right: 26px;
            bottom: 24px;
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
        }

        /*
        Catalogue directory
        */
        .catalogue-section {
            background: var(--light-bg);
        }

        .catalogue-intro {
            position: relative;
            height: 100%;
            min-height: 402px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            background: var(--ink);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .catalogue-intro img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
        }

        .catalogue-intro::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(23, 19, 42, 0.16) 0%, rgba(23, 19, 42, 0.9) 100%);
        }

        .catalogue-intro .cat-intro-body {
            position: relative;
            z-index: 2;
            padding: 27px;
            color: #fff;
        }

        .catalogue-intro h3 {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin: 8px 0 8px;
        }

        .catalogue-intro p {
            color: rgba(255, 255, 255, 0.74);
            margin: 0;
            font-size: 14px;
            max-width: 360px;
            line-height: 1.8;
        }

        .entry-card {
            position: relative;
            display: flex;
            flex-direction: row;
            gap: 16px;
            align-items: flex-start;
            height: 100%;
            background: var(--card-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 26px 24px;
            transition: all .25s ease;
            overflow: hidden;
        }

        .entry-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(242, 59, 111, 0.3);
        }

        .entry-index {
            font-size: 42px;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 1px #C7B9E4;
            background: none;
            white-space: nowrap;
        }

        .entry-card:hover .entry-index {
            -webkit-text-stroke: 0;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .entry-main {
            min-width: 0;
            flex: 1;
        }

        .entry-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(107, 78, 255, 0.08);
            color: var(--violet);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .entry-card h3 {
            font-size: 19px;
            font-weight: 700;
            margin: 0 0 6px;
            letter-spacing: -0.01em;
        }

        .entry-card p {
            margin: 0 0 18px;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.8;
        }

        .entry-more {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            transition: color .2s ease;
        }

        .entry-more svg {
            transition: transform .2s ease;
        }

        .entry-card:hover .entry-more {
            color: var(--pink);
        }

        .entry-card:hover .entry-more svg {
            transform: translateX(4px);
        }

        /*
        Featured
        */
        .featured-section {
            background: #fff;
        }

        .featured-main {
            position: relative;
            display: flex;
            align-items: flex-end;
            height: 100%;
            min-height: 470px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
        }

        .featured-main img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-main::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(23, 19, 42, 0.02) 36%, rgba(23, 19, 42, 0.92) 100%);
        }

        .featured-main-body {
            position: relative;
            z-index: 2;
            width: 100%;
            color: #fff;
            padding: 30px 32px;
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 12px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            line-height: 1;
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.28);
            backdrop-filter: blur(6px);
            margin-bottom: 14px;
        }

        .featured-main h3 {
            font-size: 27px;
            font-weight: 800;
            line-height: 1.35;
            letter-spacing: -0.02em;
            margin: 0 0 8px;
        }

        .featured-main p {
            color: rgba(255, 255, 255, 0.78);
            font-size: 15px;
            max-width: 540px;
            margin: 0 0 18px;
        }

        .featured-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
        }

        .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 13px;
        }

        .mini-fcard {
            position: relative;
            display: flex;
            gap: 14px;
            padding: 12px;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            background: #fff;
            transition: all .22s ease;
            margin-bottom: 20px;
        }

        .mini-fcard:last-child {
            margin-bottom: 0;
        }

        .mini-fcard:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(107, 78, 255, 0.28);
        }

        .mini-thumb {
            width: 92px;
            height: 92px;
            overflow: hidden;
            border-radius: 14px;
            flex: none;
        }

        .mini-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mini-body {
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 6px 2px;
        }

        .mini-body .special-chip {
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            padding: 4px 9px;
            border-radius: 999px;
            background: rgba(242, 59, 111, 0.08);
            color: var(--pink);
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.2;
        }

        .mini-body .special-chip.violet {
            background: rgba(107, 78, 255, 0.08);
            color: var(--violet);
        }

        .mini-body h3 {
            font-size: 17px;
            font-weight: 700;
            line-height: 1.5;
            margin: 0 0 5px;
            letter-spacing: -0.01em;
        }

        .mini-body p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .featured-side {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding-left: 8px;
        }

        /*
        News list
        */
        .news-section {
            background: var(--light-bg);
        }

        .news-list {
            display: grid;
            gap: 14px;
        }

        .news-row {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 20px 22px;
            transition: all .25s ease;
        }

        .news-row:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: rgba(242, 59, 111, 0.22);
        }

        .news-date {
            flex: none;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 76px;
            min-height: 64px;
            background: #F5F1FB;
            border-radius: 16px;
            color: var(--text);
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            line-height: 1.2;
        }

        .news-date .d {
            font-size: 24px;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: var(--pink);
        }

        .news-main {
            flex: 1;
            min-width: 0;
        }

        .news-main h3 {
            margin: 3px 0 5px;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .news-desc {
            color: var(--muted);
            margin: 0;
            font-size: 14px;
            line-height: 1.7;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }

        .news-cat {
            flex: none;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(107, 78, 255, 0.08);
            color: var(--violet);
            font-size: 13px;
            font-weight: 600;
        }

        .news-arrow {
            width: 42px;
            height: 42px;
            flex: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid var(--line);
            color: var(--muted);
            background: #fff;
            transition: all .2s ease;
        }

        .news-row:hover .news-arrow {
            border-color: var(--pink);
            color: var(--pink);
            background: rgba(242, 59, 111, 0.05);
        }

        .news-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 70px 20px;
            background: #fff;
            border: 1px dashed #D5CBE4;
            border-radius: var(--radius-lg);
            text-align: center;
            color: var(--muted);
        }

        .news-empty svg {
            width: 52px;
            height: 52px;
            color: #8C86A2;
        }

        .news-empty a {
            color: var(--violet);
            font-weight: 600;
        }

        /*
        Related cards
        */
        .related-section {
            background: #fff;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .related-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--light-bg);
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 18px;
            transition: all .22s ease;
        }

        .related-card:hover {
            background: #fff;
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: rgba(242, 59, 111, 0.2);
        }

        .related-thumb {
            width: 78px;
            height: 78px;
            flex: none;
            overflow: hidden;
            border-radius: 14px;
        }

        .related-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-info {
            min-width: 0;
            flex: 1;
        }

        .related-info h3 {
            margin: 0 0 6px;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.5;
        }

        .related-info p {
            margin: 0;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-no {
            color: var(--pink);
            font-weight: 800;
            font-size: 18px;
            font-variant-numeric: tabular-nums;
        }

        /*
        FAQ
        */
        .faq-section {
            background: var(--light-bg);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .faq-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-md);
            padding: 26px;
            transition: box-shadow .22s ease, transform .22s ease;
        }

        .faq-card:hover {
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .faq-q {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .faq-no {
            flex: none;
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            color: #fff;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
        }

        .faq-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin: 4px 0 0;
            line-height: 1.55;
        }

        .faq-card p {
            color: var(--muted);
            margin: 0 0 0 42px;
            font-size: 14px;
            line-height: 1.85;
        }

        /*
        CTA
        */
        .cta-section {
            padding: 34px 0 90px;
            background: #fff;
        }

        .save-card {
            background: var(--ink);
            border-radius: 32px;
            padding: 52px 48px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .save-card::before {
            content: "";
            position: absolute;
            top: -120px;
            right: -80px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(242, 59, 111, 0.32) 0%, transparent 68%);
        }

        .save-card::after {
            content: "";
            position: absolute;
            left: -110px;
            bottom: -130px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(107, 78, 255, 0.34) 0%, transparent 66%);
        }

        .save-copy,
        .save-actions {
            position: relative;
            z-index: 2;
        }

        .save-copy h2 {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            margin: 6px 0 10px;
        }

        .save-copy p {
            color: rgba(255, 255, 255, 0.68);
            max-width: 560px;
            font-size: 15px;
            margin: 0;
        }

        .save-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 18px;
        }

        .save-trust span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 999px;
            padding: 7px 13px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
        }

        .save-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .save-btn {
            min-width: 160px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            font-weight: 600;
            padding: 15px 22px;
            font-size: 15px;
            line-height: 1;
        }

        .save-btn.primary {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 16px 34px rgba(242, 59, 111, 0.3);
            border: 0;
        }

        .save-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 42px rgba(107, 78, 255, 0.38);
        }

        .save-btn.secondary {
            border: 1px solid rgba(255, 255, 255, 0.34);
            color: #fff;
            background: transparent;
        }

        .save-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--pink);
            color: var(--pink);
            transform: translateY(-3px);
        }

        /*
        Footer
        */
        .site-footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.7);
            padding-top: 64px;
        }

        .site-footer h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 17px;
            letter-spacing: 0.02em;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
            gap: 36px;
            padding-bottom: 44px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-brand:hover {
            color: #fff;
        }

        .footer-brand em {
            font-style: normal;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-about {
            font-size: 14px;
            line-height: 1.85;
            margin: 0;
            max-width: 390px;
            color: rgba(255, 255, 255, 0.62);
        }

        .footer-links {
            display: grid;
            gap: 9px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            transition: all .2s ease;
        }

        .footer-links a:hover {
            color: var(--pink);
            padding-left: 4px;
        }

        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            color: rgba(255, 255, 255, 0.46);
            font-size: 13px;
            gap: 8px;
        }

        .footer-copyright a {
            color: rgba(255, 255, 255, 0.55);
        }

        .page-toast {
            position: fixed;
            left: 50%;
            bottom: 90px;
            z-index: 1090;
            transform: translate(-50%, 20px);
            background: var(--ink);
            color: #fff;
            font-size: 14px;
            padding: 12px 20px;
            border-radius: 999px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease;
            pointer-events: none;
            white-space: nowrap;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .page-toast.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        @media (min-width: 992px) {
            .page-toast {
                bottom: 40px;
            }
        }

        /*
        Responsive
        */
        @media (max-width: 1199px) {
            .hero h1 {
                font-size: 48px;
            }

            .hero-cover img {
                height: 400px;
            }
        }

        @media (max-width: 991px) {
            :root {
                --section-space: 58px;
            }

            .section-heading h2 {
                font-size: 28px;
            }

            .hero {
                padding: 68px 0 56px;
            }

            .hero h1 {
                font-size: 38px;
            }

            .hero em {
                font-size: 19px;
            }

            .hero-cover {
                margin-right: 0;
                margin-top: 8px;
            }

            .hero-cover img {
                height: 340px;
            }

            .featured-side {
                padding-left: 0;
                margin-top: 18px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .save-card {
                padding: 38px 26px;
            }

            .related-grid,
            .faq-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 767px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .section {
                padding: 48px 0;
            }

            .hero {
                padding: 50px 0 42px;
            }

            .hero-copy {
                padding-right: 0;
            }

            .hero h1 {
                font-size: 34px;
            }

            .hero em {
                font-size: 19px;
            }

            .hero-lead {
                font-size: 14px;
            }

            .metric-card b {
                font-size: 19px;
            }

            .metric-card {
                font-size: 13px;
            }

            .hero-metrics {
                gap: 8px;
            }

            .hero-cover img {
                height: 280px;
            }

            .featured-main {
                min-height: 380px;
            }

            .featured-main h3 {
                font-size: 22px;
            }

            .entry-card {
                padding: 20px 16px;
            }

            .entry-index {
                font-size: 34px;
            }

            .related-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .news-row {
                gap: 12px;
                padding: 15px;
            }

            .news-date {
                width: 60px;
                min-height: 58px;
                border-radius: 12px;
            }

            .news-date .d {
                font-size: 20px;
            }

            .news-desc {
                -webkit-line-clamp: 2;
            }

            .news-cat {
                display: none;
            }

            .news-arrow {
                width: 36px;
                height: 36px;
            }

            .featured-main-body {
                padding: 22px;
            }

            .save-copy h2 {
                font-size: 27px;
            }

            .save-btn {
                width: 100%;
            }

            .site-footer {
                padding-top: 44px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding-bottom: 28px;
            }
        }

        @media (max-width: 420px) {
            .hero h1 {
                font-size: 31px;
            }

            .mini-thumb {
                width: 84px;
                height: 84px;
                border-radius: 12px;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn {
                justify-content: center;
                display: inline-flex;
            }
        }

/* roulang page: category1 */
:root {
            --pink: #F23B6F;
            --violet: #6B4EFF;
            --gradient: linear-gradient(135deg, #F23B6F 0%, #6B4EFF 100%);
            --orange: #FF9D2E;
            --mint: #12B8A6;
            --ink: #17132A;
            --page-bg: #F6F4FA;
            --card: #FFFFFF;
            --line: #E9E3F1;
            --text: #221C33;
            --muted: #6F6785;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-sm: 0 8px 28px rgba(30, 18, 60, 0.06);
            --shadow-lg: 0 18px 44px rgba(30, 18, 60, 0.14);
            --font: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Segoe UI", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background: var(--page-bg);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul,
        ol {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font-family: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
        }

        .container {
            max-width: 1280px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1080;
            background: rgba(23, 19, 42, 0.96);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 20px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 1.12rem;
            font-weight: 800;
            white-space: nowrap;
            padding: 8px 0;
        }

        .brand .brand-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background: rgba(242, 59, 111, 0.14);
            color: var(--pink);
        }

        .brand em {
            font-style: normal;
            color: #CBBDFF;
            font-weight: 600;
        }

        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }

        .desktop-menu .nav-link {
            display: inline-flex;
            align-items: center;
            padding: 9px 15px;
            border-radius: 999px;
            color: #D4CCEA;
            font-size: 0.95rem;
            font-weight: 600;
            transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }

        .desktop-menu .nav-link:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            transform: translateY(-1px);
        }

        .desktop-menu .nav-link:focus-visible {
            outline: 2px solid var(--violet);
            outline-offset: 2px;
        }

        .desktop-menu .nav-link.active {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 8px 22px rgba(242, 59, 111, 0.35);
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 18px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 999px;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            transition: background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
        }

        .header-cta:hover {
            background: rgba(107, 78, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.55);
            box-shadow: 0 8px 20px rgba(107, 78, 255, 0.24);
        }

        .header-cta:focus-visible {
            outline: 2px solid var(--pink);
            outline-offset: 2px;
        }

        .mobile-bottom-tab {
            display: none;
        }

        .site-main {
            overflow: hidden;
        }

        .category-hero {
            position: relative;
            background: var(--ink);
            padding: 84px 0 96px;
            color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .category-hero::before {
            content: "";
            position: absolute;
            width: 560px;
            height: 420px;
            right: -120px;
            top: 40px;
            background: radial-gradient(circle, rgba(242, 59, 111, 0.4) 0%, transparent 72%);
            pointer-events: none;
        }

        .category-hero::after {
            content: "";
            position: absolute;
            width: 520px;
            height: 420px;
            left: -180px;
            bottom: -200px;
            background: radial-gradient(circle, rgba(107, 78, 255, 0.42) 0%, transparent 70%);
            pointer-events: none;
        }

        .category-hero .hero-inner {
            position: relative;
            z-index: 2;
        }

        .category-hero .breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.86rem;
            color: rgba(255, 255, 255, 0.62);
            margin-bottom: 22px;
        }

        .category-hero .breadcrumbs a {
            color: rgba(255, 255, 255, 0.76);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        .category-hero .breadcrumbs a:hover {
            color: #fff;
            border-color: #fff;
        }

        .category-hero .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            font-size: 0.84rem;
            color: #E9DFFF;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .category-hero .hero-kicker i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--pink);
            display: inline-block;
            box-shadow: 0 0 0 4px rgba(242, 59, 111, 0.18);
        }

        .category-hero h1 {
            font-size: 56px;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #fff;
            margin-bottom: 18px;
        }

        .category-hero h1 .grad {
            background: linear-gradient(120deg, #FF7FA8, #C9B8FF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .category-hero p.lead-copy {
            font-size: 1.07rem;
            line-height: 1.8;
            color: #CEC6E6;
            max-width: 620px;
            margin-bottom: 28px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 34px;
        }

        .btn-brand,
        .btn-ghost,
        .btn-ghost-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 23px;
            border-radius: var(--radius-md);
            font-size: 0.98rem;
            font-weight: 600;
            border: 1px solid transparent;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
            line-height: 1;
        }

        .btn-brand {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 12px 28px rgba(242, 59, 111, 0.32);
        }

        .btn-brand:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 34px rgba(107, 78, 255, 0.34);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.28);
            color: #fff;
            padding: 13px 22px;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
        }

        .btn-ghost-white {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.36);
            color: #fff;
        }

        .btn-ghost-white:hover {
            background: rgba(255, 255, 255, 0.14);
            border-color: #fff;
            transform: translateY(-2px);
        }

        .btn-brand:focus-visible,
        .btn-ghost:focus-visible,
        .btn-ghost-white:focus-visible {
            outline: 3px solid rgba(242, 59, 111, 0.3);
            outline-offset: 3px;
            box-shadow: 0 0 0 8px rgba(242, 59, 111, 0.1);
        }

        .hero-info-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-info-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            color: #D9D3EF;
            font-size: 0.85rem;
            padding: 7px 13px;
        }

        .hero-info-pill b {
            color: #fff;
            font-weight: 700;
        }

        .hero-cover-wrap {
            position: relative;
            z-index: 3;
            padding-left: 18px;
        }

        .hero-cover-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(20, 12, 38, 0.46);
            transform: rotate(1deg);
        }

        .hero-cover-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(23, 19, 42, 0.05) 0%, rgba(23, 19, 42, 0.55) 100%);
        }

        .hero-cover-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 5 / 4;
        }

        .hero-cover-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--gradient);
            padding: 8px 16px;
            border-radius: 999px;
            color: #fff;
            font-size: 0.84rem;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(107, 78, 255, 0.5);
        }

        .hero-cover-caption {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 20px;
            z-index: 2;
            color: #fff;
        }

        .hero-cover-caption small {
            font-size: 0.82rem;
            opacity: 0.85;
            display: block;
            margin-bottom: 4px;
        }

        .hero-cover-caption strong {
            font-size: 1.1rem;
            display: block;
            line-height: 1.4;
        }

        .category-filter {
            padding: 38px 0 0;
        }

        .filter-chip-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }

        .filter-chip-row .chip-title {
            font-weight: 800;
            color: var(--text);
            font-size: 0.98rem;
            margin-right: 4px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 15px;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--text);
            font-size: 0.88rem;
            font-weight: 500;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .chip i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            display: inline-block;
        }

        .chip:hover {
            border-color: #C9B8FF;
            background: #F6F0FF;
            transform: translateY(-1px);
        }

        .chip.active {
            background: var(--gradient);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 8px 18px rgba(242, 59, 111, 0.22);
        }

        .section-block {
            padding: 74px 0 20px;
        }

        .section-header-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 30px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.84rem;
            font-weight: 700;
            color: var(--violet);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .eyebrow::before {
            content: "";
            width: 16px;
            height: 3px;
            border-radius: 3px;
            background: var(--gradient);
        }

        .section-header-row h2 {
            font-size: 32px;
            margin: 0;
        }

        .section-header-row .sub {
            font-size: 1rem;
            color: var(--muted);
            max-width: 680px;
            margin: 8px 0 0;
        }

        .game-rank-list {
            margin-bottom: 34px;
        }

        .rank-item {
            position: relative;
            display: grid;
            grid-template-columns: 64px 140px 1fr;
            column-gap: 20px;
            align-items: center;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 16px;
            margin-bottom: 14px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }

        .rank-item:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .rank-num {
            font-size: 1.85rem;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            color: #DED6EF;
            text-align: center;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }

        .rank-item:nth-child(-n+3) .rank-num {
            background: linear-gradient(135deg, #F23B6F, #6B4EFF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .rank-thumb {
            width: 140px;
            height: 92px;
            border-radius: 18px;
            object-fit: cover;
            background: #EDE7F7;
            box-shadow: 0 6px 16px rgba(30, 18, 60, 0.1);
        }

        .rank-content {
            min-width: 0;
        }

        .rank-content .rank-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 6px;
        }

        .rank-content .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            border-radius: 8px;
            background: #F4EFFC;
            color: #5A4D79;
            font-size: 0.76rem;
            font-weight: 600;
        }

        .rank-content .tag.hot-tag {
            background: #FFF2E0;
            color: #B66A00;
        }

        .rank-content h3 {
            font-size: 1.13rem;
            margin: 0 0 4px;
            font-weight: 700;
        }

        .rank-content p {
            font-size: 0.91rem;
            color: var(--muted);
            line-height: 1.65;
            margin: 0 0 7px;
            max-width: 680px;
        }

        .rank-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.84rem;
            font-weight: 700;
            color: var(--violet);
        }

        .rank-link:hover {
            color: var(--pink);
            text-decoration: underline;
        }

        .rank-link:focus-visible {
            outline: 2px solid var(--pink);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .rank-view-link {
            text-align: right;
            font-size: 0.78rem;
            color: var(--muted);
        }

        .game-sidebar {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .side-panel {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-sm);
            padding: 22px;
        }

        .side-panel-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.02rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 14px;
        }

        .side-panel-title .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--mint);
            box-shadow: 0 0 0 4px rgba(18, 184, 166, 0.14);
        }

        .update-list li {
            display: flex;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px dashed #EFEAF4;
            align-items: flex-start;
        }

        .update-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

        .update-list time {
            font-size: 0.78rem;
            color: var(--muted);
            font-weight: 700;
            white-space: nowrap;
            padding-top: 4px;
        }

        .update-list span {
            font-size: 0.89rem;
            color: var(--text);
            line-height: 1.6;
        }

        .update-list span b {
            color: var(--pink);
            font-weight: 700;
        }

        .side-nav-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .side-nav-list a {
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: #FCFAFE;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text);
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .side-nav-list a:hover {
            background: #F4EDFF;
            border-color: #CBBDFF;
            transform: translateY(-1px);
        }

        .side-nav-list a:focus-visible {
            outline: 3px solid rgba(107, 78, 255, 0.3);
            outline-offset: 2px;
        }

        .side-panel-cta {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .side-panel-cta .btn-block {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .update-band {
            padding: 72px 0 86px;
        }

        .update-band-inner {
            background: linear-gradient(135deg, #FFF7FA 0%, #F4F1FF 100%);
            border-radius: var(--radius-lg);
            border: 1px solid #EADFFC;
            padding: 34px;
            position: relative;
            overflow: hidden;
        }

        .update-band-inner::after {
            content: "";
            position: absolute;
            right: -70px;
            top: -70px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(242, 59, 111, 0.08);
        }

        .update-band h2 {
            font-size: 1.6rem;
            font-weight: 800;
            margin: 0 0 10px;
        }

        .update-band p {
            color: var(--muted);
            font-size: 1.01rem;
            max-width: 760px;
            margin: 0;
        }

        .update-mini-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .update-mini {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 9px 13px;
            border: 1px solid #F0E6FA;
            border-radius: 14px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text);
        }

        .update-mini b {
            color: var(--violet);
        }

        .feature-strip {
            padding: 60px 0 70px;
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            position: relative;
            transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        .feature-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #FCD7E3, #E4DDFF);
            color: var(--violet);
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            margin: 0 0 8px;
        }

        .feature-card p {
            color: var(--muted);
            margin: 0;
            font-size: 0.95rem;
        }

        .cta-section {
            padding: 12px 0 82px;
            position: relative;
        }

        .cta-panel {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            padding: 52px 58px;
            background: var(--ink);
            color: #fff;
        }

        .cta-panel::before {
            content: "";
            background: radial-gradient(circle at 80% 20%, rgba(242, 59, 111, 0.46), transparent 44%);
            position: absolute;
            inset: 0;
        }

        .cta-panel::after {
            content: "";
            background: radial-gradient(circle at 15% 120%, rgba(107, 78, 255, 0.44), transparent 42%);
            position: absolute;
            inset: 0;
        }

        .cta-panel .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 20px 34px;
            align-items: center;
            justify-content: space-between;
        }

        .cta-panel h2 {
            color: #fff;
            font-size: 1.9rem;
            margin: 0 0 10px;
            font-weight: 800;
        }

        .cta-panel p {
            color: #CFC8E4;
            font-size: 1.03rem;
            margin: 0;
            max-width: 730px;
        }

        .cta-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .faq-section {
            padding: 0 0 90px;
        }

        .faq-section h2 {
            margin-bottom: 30px;
        }

        .faq-accordion {
            max-width: 860px;
        }

        .accordion-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-md) !important;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            margin-bottom: 12px;
        }

        .accordion-button {
            padding: 20px 22px;
            background: #fff;
            color: var(--text);
            font-size: 1.03rem;
            font-weight: 700;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23221C33'%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");
            transition: transform 0.2s ease, filter 0.2s ease;
        }

        .accordion-button:not(.collapsed) {
            background: #FFF6F9;
            color: var(--text);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::after {
            filter: drop-shadow(0 0 4px rgba(242, 59, 111, 0.4));
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 4px rgba(242, 59, 111, 0.14);
            border-color: transparent;
        }

        .accordion-body {
            background: #fff;
            color: var(--muted);
            padding: 10px 22px 22px;
            font-size: 0.96rem;
            line-height: 1.8;
            border-top: 1px solid #F5EFF9;
        }

        .site-footer {
            background: var(--ink);
            color: #C5BCD9;
            padding: 62px 0 36px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 800;
            font-size: 1.06rem;
            margin-bottom: 12px;
        }

        .footer-brand .brand-logo {
            color: var(--pink);
        }

        .footer-brand em {
            color: #CBBDFF;
            font-style: normal;
        }

        .footer-about {
            font-size: 0.88rem;
            line-height: 1.85;
            color: #AFA7C8;
            margin: 0;
            max-width: 360px;
        }

        .site-footer h4 {
            color: #fff;
            font-size: 0.96rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }

        .footer-links a {
            color: #B0A8C7;
            font-size: 0.92rem;
            transition: color 0.2s ease, padding 0.2s ease;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-links a:focus-visible {
            outline: 2px solid var(--pink);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 28px;
            font-size: 0.82rem;
            color: #8A82A5;
        }

        .footer-copyright a {
            color: #A8A0C5;
        }

        @media (max-width: 1199.98px) {
            .category-hero h1 {
                font-size: 44px;
            }

            .footer-grid {
                grid-template-columns: 1.2fr 1fr 1fr;
            }
        }

        @media (max-width: 991.98px) {
            .desktop-menu,
            .header-cta {
                display: none;
            }

            .header-inner {
                justify-content: center;
                min-height: 60px;
            }

            .mobile-bottom-tab {
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1100;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                background: rgba(255, 255, 255, 0.96);
                box-shadow: 0 -8px 28px rgba(20, 12, 40, 0.1);
                border-top: 1px solid #EEE5F6;
                padding-bottom: env(safe-area-inset-bottom);
            }

            .mobile-bottom-tab a {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                height: 64px;
                color: #8B82A1;
                font-size: 0.76rem;
                font-weight: 600;
                position: relative;
                transition: color 0.2s ease;
            }

            .mobile-bottom-tab a svg {
                width: 22px;
                height: 22px;
                opacity: 0.8;
            }

            .mobile-bottom-tab a.active {
                color: var(--text);
            }

            .mobile-bottom-tab a.active::before {
                content: "";
                position: absolute;
                top: 7px;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: var(--pink);
                box-shadow: 0 0 0 3px rgba(242, 59, 111, 0.14);
            }

            .mobile-bottom-tab a.active svg {
                fill: url(#tabGradient);
            }

            .mobile-bottom-tab a:hover,
            .mobile-bottom-tab a:focus {
                color: var(--ink);
                outline: none;
            }

            .mobile-bottom-tab a.active i {
                background: var(--gradient);
            }

            body {
                padding-bottom: 78px;
            }

            .category-hero {
                padding: 56px 0 64px;
            }

            .category-hero .hero-cover-wrap {
                padding-left: 0;
                margin-top: 36px;
            }

            .hero-cover-card {
                transform: rotate(0deg);
            }

            .game-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .game-sidebar .side-panel {
                flex: 1 1 calc(50% - 22px);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 767.98px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .category-hero {
                padding: 40px 0 52px;
            }

            .category-hero h1 {
                font-size: 32px;
            }

            .category-hero p.lead-copy {
                font-size: 1rem;
                line-height: 1.75;
            }

            .hero-buttons {
                gap: 8px;
                margin-bottom: 27px;
            }

            .btn-brand,
            .btn-ghost {
                padding: 12px 18px;
                font-size: 0.93rem;
                flex: 1 1 auto;
                justify-content: center;
            }

            .section-block {
                padding-top: 50px;
            }

            .section-header-row {
                display: block;
                margin-bottom: 20px;
            }

            .section-header-row h2 {
                font-size: 26px;
            }

            .rank-item {
                grid-template-columns: 42px 92px 1fr;
                column-gap: 12px;
                padding: 12px;
                border-radius: 18px;
            }

            .rank-num {
                font-size: 1.4rem;
            }

            .rank-thumb {
                width: 92px;
                height: 76px;
                border-radius: 12px;
            }

            .rank-content h3 {
                font-size: 1.02rem;
            }

            .rank-content p {
                font-size: 0.87rem;
                line-height: 1.55;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .rank-content .rank-tags {
                margin-bottom: 4px;
            }

            .game-sidebar {
                display: block;
            }

            .game-sidebar .side-panel {
                margin-bottom: 16px;
            }

            .update-band-inner {
                padding: 26px 22px;
            }

            .update-band h2 {
                font-size: 1.3rem;
            }

            .feature-strip {
                padding: 20px 0 44px;
            }

            .feature-card {
                padding: 22px;
            }

            .cta-section {
                padding: 6px 0 56px;
            }

            .cta-panel {
                padding: 30px 26px;
            }

            .cta-panel h2 {
                font-size: 1.55rem;
            }

            .cta-btns .btn-ghost-white,
            .cta-btns .btn-brand {
                width: 100%;
            }

            .faq-section {
                padding-bottom: 70px;
            }

            .faq-section h2 {
                font-size: 26px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 26px;
            }

            .site-footer {
                padding: 42px 0 26px;
            }
        }

        @media (min-width: 1200px) {
            .category-hero {
                background-image: linear-gradient(90deg, rgba(242, 59, 111, 0.14), transparent 48%), url('/assets/images/backpic/back-1.png');
                background-size: cover;
                background-position: center;
            }
        }

/* roulang page: article */
:root {
    --brand-pink: #F23B6F;
    --brand-purple: #6B4EFF;
    --brand-gradient: linear-gradient(135deg, #F23B6F 0%, #6B4EFF 100%);
    --brand-heat: #FF9D2E;
    --brand-mint: #12B8A6;
    --ink: #17132A;
    --page-bg: #F6F4FA;
    --card-bg: #FFFFFF;
    --line: #E9E3F1;
    --line-alt: #EAE4F1;
    --text-primary: #221C33;
    --text-secondary: #6F6785;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-card: 0 8px 28px rgba(30, 18, 60, 0.06);
    --shadow-hover: 0 18px 44px rgba(30, 18, 60, 0.14);
    --space-section: 84px;
    --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Segoe UI", sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
button {
    font-family: inherit;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(242, 59, 111, .35);
    outline-offset: 3px;
    border-radius: 8px;
}
:focus:not(:focus-visible) {
    outline: none;
}
.container {
    max-width: 1280px;
}
.row {
    --bs-gutter-x: 28px;
}

/* ===== 按钮系统 ===== */
.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 24px;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: all .2s ease;
    text-decoration: none;
    cursor: pointer;
}
.site-btn svg {
    width: 17px;
    height: 17px;
}
.btn-brand {
    background: var(--brand-gradient);
    color: #fff;
    box-shadow: 0 10px 24px rgba(107, 78, 255, .24);
}
.btn-brand:hover,
.btn-brand:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(242, 59, 111, .28);
}
.btn-dark {
    background: var(--ink);
    color: #fff;
}
.btn-dark:hover,
.btn-dark:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-light-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
}
.btn-light-ghost:hover,
.btn-light-ghost:focus {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, .1);
}
.btn-outline {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text-primary);
}
.btn-outline:hover,
.btn-outline:focus {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1080;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.35;
}
.brand:hover {
    color: #fff;
}
.brand-logo {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 13px;
    background: var(--brand-gradient);
    color: #fff;
    flex: 0 0 auto;
}
.brand em {
    font-style: normal;
    color: #B9A5F5;
    font-weight: 500;
}
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    position: relative;
    padding: 8px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}
.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 2px;
    height: 2px;
    border-radius: 99px;
    background: var(--brand-gradient);
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F23B6F, #6B4EFF);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.header-cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(242, 59, 111, .32);
}

/* ===== 移动端底部 Tab ===== */
.mobile-tab-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: flex;
    align-items: stretch;
    background: #fff;
    border-top: 1px solid var(--line-alt);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -10px 30px rgba(30, 18, 60, .08);
}
.mobile-tab-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 60px;
    color: #858095;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}
.mobile-tab-bar a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.mobile-tab-bar a.active {
    color: var(--brand-purple);
    background: linear-gradient(135deg, rgba(242, 59, 111, .06), rgba(107, 78, 255, .06));
}
.mobile-tab-bar a.active svg {
    color: var(--brand-pink);
}
.mobile-tab-bar a::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-top: 2px;
    border-radius: 50%;
    background: transparent;
}
.mobile-tab-bar a.active::after {
    background: var(--brand-pink);
}
@media (min-width: 992px) {
    .mobile-tab-bar {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .desktop-menu,
    .header-cta {
        display: none;
    }
    .header-inner {
        min-height: 64px;
        justify-content: center;
    }
    .mobile-tab-bar {
        display: flex;
    }
    .site-footer {
        padding-bottom: 32px;
    }
    body {
        padding-bottom: 0;
    }
    .article-page-body {
        padding-bottom: 88px;
    }
}

/* ===== 文章篇首区域 ===== */
.article-coverband {
    position: relative;
    padding: 78px 0 120px;
    background: linear-gradient(135deg, rgba(23, 19, 42, .88), rgba(60, 38, 110, .88)), url('/assets/images/backpic/back-1.png') center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.article-coverband::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 59, 111, .22), transparent 68%);
    pointer-events: none;
}
.breadcrumb-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
}
.breadcrumb-row a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}
.breadcrumb-row a:hover {
    color: #fff;
}
.breadcrumb-row .crumb-divider {
    color: rgba(255, 255, 255, .36);
}
.article-title-wrap h1 {
    max-width: 860px;
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: .01em;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}
.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.article-meta-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.article-meta-cat {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* ===== 正文区 ===== */
.article-page-body {
    padding-bottom: var(--space-section);
}
.article-layout {
    margin-top: -56px;
    position: relative;
    z-index: 2;
}
.article-main-col {
    min-width: 0;
}
.article-panel {
    background: var(--card-bg);
    border: 1px solid var(--line-alt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 48px;
    margin-bottom: 28px;
}
.content-body {
    color: #2B2440;
    font-size: 17px;
    line-height: 1.85;
}
.content-body p {
    margin: 0 0 1.45em;
}
.content-body h2,
.content-body h3,
.content-body h4 {
    margin-top: 1.7em;
    margin-bottom: .6em;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.4;
}
.content-body h2 {
    font-size: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.content-body h3 {
    font-size: 22px;
}
.content-body h4 {
    font-size: 18px;
}
.content-body img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin: 12px 0 24px;
}
.content-body blockquote {
    margin: 24px 0;
    padding: 16px 22px;
    border-left: 4px solid var(--brand-purple);
    background: #F7F6FC;
    border-radius: 0 14px 14px 0;
    color: #554D68;
}
.content-body ul,
.content-body ol {
    margin: 0 0 1.4em;
    padding-left: 1.6em;
}
.content-body li {
    margin-bottom: 6px;
}
.content-body a {
    color: var(--brand-purple);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}
.content-body a:hover {
    color: var(--brand-pink);
}
.content-body table {
    width: 100%;
    margin-bottom: 24px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}
.content-body th,
.content-body td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
}
.content-body tr:last-child td {
    border-bottom: 0;
}
.content-body th {
    background: #F9F7FD;
    font-weight: 600;
}
.content-body code {
    background: #F3F0FA;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 2px 6px;
    font-size: .92em;
    color: #51456B;
}
.not-found-box {
    padding: 72px 20px;
    text-align: center;
    color: var(--text-secondary);
}
.not-found-box .not-found-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #F4F0FF;
    color: var(--brand-purple);
}
.not-found-box h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.not-found-box p {
    margin: 8px auto 24px;
    max-width: 440px;
}

/* ===== 底部文章信息 ===== */
.article-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}
.tags-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.tags-line .tags-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}
.tags-line .tag-chip {
    background: #F4F1FB;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 12px;
    color: #554D68;
    font-size: 13px;
}

/* ===== 侧栏 ===== */
.aside-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 104px;
}
@media (max-width: 991.98px) {
    .aside-stack {
        position: static;
        margin-top: 12px;
    }
}
.side-card {
    background: #fff;
    border: 1px solid var(--line-alt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 24px;
}
.side-card h3 {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.info-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
}
.info-line:last-child {
    border-bottom: 0;
}
.info-line span {
    color: var(--text-secondary);
    flex: 0 0 auto;
}
.info-line strong {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}
.guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.guide-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #5E5772;
    font-size: 14px;
}
.guide-list li:last-child {
    margin-bottom: 0;
}
.guide-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(242, 59, 111, .14), rgba(107, 78, 255, .14));
    color: var(--brand-purple);
    font-weight: 700;
    font-size: 13px;
}
.aside-note {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: #FAF8FF;
    border: 1px solid var(--line);
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}
.side-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.side-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #F9F7FD;
    border: 1px solid transparent;
    border-radius: 13px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}
.side-nav-list a:hover,
.side-nav-list a:focus {
    background: #F2EDFD;
    border-color: rgba(107, 78, 255, .18);
}
.side-nav-list a svg {
    width: 17px;
    height: 17px;
    color: var(--brand-purple);
}
.side-match {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 174px;
    background: linear-gradient(135deg, #17132A, #2E2060);
    color: #fff;
    margin-top: 24px;
}
.side-match img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
}
.side-match .side-match-content {
    position: relative;
    padding: 24px 20px;
}
.side-match h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}
.side-match p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}
.side-match a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* ===== 延伸阅读区 ===== */
.resource-section {
    padding: var(--space-section) 0 0;
}
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}
.section-heading h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: .01em;
}
.section-heading p {
    max-width: 570px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
}
.resource-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991.98px) {
    .resource-card-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .resource-card-wrap {
        grid-template-columns: 1fr;
    }
}
.resource-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
}
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.resource-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #EDEAF5;
}
.resource-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.resource-body {
    padding: 20px 20px 24px;
}
.resource-body h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}
.resource-body p {
    margin: 0 0 16px;
    color: var(--text-secondary);
    font-size: 14px;
}
.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-purple);
    font-size: 14px;
    font-weight: 600;
}
.resource-link:hover {
    color: var(--brand-pink);
}

/* ===== 文章 CTA ===== */
.article-cta {
    padding: 90px 0 30px;
}
.cta-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #181226, #38237A);
    border-radius: 28px;
    padding: 48px;
    color: #fff;
    box-shadow: var(--shadow-hover);
}
.cta-wrapper::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 59, 111, .34), transparent 68%);
}
.cta-wrapper::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    left: -70px;
    bottom: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 78, 255, .3), transparent 68%);
}
.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}
.cta-copy h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}
.cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.site-btn.is-collected {
    background: rgba(18, 184, 166, .15);
    border: 1px solid rgba(18, 184, 166, .45);
    color: #D6FFF9;
}
@media (max-width: 600px) {
    .article-cta {
        padding-top: 60px;
    }
    .cta-wrapper {
        padding: 32px 24px;
    }
    .cta-actions {
        width: 100%;
    }
    .cta-actions .site-btn {
        flex: 1;
    }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--ink);
    padding: 64px 0 36px;
    color: rgba(255, 255, 255, .7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}
.footer-brand em {
    font-style: normal;
    color: #B9A5F5;
    font-weight: 500;
}
.footer-about {
    max-width: 340px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.8;
}
.site-footer h4 {
    margin: 4px 0 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}
.footer-links a:hover {
    color: #fff;
}
.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 28px;
    color: rgba(255, 255, 255, .42);
    font-size: 13px;
}
@media (max-width: 640px) {
    .footer-copyright {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Article aside mobile ===== */
@media (max-width: 991.98px) {
    .article-coverband {
        padding: 56px 0 90px;
        background-position: 30% center;
    }
    .article-layout {
        margin-top: -36px;
    }
    .article-panel {
        padding: 28px 22px;
    }
    .article-title-wrap h1 {
        font-size: 28px;
    }
    .article-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-heading {
        display: block;
    }
    .section-heading p {
        margin-top: 8px;
    }
}

/* roulang page: category2 */
:root{
  --brand-pink:#F23B6F;
  --brand-violet:#6B4EFF;
  --brand-grad:linear-gradient(135deg,#F23B6F 0%,#6B4EFF 100%);
  --energy-orange:#FF9D2E;
  --mint:#12B8A6;
  --ink-bg:#17132A;
  --page-bg:#F6F4FA;
  --card-bg:#FFFFFF;
  --border-line:#E9E3F1;
  --text-main:#221C33;
  --text-sub:#6F6785;
  --text-dark:#0E0B1C;
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-round:999px;
  --shadow-card:0 8px 28px rgba(30,18,60,.06);
  --shadow-hover:0 18px 44px rgba(30,18,60,.14);
  --shadow-btn:0 10px 24px rgba(242,59,111,.26);
  --shadow-btn-hover:0 16px 34px rgba(107,78,255,.32);
  --ease:all .24s ease;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC","Source Han Sans SC","Segoe UI",sans-serif;
  background:var(--page-bg);
  color:var(--text-main);
  font-size:16px;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
a:hover{color:inherit}
p{margin-bottom:0}
ul,ol{list-style:none;margin-bottom:0;padding-left:0}
button{font-family:inherit}
.container{max-width:1320px}

/* ---------- 通用按钮 ---------- */
.btn{border-radius:var(--radius-round);font-weight:600;letter-spacing:.2px;transition:var(--ease)}
.btn:focus,.btn:focus-visible{outline:none;box-shadow:0 0 0 4px rgba(242,59,111,.22)}
.btn-grad{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background-image:var(--brand-grad);border:0;color:#fff;min-height:46px;
  padding:10px 26px;box-shadow:var(--shadow-btn);
}
.btn-grad:hover{color:#fff;transform:translateY(-2px);box-shadow:var(--shadow-btn-hover);background-image:linear-gradient(135deg,#E7245F 0%,#5E40F9 100%)}
.btn-grad:active{transform:translateY(0)}
.btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:transparent;border:1px solid rgba(255,255,255,.6);color:#fff;min-height:46px;
  padding:10px 26px;
}
.btn-ghost:hover{background:rgba(255,255,255,.1);color:#fff;border-color:#fff}
.btn-ghost:active{background:rgba(255,255,255,.16)}
.btn-line{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:#fff;border:1px solid #CEC3DE;color:var(--text-main);min-height:44px;
  padding:8px 22px;border-radius:var(--radius-round);font-weight:600;
}
.btn-line:hover{border-color:var(--brand-pink);color:var(--brand-pink);box-shadow:0 6px 16px rgba(242,59,111,.12)}
.btn-fav.active{background:linear-gradient(135deg,#F23B6F,#6B4EFF);color:#fff;border-color:transparent}

/* ---------- 桌面顶部导航 ---------- */
.site-header{
  position:sticky;top:0;z-index:1050;
  background:var(--ink-bg);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 8px 30px rgba(12,6,32,.22);
}
.header-inner{display:flex;align-items:center;gap:28px;min-height:74px}
.brand{
  display:inline-flex;align-items:center;gap:10px;color:#fff;font-size:1.3rem;
  font-weight:800;letter-spacing:.3px;white-space:nowrap;line-height:1.2;
}
.brand em{font-style:normal;font-weight:600;color:#F49CBF}
.brand-logo{
  display:grid;place-items:center;width:36px;height:36px;border-radius:50%;
  background:var(--brand-grad);color:#fff;box-shadow:0 8px 18px rgba(242,59,111,.26);
}
.desktop-menu{display:flex;align-items:center;gap:30px;margin-left:auto;margin-right:14px}
.nav-link{
  position:relative;display:inline-block;color:rgba(255,255,255,.72);
  font-size:.92rem;font-weight:500;padding:20px 2px;line-height:1;transition:var(--ease);
}
.nav-link:hover{color:#fff}
.nav-link.active{color:#fff}
.nav-link.active::after{
  content:"";position:absolute;left:0;right:0;bottom:12px;height:3px;
  border-radius:3px;background:var(--brand-grad);
}
.header-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--brand-grad);color:#fff;border-radius:var(--radius-round);
  font-size:.85rem;font-weight:600;padding:9px 18px;
  box-shadow:0 8px 22px rgba(242,59,111,.25);transition:var(--ease);white-space:nowrap;
}
.header-cta:hover{color:#fff;transform:translateY(-2px);box-shadow:0 12px 30px rgba(107,78,255,.35)}
.header-cta:active{transform:translateY(0)}

/* ---------- 移动端底部Tab ---------- */
.mobile-bottom-nav{
  position:fixed;left:0;right:0;bottom:0;z-index:2000;
  display:none;background:rgba(23,19,42,.98);
  border-top:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  padding-bottom:env(safe-area-inset-bottom);
}
.bottom-tab{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  min-height:62px;gap:3px;color:rgba(255,255,255,.58);
  font-size:11px;line-height:1.2;transition:var(--ease);
}
.bottom-tab:hover{color:#fff}
.tab-icon{
  display:grid;place-items:center;width:44px;height:28px;border-radius:16px;
  transition:var(--ease);
}
.tab-icon svg{width:20px;height:20px}
.bottom-tab.active{color:#fff}
.bottom-tab.active .tab-icon{background:var(--brand-grad);color:#fff;box-shadow:0 6px 16px rgba(242,59,111,.24)}
.bottom-tab.active span{position:relative}
.bottom-tab.active span::after{
  content:"";display:block;margin:3px auto 0;width:4px;height:4px;
  border-radius:50%;background:var(--brand-pink);
}

/* ---------- 页脚 ---------- */
.site-footer{background:var(--ink-bg);color:#B9AFCE;padding:58px 0 32px}
.footer-grid{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1.1fr;
  gap:36px;padding-bottom:38px;
}
.footer-brand{
  display:inline-flex;align-items:center;gap:9px;color:#fff;
  font-weight:800;font-size:1.25rem;
}
.footer-brand em{font-style:normal;color:#F49CBF}
.footer-brand .brand-logo{width:30px;height:30px}
.footer-about{max-width:330px;font-size:.86rem;line-height:1.85;color:#9B90B2;margin-top:14px}
.footer-grid h4{color:#fff;font-size:.95rem;font-weight:600;margin-bottom:16px}
.footer-links{display:grid;grid-template-columns:repeat(2,minmax(96px,1fr));gap:9px 12px}
.footer-links a{color:#A89DBC;font-size:.85rem;line-height:1.6;transition:var(--ease)}
.footer-links a:hover{color:#fff;text-decoration:underline}
.footer-copyright{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  border-top:1px solid rgba(255,255,255,.08);padding-top:22px;
  color:#746B8C;font-size:.78rem;
}

/* ---------- 页面横幅 ---------- */
.cat-hero{
  position:relative;overflow:hidden;background:var(--ink-bg);color:#fff;
  padding:58px 0 90px;
}
.cat-hero::before{
  content:"";position:absolute;inset:0;z-index:0;
  background:url('/assets/images/backpic/back-3.png') center 60%/cover no-repeat;
  opacity:.24;
}
.cat-hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(100deg,rgba(23,19,42,.97) 4%,rgba(23,19,42,.76) 46%,rgba(23,19,42,.42) 100%);
}
.cat-hero .container{position:relative;z-index:2}
.crumb{display:flex;align-items:center;gap:10px;font-size:.82rem;color:rgba(255,255,255,.62);margin-bottom:18px}
.crumb a{color:rgba(255,255,255,.62);transition:var(--ease)}
.crumb a:hover{color:#fff}
.crumb svg{width:14px;height:14px;opacity:.5;flex:none}
.cat-title{
  font-size:3rem;font-weight:800;line-height:1.2;letter-spacing:.5px;
  margin-bottom:18px;
}
.cat-title span{
  background:linear-gradient(120deg,#FF8DB0,#B39BFF);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.cat-lead{font-size:1.06rem;color:rgba(255,255,255,.78);max-width:560px;line-height:1.85}
.hero-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.hero-chip{
  display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);border-radius:var(--radius-round);
  font-size:.8rem;padding:6px 14px;color:rgba(255,255,255,.88);backdrop-filter:blur(6px);
}
.hero-chip i{width:6px;height:6px;border-radius:50%;background:var(--mint);display:inline-block}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:32px}

.spot-card{
  background:#fff;color:var(--text-main);border-radius:var(--radius-lg);
  overflow:hidden;max-width:568px;margin-left:auto;
  box-shadow:0 28px 56px rgba(10,5,30,.38);
  transition:var(--ease);
}
.spot-card:hover{transform:translateY(-4px)}
.spot-cover{position:relative;aspect-ratio:16/8;overflow:hidden;background:#E1D9EB}
.spot-cover img{width:100%;height:100%;object-fit:cover}
.spot-tag{
  position:absolute;top:16px;left:16px;display:inline-flex;align-items:center;gap:6px;
  background:var(--brand-grad);color:#fff;border-radius:var(--radius-round);
  font-size:.72rem;font-weight:600;padding:4px 13px;box-shadow:0 6px 16px rgba(242,59,111,.3);
}
.spot-live{position:absolute;top:16px;right:16px;display:inline-flex;align-items:center;gap:6px;background:rgba(23,19,42,.82);color:#fff;border-radius:var(--radius-round);font-size:.7rem;padding:4px 11px;backdrop-filter:blur(6px)}
.spot-live i{width:6px;height:6px;border-radius:50%;background:var(--mint);display:block}
.spot-body{position:relative;padding:28px 28px 22px}
.spot-badge{
  position:absolute;right:24px;top:-32px;width:70px;height:70px;border-radius:50%;
  display:grid;place-items:center;background:var(--brand-grad);color:#fff;
  font-weight:800;font-size:1.3rem;box-shadow:0 12px 26px rgba(107,78,255,.36);
  border:3px solid #fff;
}
.spot-body .meta-line{font-size:.76rem;color:var(--text-sub);letter-spacing:.4px;margin-bottom:8px}
.spot-body h3{font-size:1.35rem;font-weight:700;margin-bottom:10px}
.spot-body p{font-size:.9rem;color:var(--text-sub);line-height:1.75}
.spot-foot{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--border-line);margin-top:20px;padding-top:14px}

/* ---------- 章节通用 ---------- */
.section{padding:82px 0}
.section-white{background:#fff}
.section-head{max-width:720px;margin-bottom:40px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head .eyebrow{
  display:inline-flex;align-items:center;gap:8px;background:#F6E7EF;color:var(--brand-pink);
  font-size:.76rem;font-weight:700;letter-spacing:1.2px;border-radius:var(--radius-round);
  padding:5px 14px;margin-bottom:14px;
}
.section-head h2{font-size:2.1rem;font-weight:700;line-height:1.35;margin-bottom:12px}
.section-head p{color:var(--text-sub);font-size:.95rem}

/* ---------- 评分维度条 ---------- */
.dim-item{
  background:#fff;border:1px solid var(--border-line);border-radius:var(--radius-lg);
  padding:24px 18px 18px;height:100%;position:relative;overflow:hidden;
  transition:var(--ease);
}
.dim-item::before{content:"";position:absolute;left:0;right:0;top:0;height:3px;background:var(--brand-grad)}
.dim-item:hover{box-shadow:var(--shadow-card)}
.dim-ico{
  width:44px;height:44px;border-radius:14px;display:grid;place-items:center;
  background:linear-gradient(135deg,#FDEFF3,#F1E9FF);color:var(--brand-pink);margin-bottom:14px;
}
.dim-item h3{font-size:1.04rem;font-weight:700;margin-bottom:6px}
.dim-item p{font-size:.83rem;color:var(--text-sub);line-height:1.7}

/* ---------- 测评主区 ---------- */
.cat-main{background:var(--page-bg)}
.side-card{
  background:#fff;border:1px solid var(--border-line);border-radius:var(--radius-lg);
  padding:24px;margin-bottom:18px;box-shadow:var(--shadow-card);
}
.side-card h3{
  font-size:1.02rem;font-weight:700;margin-bottom:16px;position:relative;
  padding-left:14px;
}
.side-card h3::before{content:"";position:absolute;left:0;top:5px;bottom:5px;width:4px;border-radius:4px;background:var(--brand-grad)}
.filter-tags{display:flex;flex-wrap:wrap;gap:8px}
.filter-tags a{
  display:inline-flex;background:#F7F3FC;border:1px solid #E4DCF0;color:#5A5270;
  font-size:.78rem;border-radius:var(--radius-round);padding:4px 13px;transition:var(--ease);
}
.filter-tags a:hover{border-color:var(--brand-pink);color:var(--brand-pink);background:#FFF5F8}
.side-score-list li{padding:11px 0;border-bottom:1px solid #F1ECf7;display:flex;align-items:center;gap:12px}
.side-score-list li:last-child{border-bottom:0;padding-bottom:0}
.side-score-list .num{
  flex:none;width:40px;height:40px;border-radius:13px;display:grid;place-items:center;
  background:#F4EFFB;color:var(--brand-violet);font-weight:800;font-size:.9rem;
}
.side-score-list .sq-title{font-size:.88rem;font-weight:600;line-height:1.35}
.side-score-list .sq-sub{font-size:.74rem;color:var(--text-sub);line-height:1.4}
.side-card .quick-score-row{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;text-align:center}
.quick-score-cell{background:#F8F3FD;border-radius:var(--radius-md);padding:9px 4px}
.quick-score-cell b{display:block;font-size:1rem;background:var(--brand-grad);-webkit-background-clip:text;background-clip:text;color:transparent;font-weight:800}
.quick-score-cell span{font-size:.7rem;color:var(--text-sub)}

/* 测评卡 */
.review-item{
  background:#fff;border:1px solid var(--border-line);border-radius:var(--radius-lg);
  overflow:hidden;height:100%;box-shadow:var(--shadow-card);transition:var(--ease);
}
.review-item:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover)}
.review-cover{position:relative;aspect-ratio:16/10;overflow:hidden;background:#E8DFF0}
.review-cover img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.review-item:hover .review-cover img{transform:scale(1.04)}
.review-tag{
  position:absolute;top:14px;left:14px;background:rgba(23,19,42,.8);color:#fff;
  font-size:.7rem;padding:4px 11px;border-radius:var(--radius-round);backdrop-filter:blur(6px);
}
.review-score{
  position:absolute;right:16px;bottom:-24px;width:56px;height:56px;border-radius:50%;
  background:var(--brand-grad);color:#fff;display:grid;place-items:center;
  font-size:1.12rem;font-weight:800;border:3px solid #fff;
  box-shadow:0 10px 24px rgba(107,78,255,.32);
}
.review-body{padding:26px 22px 22px}
.review-meta{display:flex;gap:12px;align-items:center;font-size:.74rem;color:var(--text-sub);margin-bottom:8px}
.review-meta i{width:4px;height:4px;border-radius:50%;background:#C9BFD9;flex:none}
.review-body h3{font-size:1.14rem;font-weight:700;line-height:1.45;margin-bottom:8px}
.review-summary{font-size:.86rem;color:var(--text-sub);line-height:1.75;margin-bottom:14px}
.fit-for{
  background:#FCFAFE;border-left:3px solid var(--brand-pink);border-radius:var(--radius-sm);
  font-size:.77rem;color:#5C556B;padding:8px 12px;line-height:1.6;
}

/* ---------- 测评流程 ---------- */
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.process-step{
  position:relative;border:1px solid var(--border-line);background:#fff;
  border-radius:var(--radius-lg);padding:28px 22px 24px;height:100%;
  transition:var(--ease);z-index:1;
}
.process-step:hover{box-shadow:var(--shadow-hover);border-color:transparent}
.process-step .step-num{
  position:absolute;top:18px;right:18px;font-size:2rem;font-weight:800;
  color:#F0E8F8;line-height:1;z-index:0;transition:var(--ease);
}
.process-step:hover .step-num{background:var(--brand-grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.process-step .step-ico{width:44px;height:44px;border-radius:14px;background:linear-gradient(135deg,#FFE9F0,#EDE6FF);display:grid;place-items:center;color:var(--brand-pink);margin-bottom:16px;position:relative;z-index:1}
.process-step h3{font-size:1rem;font-weight:700;margin-bottom:6px;position:relative;z-index:1}
.process-step p{font-size:.83rem;color:var(--text-sub);line-height:1.7;position:relative;z-index:1}

/* ---------- FAQ ---------- */
.faq-wrap{max-width:880px;margin:0 auto}
.accordion-item{
  background:#fff;border:1px solid var(--border-line)!important;border-radius:var(--radius-md)!important;
  margin-bottom:14px;overflow:hidden;box-shadow:0 4px 14px rgba(30,18,60,.04);transition:var(--ease);
}
.accordion-item:last-child{margin-bottom:0}
.accordion-button{
  background:#fff;padding:22px 24px;font-weight:600;font-size:.97rem;
  color:var(--text-main);border:0!important;border-radius:var(--radius-md)!important;
  box-shadow:none!important;
}
.accordion-button:hover{background:#FDFBFF}
.accordion-button:not(.collapsed){background:#F9F3FE;color:var(--text-main);border-bottom:1px solid var(--border-line)!important}
.accordion-button:focus{box-shadow:none;background:#FBF6FF}
.accordion-button::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B4EFF' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a1 1 0 0 1 1 1v4h4a1 1 0 1 1 0 2H9v4a1 1 0 1 1-2 0V9H3a1 1 0 1 1 0-2h4V3a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
  background-size:14px;transition:transform .24s ease;
}
.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B4EFF' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M3 8a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E")}
.accordion-body{padding:10px 24px 24px;background:#FFFFFF;color:var(--text-sub);font-size:.9rem;line-height:1.85}

/* ---------- CTA / 动态更新区 ---------- */
.cta-wrap{padding:0 0 82px}
.cta-band{
  position:relative;overflow:hidden;background:var(--ink-bg);border-radius:var(--radius-lg);
  padding:50px 54px;color:#fff;
}
.cta-band::before{
  content:"";position:absolute;width:380px;height:380px;border-radius:50%;top:-170px;right:-90px;
  background:radial-gradient(circle,rgba(242,59,111,.42) 0%,transparent 68%);
}
.cta-band::after{
  content:"";position:absolute;width:320px;height:320px;border-radius:50%;bottom:-190px;left:24%;
  background:radial-gradient(circle,rgba(107,78,255,.32) 0%,transparent 70%);
}
.cta-inner{position:relative;z-index:2}
.cta-band .eyebrow{
  display:inline-flex;align-items:center;gap:8px;color:#F6B7D0;
  background:rgba(255,255,255,.09);border-radius:var(--radius-round);
  font-size:.76rem;font-weight:600;padding:5px 14px;margin-bottom:14px;
}
.cta-band h2{font-size:1.9rem;font-weight:700;margin-bottom:12px}
.cta-band .cta-sub{color:rgba(255,255,255,.7);font-size:.93rem;max-width:620px;margin-bottom:26px;line-height:1.85}
.update-list{display:grid;grid-template-columns:1fr 1fr;gap:12px 22px;max-width:700px;margin-bottom:28px}
.update-item{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-md);padding:12px 16px;display:flex;gap:14px;align-items:center;
  transition:var(--ease);
}
.update-item:hover{background:rgba(255,255,255,.1);transform:translateX(4px)}
.update-date{flex:none;font-size:.72rem;color:#BFAEE0;background:rgba(0,0,0,.22);border-radius:10px;padding:4px 9px}
.update-item p{font-size:.85rem;color:rgba(255,255,255,.86)}
.cta-actions{display:flex;flex-wrap:wrap;gap:14px}

/* ---------- 响应式 ---------- */
@media (min-width:992px){
  .mobile-bottom-nav{display:none!important}
}
@media (max-width:991.98px){
  .desktop-menu,.header-cta{display:none}
  .header-inner{justify-content:center}
  .mobile-bottom-nav{display:grid;grid-template-columns:repeat(5,1fr)}
  body{padding-bottom:calc(62px + env(safe-area-inset-bottom))}
  .cat-hero{padding:44px 0 74px}
  .cat-title{font-size:2.3rem}
  .spot-card{margin:34px auto 0}
  .section{padding:60px 0}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .cta-band{padding:40px 28px}
  .update-list{grid-template-columns:1fr}
}
@media (max-width:767.98px){
  .cat-title{font-size:1.9rem}
  .cat-lead{font-size:.95rem}
  .section-head h2{font-size:1.55rem;line-height:1.4}
  .cat-hero{padding:34px 0 58px}
  .hero-chips{gap:8px}
  .hero-chip{font-size:.74rem;padding:4px 10px}
  .spot-body{padding:22px 18px 18px}
  .spot-body h3{font-size:1.12rem}
  .footer-grid{grid-template-columns:1fr;gap:24px}
  .section{padding:48px 0}
  .process-grid{grid-template-columns:1fr}
  .cta-band h2{font-size:1.45rem}
  .footer-copyright{flex-direction:column;gap:4px}
  .update-item{align-items:flex-start}
}

/* roulang page: category3 */
:root {
            --brand-pink: #F23B6F;
            --brand-violet: #6B4EFF;
            --grad-brand: linear-gradient(135deg, #F23B6F 0%, #6B4EFF 100%);
            --brand-orange: #FF9D2E;
            --brand-mint: #12B8A6;
            --ink-bg: #17132A;
            --page-bg: #F6F4FA;
            --card-bg: #FFFFFF;
            --line: #E9E3F1;
            --text-main: #221C33;
            --text-weak: #6F6785;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-card: 0 8px 28px rgba(30, 18, 60, 0.06);
            --shadow-hover: 0 18px 44px rgba(30, 18, 60, 0.14);
            --font-stack: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "Segoe UI", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-stack);
            background: var(--page-bg);
            color: var(--text-main);
            font-size: 16px;
            line-height: 1.75;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        a:hover {
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1320px;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
        }

        h1 {
            font-size: 48px;
        }
        h2 {
            font-size: 34px;
        }
        h3 {
            font-size: 21px;
        }
        h4 {
            font-size: 17px;
        }
        p {
            margin-bottom: 0;
        }

        .btn {
            --bs-btn-font-weight: 600;
            border-radius: var(--radius-md);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            transition: all .2s ease;
            border: 1px solid transparent;
        }
        .btn-gradient {
            background: var(--grad-brand);
            color: #fff;
            box-shadow: 0 10px 26px rgba(107, 78, 255, 0.25);
        }
        .btn-gradient:hover {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 15px 32px rgba(242, 59, 111, 0.3);
        }
        .btn-ghost {
            border: 1px solid rgba(255, 255, 255, 0.55);
            color: #fff;
            background: transparent;
        }
        .btn-ghost:hover {
            color: #fff;
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }
        .btn-violet-outline {
            border: 1px solid rgba(107, 78, 255, 0.4);
            color: var(--brand-violet);
            background: #fff;
        }
        .btn-violet-outline:hover {
            background: var(--brand-violet);
            color: #fff;
            border-color: var(--brand-violet);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn:focus-visible {
            outline: 3px solid rgba(242, 59, 111, 0.32);
            outline-offset: 2px;
        }

        .section-title {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 32px;
        }
        .section-title h2 {
            letter-spacing: -0.01em;
        }
        .section-title p {
            color: var(--text-weak);
            max-width: 680px;
        }
        .section-lead {
            font-size: 17px;
            color: var(--text-weak);
        }
        .dot-suffix {
            display: inline-block;
            width: 8px;
            height: 8px;
            margin-left: 10px;
            border-radius: 50%;
            background: var(--grad-brand);
            vertical-align: 4px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(23, 19, 42, 0.96);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            white-space: nowrap;
        }
        .brand-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--grad-brand);
            color: #fff;
            box-shadow: 0 6px 18px rgba(242, 59, 111, 0.35);
        }
        .brand em {
            font-style: normal;
            color: var(--brand-pink);
        }
        .brand:hover {
            color: #fff;
        }
        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 14px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            font-weight: 500;
            border-radius: 999px;
            transition: color .2s ease, background .2s ease;
            margin: 0;
            text-decoration: none;
        }
        .nav-link::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 3px;
            height: 3px;
            border-radius: 99px;
            background: var(--grad-brand);
            opacity: 0;
            transform: scaleX(.4);
            transition: all .25s ease;
        }
        .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-link.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-link.active::after {
            opacity: 1;
            transform: scaleX(1);
        }
        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--grad-brand);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 999px;
            padding: 10px 18px;
            box-shadow: 0 8px 22px rgba(242, 59, 111, 0.3);
            transition: transform .2s ease, box-shadow .2s ease;
        }
        .header-cta:hover {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(107, 78, 255, 0.34);
        }

        .mobile-tabbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040;
            display: none;
            background: rgba(255, 255, 255, 0.97);
            border-top: 1px solid var(--line);
            box-shadow: 0 -6px 24px rgba(30, 18, 60, 0.06);
            padding-bottom: env(safe-area-inset-bottom);
        }
        .mobile-tabs {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            height: 64px;
        }
        .tab-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            color: #7A7287;
            font-size: 11px;
            min-height: 56px;
            position: relative;
            transition: color .2s ease;
        }
        .tab-item .tab-icon {
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background .2s ease;
        }
        .tab-item.active {
            color: var(--brand-pink);
            font-weight: 700;
        }
        .tab-item.active .tab-icon {
            background: rgba(242, 59, 111, 0.12);
        }
        .tab-item.active::before {
            content: "";
            position: absolute;
            top: 5px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--brand-pink);
        }
        .tab-item:hover {
            color: var(--brand-violet);
        }
        .tab-item:focus-visible {
            outline: 2px solid var(--brand-pink);
            outline-offset: -2px;
        }

        .category-hero {
            position: relative;
            color: #fff;
            padding: 132px 0 104px;
            background:
                radial-gradient(circle at 78% 20%, rgba(242, 59, 111, 0.5), transparent 32%),
                radial-gradient(circle at 12% 92%, rgba(107, 78, 255, 0.55), transparent 34%),
                linear-gradient(105deg, rgba(23, 19, 42, 0.96) 0%, rgba(23, 19, 42, 0.84) 56%, rgba(23, 19, 42, 0.72) 100%),
                url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .page-category .category-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 90px);
            pointer-events: none;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-copy {
            max-width: 720px;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background: rgba(255, 255, 255, 0.08);
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.86);
            margin-bottom: 18px;
            letter-spacing: 0.02em;
        }
        .hero-title {
            font-size: 58px;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 14px;
        }
        .hero-title-gradient {
            background: var(--grad-brand);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-lead {
            font-size: 18px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.82);
            max-width: 640px;
        }
        .hero-behaviors {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 28px;
        }
        .mini-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 999px;
            padding: 8px 15px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.88);
        }
        .mini-pill .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--brand-mint);
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }
        .hero-media {
            position: relative;
            margin-left: auto;
            max-width: 440px;
        }
        .hero-poster {
            margin: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow: 0 26px 55px rgba(0, 0, 0, 0.42);
            transform: rotate(1deg);
        }
        .hero-poster img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        .poster-note {
            position: absolute;
            right: -16px;
            top: 28px;
            background: var(--grad-brand);
            color: #fff;
            border-radius: 999px;
            padding: 9px 16px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 10px 22px rgba(107, 78, 255, 0.45);
            transform: rotate(3deg);
        }

        .info-ribbon {
            background: #fff;
            border-bottom: 1px solid var(--line);
        }
        .info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .ribbon-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 30px 28px 30px 0;
            border-right: 1px solid var(--line);
        }
        .ribbon-item + .ribbon-item {
            padding-left: 28px;
        }
        .ribbon-item:last-child {
            border-right: 0;
        }
        .ribbon-ico {
            width: 42px;
            height: 42px;
            flex: none;
            border-radius: 13px;
            background: rgba(107, 78, 255, 0.09);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-violet);
        }
        .ribbon-item:nth-child(2) .ribbon-ico {
            background: rgba(242, 59, 111, 0.09);
            color: var(--brand-pink);
        }
        .ribbon-item:nth-child(3) .ribbon-ico {
            background: rgba(255, 157, 46, 0.14);
            color: #DA7A00;
        }
        .ribbon-item:nth-child(4) .ribbon-ico {
            background: rgba(18, 184, 166, 0.12);
            color: #0B9A8B;
        }
        .ribbon-item h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .ribbon-item p {
            color: var(--text-weak);
            font-size: 14px;
            line-height: 1.6;
        }

        .section-pad {
            padding: 80px 0;
        }
        .section-soft {
            background: #fff;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        .section-muted {
            background: var(--page-bg);
        }

        .rank-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }
        .rank-area {
            flex: 1 1 calc(66.666% - 12px);
            min-width: 0;
        }
        .rank-side {
            flex: 1 1 calc(33.333% - 12px);
            min-width: 320px;
        }
        .rank-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .rank-sub {
            color: var(--text-weak);
            font-size: 15px;
        }

        .rank-card {
            display: flex;
            align-items: flex-start;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 20px;
            padding: 18px 20px;
            gap: 20px;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
            position: relative;
        }
        .rank-card + .rank-card {
            margin-top: 14px;
        }
        .rank-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(107, 78, 255, 0.28);
        }
        .rank-index {
            flex: 0 0 auto;
            width: 58px;
            text-align: left;
            font-size: 38px;
            font-weight: 900;
            line-height: 1.1;
            font-variant-numeric: tabular-nums;
            background: var(--grad-brand);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .rank-media {
            flex: 0 0 auto;
            width: 146px;
            height: 92px;
            border-radius: 16px;
            overflow: hidden;
            background: #F0ECF7;
            position: relative;
        }
        .rank-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
            display: block;
        }
        .rank-card:hover .rank-media img {
            transform: scale(1.04);
        }
        .rank-content {
            flex: 1 1 auto;
            min-width: 0;
        }
        .rank-name-line {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .rank-name-line h3 {
            font-size: 21px;
            font-weight: 800;
        }
        .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            border-radius: 999px;
            background: rgba(18, 184, 166, 0.1);
            color: #0A8F82;
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            padding: 5px 9px;
        }
        .rank-desc {
            color: var(--text-weak);
            font-size: 15px;
            margin-top: 8px;
            line-height: 1.7;
        }
        .rank-tags {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        .mini-tag {
            font-size: 12px;
            color: var(--text-main);
            background: #F2EEF8;
            border-radius: 8px;
            padding: 4px 9px;
        }
        .plat-info {
            font-size: 12px;
            color: var(--text-weak);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding-left: 4px;
        }
        .rk-more {
            margin-top: 15px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            font-weight: 700;
            color: var(--brand-violet);
            transition: color .2s ease;
            padding: 6px 2px;
        }
        .rk-more:hover {
            color: var(--brand-pink);
        }
        .rk-more svg {
            transition: transform .2s ease;
        }
        .rk-more:hover svg {
            transform: translateX(3px);
        }

        .rank-side-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            padding: 24px;
        }
        .rank-side-card + .rank-side-card {
            margin-top: 24px;
        }
        .side-card-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .side-card-title span {
            display: inline-flex;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-pink);
        }
        .side-updates {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .side-updates li {
            padding: 15px 0;
            border-bottom: 1px dashed var(--line);
        }
        .side-updates li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }
        .side-updates a {
            display: block;
        }
        .update-name {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 3px;
            transition: color .2s ease;
        }
        .update-genre {
            color: var(--text-weak);
            font-size: 13px;
        }
        .side-updates a:hover .update-name {
            color: var(--brand-pink);
        }
        .chip-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .ui-chip {
            color: var(--text-main);
            background: #F3EFF8;
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 12px;
            transition: all .2s ease;
        }
        .ui-chip:hover {
            background: var(--brand-pink);
            color: #fff;
        }

        .topic-section {
            background: var(--page-bg);
        }
        .topic-grid {
            display: grid;
            grid-template-columns: 1.15fr 1fr 1fr;
            gap: 24px;
        }
        .topic-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            background: #fff;
            border: 1px solid var(--line);
            min-height: 230px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 26px;
            transition: transform .2s ease, box-shadow .2s ease;
        }
        .topic-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .topic-card-head {
            font-size: 12px;
            font-weight: 700;
            color: var(--brand-violet);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .topic-card h3 {
            font-size: 24px;
            font-weight: 800;
        }
        .topic-card p {
            color: var(--text-weak);
            font-size: 14px;
            margin-top: 10px;
        }
        .topic-group-list {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-top: 16px;
        }
        .topic-tag {
            background: #F2EDFB;
            color: var(--text-main);
            border-radius: 8px;
            padding: 4px 10px;
            font-size: 12px;
        }
        .topic-feature {
            background:
                radial-gradient(circle at 88% 18%, rgba(242, 59, 111, 0.3), transparent 42%),
                radial-gradient(circle at 20% 90%, rgba(107, 78, 255, 0.32), transparent 40%),
                linear-gradient(130deg, #241C38 0%, #17132A 70%);
            color: #fff;
        }
        .topic-feature .topic-card-head {
            color: #FF9D96;
        }
        .topic-feature p {
            color: rgba(255, 255, 255, 0.76);
        }
        .topic-stat-row {
            display: flex;
            gap: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 18px;
            padding-top: 15px;
        }
        .topic-stat strong {
            font-size: 22px;
            font-weight: 800;
            display: block;
            color: #fff;
            line-height: 1.2;
        }
        .topic-stat span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.62);
        }

        .process-section {
            background: #fff;
        }
        .step-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            counter-reset: section;
        }
        .step-item {
            position: relative;
            padding: 30px 36px 30px 72px;
            border-right: 1px dashed var(--line);
            counter-increment: section;
        }
        .step-item::before {
            content: counter(section, decimal-leading-zero);
            position: absolute;
            left: 10px;
            top: 28px;
            font-size: 34px;
            font-weight: 900;
            background: var(--grad-brand);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .step-item:last-child {
            border-right: 0;
        }
        .step-item h3 {
            font-size: 18px;
            font-weight: 750;
        }
        .step-item p {
            color: var(--text-weak);
            font-size: 14px;
            margin-top: 8px;
        }

        .update-card-row {
            background: linear-gradient(135deg, #F8F5FF 0%, #FFF1F6 100%);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 28px;
            display: flex;
            gap: 22px;
            margin-top: 26px;
        }
        .update-card-icon {
            flex: none;
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: var(--grad-brand);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 9px 22px rgba(107, 78, 255, 0.24);
        }
        .update-card-row h3 {
            font-size: 19px;
            margin-bottom: 8px;
        }
        .update-card-row p {
            color: var(--text-weak);
            font-size: 15px;
            max-width: 100%;
            line-height: 1.8;
        }
        .update-card-row ul {
            margin: 13px 0 0;
            padding-left: 18px;
            color: var(--text-main);
            display: flex;
            flex-wrap: wrap;
            gap: 4px 26px;
        }
        .update-card-row li {
            font-size: 14px;
        }

        .faq-section {
            background: var(--page-bg);
        }
        .faq-list {
            max-width: 920px;
            margin: 0 auto;
        }
        .custom-accordion .accordion-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 18px !important;
            overflow: hidden;
            margin-bottom: 14px;
            box-shadow: 0 5px 16px rgba(30, 18, 60, 0.03);
        }
        .custom-accordion .accordion-button {
            background: #fff;
            color: var(--text-main);
            font-weight: 700;
            font-size: 16px;
            padding: 19px 22px;
            border-radius: 18px !important;
            box-shadow: none;
        }
        .custom-accordion .accordion-button:not(.collapsed) {
            background: #FDF7FA;
            color: var(--brand-pink);
        }
        .custom-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B4EFF' 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");
            transition: transform .3s ease;
        }
        .custom-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(107, 78, 255, 0.35);
        }
        .custom-accordion .accordion-button:not(.collapsed)::after {
            filter: none;
        }
        .custom-accordion .accordion-body {
            color: var(--text-weak);
            font-size: 15px;
            padding: 6px 22px 24px;
            background: #fff;
            line-height: 1.9;
        }
        .custom-accordion .accordion-button:focus-visible {
            outline: 3px solid rgba(242, 59, 111, 0.3);
            outline-offset: -2px;
        }

        .subnav-cta {
            background: #17132A;
            color: #fff;
            padding: 46px 0;
            background-image:
                radial-gradient(circle at 12% 16%, rgba(242, 59, 111, 0.32), transparent 32%),
                radial-gradient(circle at 88% 80%, rgba(107, 78, 255, 0.42), transparent 40%);
        }
        .adjacent-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .adjacent-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 28px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 180px;
            transition: all .25s ease;
        }
        .adjacent-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.28);
        }
        .adjacent-name {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            letter-spacing: .06em;
            margin-bottom: 8px;
        }
        .adjacent-card h3 {
            font-size: 23px;
            font-weight: 800;
        }
        .adjacent-card p {
            color: rgba(255, 255, 255, 0.66);
            font-size: 14px;
            margin-top: 10px;
            flex: 1;
        }
        .adjacent-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
        }
        .adjacent-link:hover {
            color: var(--brand-pink);
        }

        .site-footer {
            background: var(--ink-bg);
            color: rgba(255, 255, 255, 0.78);
            padding: 62px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.9fr 1fr 1fr;
            gap: 38px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 40px;
        }
        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .footer-brand em {
            font-style: normal;
            color: var(--brand-pink);
        }
        .footer-about {
            color: rgba(255, 255, 255, 0.55);
            font-size: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .site-footer h4 {
            color: #fff;
            font-size: 15px;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 10px;
        }
        .site-footer h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 26px;
            height: 3px;
            border-radius: 99px;
            background: var(--grad-brand);
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 9px;
        }
        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            transition: all .2s ease;
            width: fit-content;
        }
        .footer-links a:hover {
            color: #fff;
            padding-left: 3px;
        }
        .footer-copyright {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            padding-top: 24px;
        }
        .footer-copyright span:nth-child(2) {
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.02em;
        }

        @media (min-width: 1400px) {
            .rank-area {
                flex-basis: calc(66.666% - 12px);
            }
        }

        @media (max-width: 1199.98px) {
            .topic-grid {
                grid-template-columns: 1fr 1fr;
            }
            .topic-feature {
                min-height: 210px;
            }
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 0;
            }
            .ribbon-item:nth-child(2) {
                border-right: 0;
            }
            .ribbon-item:nth-child(n+3) {
                border-top: 1px solid var(--line);
                padding-left: 0;
            }
            .step-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .step-item:nth-child(2) {
                border-right: 0;
            }
            .step-item:nth-child(n+3) {
                border-top: 1px dashed var(--line);
            }
        }

        @media (max-width: 991.98px) {
            .header-inner {
                height: 64px;
                justify-content: center;
            }
            .desktop-menu,
            .header-cta {
                display: none;
            }
            .mobile-tabbar {
                display: block;
            }
            body {
                padding-bottom: 72px;
            }
            .category-hero {
                padding: 80px 0 76px;
            }
            .hero-media {
                max-width: 340px;
            }
            .hero-title {
                font-size: 44px;
            }
            .rank-grid {
                flex-direction: column;
            }
            .rank-side {
                min-width: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .rank-side-card {
                margin-top: 0;
            }
            .info-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .ribbon-item:nth-child(2) {
                border-right: 1px solid var(--line);
            }
            .ribbon-item:nth-child(n+3) {
                border-top: 0;
                padding-left: 28px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .adjacent-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767.98px) {
            .section-pad {
                padding: 52px 0;
            }
            h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 27px;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-lead {
                font-size: 16px;
            }
            .hero-media {
                display: none;
            }
            .info-grid {
                grid-template-columns: 1fr 1fr;
                row-gap: 0;
            }
            .ribbon-item {
                padding: 22px 16px 22px 0;
            }
            .ribbon-item:nth-child(2) {
                border-right: 0;
            }
            .ribbon-item:nth-child(n+3) {
                border-top: 1px solid var(--line);
                padding-left: 0;
            }
            .rank-card {
                padding: 16px;
                gap: 14px;
            }
            .rank-index {
                width: 42px;
                font-size: 30px;
            }
            .rank-media {
                width: 116px;
                height: 76px;
            }
            .rank-name-line h3 {
                font-size: 18px;
            }
            .rank-desc {
                font-size: 14px;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .topic-grid {
                grid-template-columns: 1fr;
            }
            .step-grid {
                grid-template-columns: 1fr;
            }
            .step-item {
                border-right: 0;
                border-bottom: 1px dashed var(--line);
                padding: 22px 12px 22px 64px;
            }
            .step-item:last-child {
                border-bottom: 0;
            }
            .update-card-row {
                padding: 22px;
                flex-wrap: wrap;
            }
            .faq-list {
                margin: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                padding-bottom: 28px;
            }
            .footer-copyright {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 575.98px) {
            .rank-grid {
                gap: 18px;
            }
            .rank-card {
                display: grid;
                grid-template-columns: 38px 98px 1fr;
                grid-template-areas: "no media body" "no media body";
                gap: 0 12px;
                padding: 14px;
            }
            .rank-index {
                grid-area: no;
                width: auto;
                align-self: center;
                font-size: 24px;
                text-align: left;
            }
            .rank-media {
                grid-area: media;
                width: 98px;
                height: 72px;
            }
            .rank-content {
                grid-area: body;
                display: flex;
                flex-direction: column;
                justify-content: center;
                min-width: 0;
            }
            .rank-name-line {
                gap: 6px;
            }
            .rank-name-line h3 {
                font-size: 16px;
            }
            .rank-desc {
                margin-top: 5px;
                font-size: 13px;
            }
            .rank-tags {
                margin-top: 8px;
            }
            .live-tag {
                padding: 4px 7px;
                font-size: 11px;
            }
            .rk-more {
                display: none;
            }
            .rank-side {
                display: flex;
                flex-direction: column;
            }
            .rank-side-card {
                width: 100%;
            }
            .adjacent-card {
                padding: 22px;
                min-height: 160px;
            }
            .poster-note {
                display: none;
            }
            .hero-behaviors .mini-pill {
                padding: 6px 11px;
            }
        }
