/* roulang page: index */
:root {
            --score-purple: #6A2BE8;
            --score-purple-light: #8B4DFF;
            --score-teal: #00E6A8;
            --score-amber: #FFB020;
            --score-bg: #0D0B14;
            --score-card: #171320;
            --score-inset: #1F1A2B;
            --score-text: #F5F2FF;
            --score-text-muted: #C9C3D8;
            --score-text-faint: #8E879F;
            --score-border: rgba(255, 255, 255, 0.08);
            --score-border-strong: rgba(255, 255, 255, 0.14);
            --score-radius-lg: 16px;
            --score-radius-md: 14px;
            --score-radius-sm: 10px;
            --score-radius-xs: 6px;
            --score-shadow: 0 10px 30px rgba(106, 43, 232, 0.14);
            --score-shadow-hover: 0 16px 44px rgba(106, 43, 232, 0.22);
            --score-font-display: "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Noto Sans SC", sans-serif;
            --score-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --score-transition: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--score-font-body);
            font-size: 15px;
            line-height: 1.75;
            color: var(--score-text);
            background-color: var(--score-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--score-teal);
            text-decoration: none;
            transition: color var(--score-transition);
        }

        a:hover,
        a:focus {
            color: #4dffc4;
            text-decoration: none;
        }

        a:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
        }

        .score-container {
            max-width: 1180px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header / Nav - Landing 极简单 CTA */
        .score-header {
            position: sticky;
            top: 0;
            z-index: 100;
            height: 64px;
            display: flex;
            align-items: center;
            background: rgba(13, 11, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--score-border);
        }

        .score-header .score-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .score-logo {
            font-family: var(--score-font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--score-text);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.2;
            transition: opacity var(--score-transition);
        }

        .score-logo:hover {
            opacity: 0.85;
            color: var(--score-text);
        }

        .score-logo .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--score-purple), var(--score-purple-light));
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .score-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 18px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid transparent;
            transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
            white-space: nowrap;
            cursor: pointer;
        }

        .score-nav-cta:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            transform: translateY(-1px);
        }

        .score-nav-cta:active {
            transform: scale(0.97);
        }

        /* Hero */
        .score-hero {
            position: relative;
            padding: 72px 0 60px;
            background:
                radial-gradient(ellipse at 30% 25%, rgba(106, 43, 232, 0.22), transparent 55%),
                radial-gradient(ellipse at 75% 60%, rgba(0, 230, 168, 0.08), transparent 50%),
                var(--score-bg);
            overflow: hidden;
        }

        .score-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: 0;
        }

        .score-hero .score-container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .score-hero-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .score-hero h1 {
            font-family: var(--score-font-display);
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--score-text);
            letter-spacing: 0.01em;
            margin: 0;
        }

        .score-hero h1 .highlight {
            background: linear-gradient(135deg, var(--score-purple-light), var(--score-teal));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .score-hero-subtitle {
            font-size: 1.05rem;
            color: var(--score-text-muted);
            line-height: 1.7;
            max-width: 520px;
            margin: 0;
        }

        .score-hero-description {
            font-size: 0.95rem;
            color: var(--score-text-faint);
            line-height: 1.8;
            max-width: 560px;
            margin: 0;
        }

        .score-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 4px;
        }

        .score-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 46px;
            padding: 0 20px;
            border-radius: var(--score-radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition), transform var(--score-transition), box-shadow var(--score-transition);
            border: 1px solid transparent;
            text-decoration: none;
            white-space: nowrap;
        }

        .score-btn:active {
            transform: scale(0.97);
        }

        .score-btn-primary {
            background: var(--score-purple);
            color: #fff;
            border-color: var(--score-purple);
            box-shadow: 0 4px 18px rgba(106, 43, 232, 0.35);
        }

        .score-btn-primary:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            box-shadow: 0 6px 24px rgba(0, 230, 168, 0.3);
            text-decoration: none;
        }

        .score-btn-secondary {
            background: transparent;
            color: var(--score-text);
            border-color: rgba(255, 255, 255, 0.22);
        }

        .score-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.35);
            color: var(--score-text);
            text-decoration: none;
        }

        .score-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .score-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: var(--score-radius-xs);
            background: rgba(106, 43, 232, 0.18);
            border: 1px solid rgba(106, 43, 232, 0.5);
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--score-purple-light);
            letter-spacing: 0.02em;
            line-height: 1.5;
        }

        .score-badge.teal {
            background: rgba(0, 230, 168, 0.12);
            border-color: rgba(0, 230, 168, 0.4);
            color: var(--score-teal);
        }

        .score-badge.amber {
            background: rgba(255, 176, 32, 0.12);
            border-color: rgba(255, 176, 32, 0.4);
            color: var(--score-amber);
        }

        .score-hero-visual {
            position: relative;
            border-radius: var(--score-radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            aspect-ratio: 4 / 3;
            background: var(--score-inset);
            box-shadow: var(--score-shadow);
        }

        .score-hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .score-hero-visual:hover img {
            transform: scale(1.03);
        }

        .score-hero-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 11, 20, 0.05) 0%, rgba(13, 11, 20, 0.35) 100%);
            pointer-events: none;
        }

        .score-hero-subscribe {
            display: flex;
            gap: 10px;
            margin-top: 6px;
            max-width: 400px;
        }

        .score-hero-subscribe input {
            flex: 1;
            height: 44px;
            background: rgba(23, 19, 32, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: var(--score-radius-sm);
            padding: 0 16px;
            color: var(--score-text);
            font-size: 0.9rem;
            transition: border-color var(--score-transition);
        }

        .score-hero-subscribe input::placeholder {
            color: var(--score-text-faint);
        }

        .score-hero-subscribe input:focus {
            outline: none;
            border-color: var(--score-teal);
        }

        .score-hero-subscribe .score-btn {
            height: 44px;
            flex-shrink: 0;
            padding: 0 18px;
        }

        /* Section通用 */
        .score-section {
            padding: 56px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .score-section.alt-bg {
            background-color: rgba(23, 19, 32, 0.5);
        }

        .score-section-header {
            margin-bottom: 32px;
        }

        .score-section-header h2 {
            font-family: var(--score-font-display);
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--score-text);
            line-height: 1.35;
            margin: 0 0 10px;
            letter-spacing: 0.01em;
        }

        .score-section-header p {
            font-size: 0.95rem;
            color: var(--score-text-muted);
            line-height: 1.7;
            max-width: 680px;
            margin: 0;
        }

        /* 卖点三连 */
        .score-highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .score-highlight-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 26px 22px;
            box-shadow: var(--score-shadow);
            transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
        }

        .score-highlight-card:hover {
            border-color: rgba(0, 230, 168, 0.45);
            box-shadow: var(--score-shadow-hover);
            transform: translateY(-3px);
        }

        .score-highlight-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 14px;
            background: rgba(106, 43, 232, 0.18);
            color: var(--score-purple-light);
        }

        .score-highlight-card h3 {
            font-family: var(--score-font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .score-highlight-card p {
            font-size: 0.88rem;
            color: var(--score-text-muted);
            line-height: 1.65;
            margin: 0;
        }

        /* 场景演示 */
        .score-scene-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .score-scene-text h2 {
            font-family: var(--score-font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 14px;
            line-height: 1.4;
        }

        .score-scene-text p {
            font-size: 0.93rem;
            color: var(--score-text-muted);
            line-height: 1.8;
            margin: 0 0 12px;
        }

        .score-scene-text .scene-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--score-teal);
            background: rgba(0, 230, 168, 0.1);
            border: 1px solid rgba(0, 230, 168, 0.3);
            padding: 3px 10px;
            border-radius: var(--score-radius-xs);
            margin-bottom: 12px;
            letter-spacing: 0.03em;
        }

        .score-scene-visual {
            border-radius: var(--score-radius-md);
            overflow: hidden;
            border: 1px solid var(--score-border);
            aspect-ratio: 16 / 10;
            background: var(--score-inset);
            box-shadow: var(--score-shadow);
        }

        .score-scene-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 数据墙 */
        .score-data-wall {
            background: var(--score-inset);
            border-radius: var(--score-radius-lg);
            padding: 36px 28px;
            border: 1px solid var(--score-border);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .score-data-item .data-value {
            font-family: var(--score-font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--score-teal);
            line-height: 1.2;
            letter-spacing: 0.01em;
        }

        .score-data-item .data-value.amber {
            color: var(--score-amber);
        }

        .score-data-item .data-label {
            font-size: 0.82rem;
            color: var(--score-text-faint);
            margin-top: 4px;
            line-height: 1.5;
        }

        /* 社会认同 */
        .score-trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .score-trust-item {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 18px 16px;
            text-align: center;
            transition: border-color var(--score-transition);
        }

        .score-trust-item:hover {
            border-color: rgba(106, 43, 232, 0.4);
        }

        .score-trust-item .trust-number {
            font-family: var(--score-font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--score-text);
            line-height: 1.3;
        }

        .score-trust-item .trust-text {
            font-size: 0.82rem;
            color: var(--score-text-faint);
            line-height: 1.5;
            margin-top: 4px;
        }

        /* 品牌介绍 */
        .score-brand-section {
            background: linear-gradient(135deg, rgba(106, 43, 232, 0.1), rgba(0, 230, 168, 0.05));
            border-radius: var(--score-radius-lg);
            padding: 40px 32px;
            border: 1px solid rgba(106, 43, 232, 0.25);
        }

        .score-brand-section h2 {
            font-family: var(--score-font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 16px;
        }

        .score-brand-section p {
            font-size: 0.93rem;
            color: var(--score-text-muted);
            line-height: 1.9;
            margin: 0 0 12px;
            max-width: 860px;
        }

        .score-brand-section p:last-child {
            margin-bottom: 0;
        }

        /* 分类入口 */
        .score-category-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .score-category-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 24px 16px;
            min-height: 130px;
            transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
        }

        .score-category-card:hover {
            border-color: rgba(0, 230, 168, 0.4);
            box-shadow: var(--score-shadow-hover);
            transform: translateY(-3px);
        }

        .score-category-card .cat-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: rgba(106, 43, 232, 0.18);
            color: var(--score-purple-light);
        }

        .score-category-card h3 {
            font-family: var(--score-font-display);
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 4px;
            line-height: 1.35;
        }

        .score-category-card span {
            font-size: 0.75rem;
            color: var(--score-text-faint);
            line-height: 1.4;
        }

        /* 对比差异 */
        .score-compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .score-compare-col {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 24px 20px;
        }

        .score-compare-col.highlight-col {
            border-color: rgba(0, 230, 168, 0.35);
            background: linear-gradient(135deg, rgba(106, 43, 232, 0.1), rgba(0, 230, 168, 0.06));
        }

        .score-compare-col h3 {
            font-family: var(--score-font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 14px;
            line-height: 1.4;
        }

        .score-compare-row {
            display: flex;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            gap: 12px;
            align-items: flex-start;
        }

        .score-compare-row:last-child {
            border-bottom: none;
        }

        .score-compare-row .compare-dim {
            flex-shrink: 0;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--score-text-muted);
            width: 90px;
            line-height: 1.5;
        }

        .score-compare-row .compare-val {
            font-size: 0.85rem;
            color: var(--score-text);
            line-height: 1.6;
        }

        .score-compare-row .compare-val.good {
            color: var(--score-teal);
        }

        .score-compare-row .compare-val.bad {
            color: var(--score-amber);
        }

        /* 新闻中心 */
        .score-news-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .score-news-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
        }

        .score-news-card:hover {
            border-color: rgba(106, 43, 232, 0.4);
            box-shadow: var(--score-shadow-hover);
            transform: translateY(-3px);
        }

        .score-news-thumb {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--score-inset);
        }

        .score-news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .score-news-card:hover .score-news-thumb img {
            transform: scale(1.05);
        }

        .score-news-body {
            padding: 16px 18px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .score-news-date {
            font-size: 0.78rem;
            color: var(--score-text-faint);
            letter-spacing: 0.02em;
            margin-bottom: 8px;
        }

        .score-news-body h3 {
            font-family: var(--score-font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 8px;
            line-height: 1.45;
        }

        .score-news-body p {
            font-size: 0.85rem;
            color: var(--score-text-muted);
            line-height: 1.65;
            margin: 0 0 12px;
            flex: 1;
        }

        .score-news-body .score-btn {
            height: 34px;
            padding: 0 14px;
            font-size: 0.8rem;
            align-self: flex-start;
        }

        /* 赛程快照 */
        .score-schedule-list {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
        }

        .score-schedule-row {
            display: grid;
            grid-template-columns: 110px 1fr auto;
            gap: 16px;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background var(--score-transition);
        }

        .score-schedule-row:last-child {
            border-bottom: none;
        }

        .score-schedule-row:hover {
            background: rgba(106, 43, 232, 0.06);
        }

        .score-schedule-time {
            font-size: 0.82rem;
            color: var(--score-amber);
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .score-schedule-matchup {
            font-size: 0.93rem;
            color: var(--score-text);
            font-weight: 500;
            line-height: 1.5;
        }

        .score-schedule-score {
            font-family: var(--score-font-display);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--score-teal);
            letter-spacing: 0.05em;
        }

        .score-schedule-score.live {
            color: var(--score-amber);
            animation: pulse-dot 1.6s infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* 战队/选手展示 */
        .score-roster-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .score-roster-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
        }

        .score-roster-card:hover {
            border-color: rgba(0, 230, 168, 0.4);
            box-shadow: var(--score-shadow-hover);
            transform: translateY(-3px);
        }

        .score-roster-thumb {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: var(--score-inset);
        }

        .score-roster-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .score-roster-card:hover .score-roster-thumb img {
            transform: scale(1.05);
        }

        .score-roster-body {
            padding: 14px 16px 16px;
        }

        .score-roster-body h3 {
            font-family: var(--score-font-display);
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 4px;
            line-height: 1.4;
        }

        .score-roster-body p {
            font-size: 0.8rem;
            color: var(--score-text-faint);
            line-height: 1.5;
            margin: 0;
        }

        .score-roster-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: var(--score-radius-xs);
            background: rgba(106, 43, 232, 0.16);
            color: var(--score-purple-light);
            border: 1px solid rgba(106, 43, 232, 0.35);
            margin-bottom: 8px;
        }

        /* 三步上手 */
        .score-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            counter-reset: step-counter;
        }

        .score-step-item {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 24px 20px;
            position: relative;
            transition: border-color var(--score-transition), transform var(--score-transition);
        }

        .score-step-item:hover {
            border-color: rgba(106, 43, 232, 0.4);
            transform: translateY(-3px);
        }

        .score-step-number {
            font-family: var(--score-font-display);
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--score-purple-light), var(--score-teal));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            line-height: 1;
            margin-bottom: 10px;
        }

        .score-step-item h3 {
            font-family: var(--score-font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .score-step-item p {
            font-size: 0.85rem;
            color: var(--score-text-muted);
            line-height: 1.65;
            margin: 0;
        }

        /* FAQ */
        .score-faq-list {
            max-width: 760px;
        }

        .score-faq-item {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-sm);
            margin-bottom: 10px;
            overflow: hidden;
            transition: border-color var(--score-transition);
        }

        .score-faq-item:hover {
            border-color: rgba(106, 43, 232, 0.35);
        }

        .score-faq-question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 16px 20px;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--score-text);
            line-height: 1.5;
            transition: color var(--score-transition);
        }

        .score-faq-question:hover {
            color: var(--score-teal);
        }

        .score-faq-question .faq-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--score-purple-light);
            transition: transform var(--score-transition);
            background: rgba(106, 43, 232, 0.14);
        }

        .score-faq-item.open .score-faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .score-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
        }

        .score-faq-item.open .score-faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }

        .score-faq-answer p {
            font-size: 0.85rem;
            color: var(--score-text-muted);
            line-height: 1.7;
            margin: 0;
            padding-left: 12px;
            border-left: 3px solid rgba(0, 230, 168, 0.4);
        }

        /* 保障条 */
        .score-assurance-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .score-assurance-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-sm);
            padding: 14px 16px;
            font-size: 0.85rem;
            color: var(--score-text-muted);
            line-height: 1.5;
            transition: border-color var(--score-transition);
        }

        .score-assurance-item:hover {
            border-color: rgba(0, 230, 168, 0.35);
        }

        .score-assurance-item .assurance-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            background: rgba(0, 230, 168, 0.12);
            color: var(--score-teal);
            font-weight: 700;
        }

        /* 底部固定转化条 */
        .score-fixed-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 200;
            background: rgba(13, 11, 20, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(106, 43, 232, 0.3);
            padding: 12px 0;
            display: none;
        }

        .score-fixed-cta .score-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .score-fixed-cta .cta-text {
            font-size: 0.9rem;
            color: var(--score-text-muted);
            line-height: 1.5;
            margin: 0;
        }

        .score-fixed-cta .score-btn {
            flex-shrink: 0;
            height: 40px;
            padding: 0 18px;
            font-size: 0.85rem;
        }

        /* Footer */
        .score-footer {
            background: #0A080F;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 36px 0 60px;
            margin-bottom: 56px;
        }

        .score-footer .score-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: center;
        }

        .score-footer .footer-logo {
            font-family: var(--score-font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--score-text);
            line-height: 1.3;
        }

        .score-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
            align-items: center;
        }

        .score-footer .footer-links a {
            color: var(--score-text-faint);
            font-size: 0.82rem;
            transition: color var(--score-transition);
        }

        .score-footer .footer-links a:hover {
            color: var(--score-teal);
        }

        .score-footer .footer-copy {
            font-size: 0.78rem;
            color: var(--score-text-faint);
            line-height: 1.6;
        }

        /* 响应式 */
        @media (max-width: 1023px) {
            .score-hero .score-container {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .score-hero h1 {
                font-size: 2rem;
            }

            .score-highlights-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .score-scene-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .score-data-wall {
                grid-template-columns: repeat(2, 1fr);
            }

            .score-trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .score-category-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .score-news-list {
                grid-template-columns: repeat(2, 1fr);
            }

            .score-roster-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .score-assurance-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .score-steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .score-header {
                height: 56px;
            }

            .score-logo {
                font-size: 1.05rem;
            }

            .score-logo .logo-mark {
                width: 28px;
                height: 28px;
                font-size: 13px;
                border-radius: 6px;
            }

            .score-nav-cta {
                height: 36px;
                padding: 0 14px;
                font-size: 0.82rem;
            }

            .score-hero {
                padding: 44px 0 40px;
            }

            .score-hero h1 {
                font-size: 1.55rem;
                line-height: 1.35;
            }

            .score-hero-subtitle {
                font-size: 0.92rem;
            }

            .score-hero-description {
                font-size: 0.85rem;
            }

            .score-hero-actions {
                flex-direction: column;
                gap: 10px;
            }

            .score-hero-actions .score-btn {
                width: 100%;
            }

            .score-hero-subscribe {
                flex-direction: column;
            }

            .score-hero-subscribe input {
                width: 100%;
            }

            .score-hero-subscribe .score-btn {
                width: 100%;
            }

            .score-section {
                padding: 36px 0;
            }

            .score-section-header h2 {
                font-size: 1.3rem;
            }

            .score-highlights-grid {
                grid-template-columns: 1fr;
            }

            .score-data-wall {
                grid-template-columns: repeat(2, 1fr);
                padding: 24px 16px;
                gap: 14px;
            }

            .score-data-item .data-value {
                font-size: 1.5rem;
            }

            .score-trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .score-category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .score-category-card {
                min-height: 100px;
                padding: 18px 12px;
            }

            .score-news-list {
                grid-template-columns: 1fr;
            }

            .score-roster-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .score-compare-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .score-schedule-row {
                grid-template-columns: 80px 1fr;
                gap: 10px;
                padding: 12px 14px;
            }

            .score-schedule-score {
                grid-column: 1 / -1;
                text-align: right;
                font-size: 0.95rem;
            }

            .score-steps-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .score-assurance-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .score-fixed-cta {
                padding: 10px 0;
            }

            .score-fixed-cta .cta-text {
                display: none;
            }

            .score-fixed-cta .score-btn {
                width: 100%;
                height: 40px;
                font-size: 0.9rem;
            }

            .score-footer {
                padding: 28px 0 70px;
                margin-bottom: 52px;
            }
        }

        @media (max-width: 575px) {
            .score-hero h1 {
                font-size: 1.35rem;
            }

            .score-data-wall {
                grid-template-columns: 1fr 1fr;
            }

            .score-category-grid {
                grid-template-columns: 1fr 1fr;
            }

            .score-roster-grid {
                grid-template-columns: 1fr 1fr;
            }

            .score-trust-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Foundation覆盖 */
        .score-container .row {
            max-width: none;
        }

        .score-container .columns {
            padding-left: 0;
            padding-right: 0;
        }

        button.score-btn,
        a.score-btn {
            border: 1px solid transparent;
        }

        a.score-btn-secondary {
            border-color: rgba(255, 255, 255, 0.22);
        }

/* roulang page: category1 */
:root {
            --score-purple: #6A2BE8;
            --score-purple-light: #8B4DFF;
            --score-teal: #00E6A8;
            --score-amber: #FFB020;
            --score-bg: #0D0B14;
            --score-card: #171320;
            --score-inset: #1F1A2B;
            --score-text: #F5F2FF;
            --score-text-muted: #C9C3D8;
            --score-text-faint: #8E879F;
            --score-border: rgba(255, 255, 255, 0.08);
            --score-border-strong: rgba(255, 255, 255, 0.14);
            --score-radius-lg: 16px;
            --score-radius-md: 14px;
            --score-radius-sm: 10px;
            --score-radius-xs: 6px;
            --score-shadow: 0 10px 30px rgba(106, 43, 232, 0.14);
            --score-shadow-hover: 0 16px 44px rgba(106, 43, 232, 0.22);
            --score-font-display: "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Noto Sans SC", sans-serif;
            --score-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --score-transition: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--score-font-body);
            font-size: 15px;
            line-height: 1.75;
            color: var(--score-text);
            background-color: var(--score-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
        }

        a {
            color: var(--score-teal);
            text-decoration: none;
            transition: color var(--score-transition);
        }

        a:hover,
        a:focus {
            color: #4dffc4;
            text-decoration: none;
        }

        a:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
        }

        .score-container {
            max-width: 1180px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header/Nav */
        .score-header {
            position: sticky;
            top: 0;
            z-index: 100;
            height: 64px;
            display: flex;
            align-items: center;
            background: rgba(13, 11, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--score-border);
        }

        .score-header .score-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .score-logo {
            font-family: var(--score-font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--score-text);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.2;
            transition: opacity var(--score-transition);
        }

        .score-logo:hover {
            opacity: 0.85;
            color: var(--score-text);
        }

        .score-logo .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--score-purple), var(--score-purple-light));
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .score-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 18px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid transparent;
            transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
            white-space: nowrap;
            cursor: pointer;
        }

        .score-nav-cta:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            transform: translateY(-1px);
        }

        .score-nav-cta:active {
            transform: scale(0.97);
        }

        /* Breadcrumb */
        .score-breadcrumb {
            padding: 18px 0 8px;
            font-size: 0.85rem;
            color: var(--score-text-faint);
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .score-breadcrumb a {
            color: var(--score-text-muted);
            transition: color var(--score-transition);
        }

        .score-breadcrumb a:hover {
            color: var(--score-teal);
        }

        .score-breadcrumb .sep {
            color: var(--score-text-faint);
            font-size: 0.8rem;
        }

        .score-breadcrumb .current {
            color: var(--score-teal);
            font-weight: 600;
        }

        /* Page Header (Category H1 area) */
        .score-page-header {
            padding: 36px 0 20px;
            border-bottom: 1px solid var(--score-border);
            margin-bottom: 40px;
        }

        .score-page-header h1 {
            font-family: var(--score-font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 12px;
            letter-spacing: 0.01em;
            line-height: 1.3;
        }

        .score-page-header .score-page-desc {
            font-size: 0.95rem;
            color: var(--score-text-muted);
            max-width: 760px;
            line-height: 1.8;
            margin: 0;
        }

        /* Section common */
        .score-section {
            padding: 24px 0 48px;
        }

        .score-section-header {
            margin-bottom: 24px;
        }

        .score-section-header h2 {
            font-family: var(--score-font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 8px;
            letter-spacing: 0.01em;
            line-height: 1.35;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .score-section-header h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 22px;
            background: linear-gradient(180deg, var(--score-purple), var(--score-teal));
            border-radius: 2px;
            flex-shrink: 0;
        }

        .score-section-header p {
            font-size: 0.9rem;
            color: var(--score-text-faint);
            margin: 0;
        }

        /* Card grid for battle reports */
        .score-report-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        @media (min-width: 1024px) {
            .score-report-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .score-report-grid {
                grid-template-columns: 1fr;
            }
        }

        .score-report-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            box-shadow: var(--score-shadow);
            transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
            display: flex;
            flex-direction: column;
        }

        .score-report-card:hover {
            border-color: rgba(0, 230, 168, 0.5);
            box-shadow: var(--score-shadow-hover);
            transform: translateY(-3px);
        }

        .score-report-card-media {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--score-inset);
            border-bottom: 1px solid var(--score-border);
        }

        .score-report-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .score-report-card:hover .score-report-card-media img {
            transform: scale(1.04);
        }

        .score-report-card-media .score-badge-date {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(13, 11, 20, 0.85);
            backdrop-filter: blur(8px);
            color: var(--score-teal);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--score-radius-xs);
            border: 1px solid rgba(0, 230, 168, 0.35);
            letter-spacing: 0.02em;
        }

        .score-report-card-body {
            padding: 20px 22px 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .score-report-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }

        .score-tag {
            display: inline-block;
            padding: 3px 10px;
            font-size: 0.72rem;
            font-weight: 600;
            border-radius: var(--score-radius-xs);
            background: rgba(106, 43, 232, 0.18);
            border: 1px solid rgba(106, 43, 232, 0.5);
            color: #B794F6;
            letter-spacing: 0.02em;
            transition: background var(--score-transition), border-color var(--score-transition);
        }

        .score-tag.teal {
            background: rgba(0, 230, 168, 0.12);
            border-color: rgba(0, 230, 168, 0.4);
            color: var(--score-teal);
        }

        .score-tag.amber {
            background: rgba(255, 176, 32, 0.12);
            border-color: rgba(255, 176, 32, 0.4);
            color: var(--score-amber);
        }

        .score-report-card-body h3 {
            font-family: var(--score-font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 10px;
            line-height: 1.5;
            letter-spacing: 0.01em;
        }

        .score-report-card-body p {
            font-size: 0.88rem;
            color: var(--score-text-muted);
            line-height: 1.75;
            margin: 0 0 16px;
            flex: 1;
        }

        .score-btn-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 36px;
            padding: 0 14px;
            border-radius: var(--score-radius-xs);
            background: transparent;
            border: 1px solid var(--score-border-strong);
            color: var(--score-text-muted);
            font-size: 0.82rem;
            font-weight: 600;
            transition: all var(--score-transition);
            align-self: flex-start;
            cursor: pointer;
            text-decoration: none;
        }

        .score-btn-link:hover {
            border-color: var(--score-teal);
            color: var(--score-teal);
            background: rgba(0, 230, 168, 0.06);
        }

        .score-btn-link:active {
            transform: scale(0.97);
        }

        /* Hot list */
        .score-hot-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        @media (max-width: 1023px) {
            .score-hot-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .score-hot-list {
                grid-template-columns: 1fr;
            }
        }

        .score-hot-item {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-sm);
            padding: 16px 18px;
            box-shadow: 0 6px 20px rgba(106, 43, 232, 0.08);
            transition: border-color var(--score-transition), transform var(--score-transition);
        }

        .score-hot-item:hover {
            border-color: rgba(106, 43, 232, 0.6);
            transform: translateY(-2px);
        }

        .score-hot-item .hot-rank {
            font-family: var(--score-font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--score-purple-light);
            margin-bottom: 4px;
            line-height: 1;
        }

        .score-hot-item .hot-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--score-text);
            margin-bottom: 4px;
            line-height: 1.5;
        }

        .score-hot-item .hot-meta {
            font-size: 0.75rem;
            color: var(--score-text-faint);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .score-hot-item .hot-meta .dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--score-teal);
            flex-shrink: 0;
        }

        /* Tag cloud */
        .score-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 4px;
        }

        .score-tag-cloud a {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            background: var(--score-inset);
            border: 1px solid var(--score-border);
            color: var(--score-text-muted);
            font-size: 0.82rem;
            font-weight: 500;
            transition: all var(--score-transition);
            text-decoration: none;
        }

        .score-tag-cloud a:hover {
            border-color: var(--score-teal);
            color: var(--score-teal);
            background: rgba(0, 230, 168, 0.06);
        }

        /* Subscribe CTA */
        .score-subscribe {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-lg);
            padding: 32px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .score-subscribe-info h3 {
            font-family: var(--score-font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 6px;
        }

        .score-subscribe-info p {
            font-size: 0.88rem;
            color: var(--score-text-faint);
            margin: 0;
        }

        .score-subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            min-width: 280px;
            flex: 0 1 360px;
        }

        .score-input {
            flex: 1;
            min-width: 180px;
            height: 44px;
            padding: 0 14px;
            border-radius: var(--score-radius-sm);
            border: 1px solid var(--score-border-strong);
            background: var(--score-inset);
            color: var(--score-text);
            font-size: 0.88rem;
            transition: border-color var(--score-transition);
        }

        .score-input:focus {
            border-color: var(--score-teal);
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 230, 168, 0.15);
        }

        .score-input::placeholder {
            color: var(--score-text-faint);
        }

        .score-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 44px;
            padding: 0 20px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.88rem;
            border: 1px solid transparent;
            cursor: pointer;
            transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
            white-space: nowrap;
        }

        .score-btn-primary:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            transform: translateY(-1px);
        }

        .score-btn-primary:active {
            transform: scale(0.97);
        }

        /* Preview section */
        .score-preview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        @media (max-width: 1023px) {
            .score-preview-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .score-preview-grid {
                grid-template-columns: 1fr;
            }
        }

        .score-preview-card {
            background: var(--score-inset);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-sm);
            padding: 18px;
            transition: border-color var(--score-transition), transform var(--score-transition);
        }

        .score-preview-card:hover {
            border-color: rgba(255, 176, 32, 0.5);
            transform: translateY(-2px);
        }

        .score-preview-card .preview-label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--score-amber);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .score-preview-card h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--score-text);
            margin: 0 0 6px;
            line-height: 1.5;
        }

        .score-preview-card p {
            font-size: 0.8rem;
            color: var(--score-text-faint);
            margin: 0;
            line-height: 1.65;
        }

        /* Footer */
        .score-footer {
            background: #0A080F;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 36px 0 28px;
            margin-top: 48px;
        }

        .score-footer .footer-logo {
            font-family: var(--score-font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--score-text);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }

        .score-footer .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.82rem;
        }

        .score-footer .footer-links a {
            color: var(--score-text-faint);
            transition: color var(--score-transition);
            text-decoration: none;
        }

        .score-footer .footer-links a:hover {
            color: var(--score-teal);
        }

        .score-footer .footer-copy {
            font-size: 0.78rem;
            color: var(--score-text-faint);
            line-height: 1.7;
            max-width: 600px;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .score-header {
                height: 56px;
            }

            .score-logo {
                font-size: 1.05rem;
            }

            .score-logo .logo-mark {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .score-nav-cta {
                height: 36px;
                padding: 0 14px;
                font-size: 0.8rem;
            }

            .score-page-header {
                padding: 24px 0 16px;
                margin-bottom: 28px;
            }

            .score-page-header h1 {
                font-size: 1.55rem;
            }

            .score-section {
                padding: 16px 0 36px;
            }

            .score-section-header h2 {
                font-size: 1.25rem;
            }

            .score-report-card-body {
                padding: 16px 16px 18px;
            }

            .score-report-card-body h3 {
                font-size: 1rem;
            }

            .score-subscribe {
                padding: 24px 18px;
                flex-direction: column;
                align-items: stretch;
            }

            .score-subscribe-form {
                min-width: 0;
                flex: 1 1 auto;
            }
        }

        @media (max-width: 575px) {
            .score-page-header h1 {
                font-size: 1.4rem;
            }

            .score-section-header h2 {
                font-size: 1.15rem;
            }

            .score-report-card-body p {
                font-size: 0.82rem;
            }

            .score-footer {
                padding: 28px 0 20px;
            }

            .score-footer .footer-links {
                gap: 8px;
                font-size: 0.75rem;
            }
        }

/* roulang page: category2 */
:root {
            --score-purple: #6A2BE8;
            --score-purple-light: #8B4DFF;
            --score-teal: #00E6A8;
            --score-amber: #FFB020;
            --score-bg: #0D0B14;
            --score-card: #171320;
            --score-inset: #1F1A2B;
            --score-text: #F5F2FF;
            --score-text-muted: #C9C3D8;
            --score-text-faint: #8E879F;
            --score-border: rgba(255, 255, 255, 0.08);
            --score-border-strong: rgba(255, 255, 255, 0.14);
            --score-radius-lg: 16px;
            --score-radius-md: 14px;
            --score-radius-sm: 10px;
            --score-radius-xs: 6px;
            --score-shadow: 0 10px 30px rgba(106, 43, 232, 0.14);
            --score-shadow-hover: 0 16px 44px rgba(106, 43, 232, 0.22);
            --score-font-display: "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Noto Sans SC", sans-serif;
            --score-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --score-transition: 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--score-font-body);
            font-size: 15px;
            line-height: 1.75;
            color: var(--score-text);
            background-color: var(--score-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        a {
            color: var(--score-teal);
            text-decoration: none;
            transition: color var(--score-transition);
        }
        a:hover,
        a:focus {
            color: #4dffc4;
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
        }

        .score-container {
            max-width: 1180px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header / Nav */
        .score-header {
            position: sticky;
            top: 0;
            z-index: 100;
            height: 64px;
            display: flex;
            align-items: center;
            background: rgba(13, 11, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--score-border);
        }
        .score-header .score-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            flex-wrap: nowrap;
        }
        .score-logo {
            font-family: var(--score-font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--score-text);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.2;
            transition: opacity var(--score-transition);
        }
        .score-logo:hover {
            opacity: 0.85;
            color: var(--score-text);
        }
        .score-logo .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--score-purple), var(--score-purple-light));
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .score-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 18px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid transparent;
            transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
            white-space: nowrap;
            cursor: pointer;
        }
        .score-nav-cta:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            transform: translateY(-1px);
        }
        .score-nav-cta:active {
            transform: scale(0.97);
        }

        /* Category Header */
        .score-cat-header {
            position: relative;
            padding: 56px 0 44px;
            background:
                radial-gradient(ellipse at 25% 30%, rgba(106, 43, 232, 0.18), transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(0, 230, 168, 0.06), transparent 45%),
                var(--score-bg);
            border-bottom: 1px solid var(--score-border);
            overflow: hidden;
        }
        .score-cat-header .score-cat-bg-img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.12;
            z-index: 0;
            pointer-events: none;
        }
        .score-cat-header .score-container {
            position: relative;
            z-index: 1;
        }
        .score-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--score-text-faint);
            margin-bottom: 18px;
            flex-wrap: wrap;
        }
        .score-breadcrumb a {
            color: var(--score-text-muted);
            transition: color var(--score-transition);
        }
        .score-breadcrumb a:hover {
            color: var(--score-teal);
        }
        .score-breadcrumb .crumb-sep {
            color: var(--score-text-faint);
            opacity: 0.7;
        }
        .score-breadcrumb .crumb-current {
            color: var(--score-teal);
            font-weight: 500;
        }
        .score-cat-header h1 {
            font-family: var(--score-font-display);
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 14px;
            line-height: 1.25;
            letter-spacing: 0.01em;
        }
        .score-cat-header .cat-lede {
            font-size: 0.98rem;
            color: var(--score-text-muted);
            max-width: 720px;
            line-height: 1.8;
            margin: 0;
        }

        /* Section Base */
        .score-section {
            padding: 48px 0;
        }
        .score-section-alt {
            background: rgba(23, 19, 32, 0.45);
            border-top: 1px solid var(--score-border);
            border-bottom: 1px solid var(--score-border);
        }
        .score-section-head {
            margin-bottom: 28px;
        }
        .score-section-head .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--score-teal);
            background: rgba(0, 230, 168, 0.1);
            border: 1px solid rgba(0, 230, 168, 0.3);
            border-radius: var(--score-radius-xs);
            padding: 3px 10px;
            margin-bottom: 10px;
        }
        .score-section-head h2 {
            font-family: var(--score-font-display);
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 8px;
            line-height: 1.35;
        }
        .score-section-head .section-sub {
            font-size: 0.9rem;
            color: var(--score-text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* Ranking Bars */
        .score-ranking-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .score-rank-bar {
            display: grid;
            grid-template-columns: 68px 1fr auto;
            align-items: center;
            gap: 16px;
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 16px 20px;
            transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .score-rank-bar::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--score-text-faint);
            border-radius: 0 3px 3px 0;
            transition: background var(--score-transition);
        }
        .score-rank-bar:hover {
            border-color: rgba(0, 230, 168, 0.45);
            box-shadow: var(--score-shadow-hover);
            transform: translateY(-2px);
        }
        .score-rank-bar:hover::before {
            background: var(--score-teal);
        }
        .score-rank-bar.rank-top1::before {
            background: var(--score-amber);
            width: 4px;
        }
        .score-rank-bar.rank-top2::before {
            background: #C0C0C0;
            width: 4px;
        }
        .score-rank-bar.rank-top3::before {
            background: #CD7F32;
            width: 4px;
        }
        .rank-number {
            font-family: var(--score-font-display);
            font-size: 1.6rem;
            font-weight: 800;
            text-align: center;
            color: var(--score-text-faint);
            line-height: 1;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--score-radius-sm);
            padding: 10px 0;
        }
        .rank-top1 .rank-number {
            color: var(--score-amber);
        }
        .rank-top2 .rank-number {
            color: #D0D0D0;
        }
        .rank-top3 .rank-number {
            color: #CD9B6A;
        }
        .rank-team-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
            min-width: 0;
        }
        .rank-team-name {
            font-family: var(--score-font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--score-text);
            line-height: 1.3;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .rank-team-name .team-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 7px;
            font-size: 0.78rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--score-purple), var(--score-purple-light));
        }
        .rank-team-meta {
            font-size: 0.78rem;
            color: var(--score-text-faint);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .rank-team-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .rank-team-meta .win-streak {
            color: var(--score-teal);
            font-weight: 600;
        }
        .rank-team-meta .loss-streak {
            color: var(--score-amber);
            font-weight: 600;
        }
        .rank-data {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-shrink: 0;
            flex-wrap: nowrap;
        }
        .rank-data .data-item {
            text-align: center;
            min-width: 64px;
        }
        .rank-data .data-label {
            font-size: 0.7rem;
            color: var(--score-text-faint);
            letter-spacing: 0.03em;
            margin-bottom: 2px;
        }
        .rank-data .data-value {
            font-family: var(--score-font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--score-text);
            line-height: 1.2;
        }
        .rank-data .data-value.highlight-teal {
            color: var(--score-teal);
        }
        .rank-data .data-value.highlight-amber {
            color: var(--score-amber);
        }

        /* Hot Team Cards */
        .score-hot-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .score-hot-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
        }
        .score-hot-card:hover {
            border-color: rgba(0, 230, 168, 0.45);
            box-shadow: var(--score-shadow-hover);
            transform: translateY(-3px);
        }
        .score-hot-card .hot-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid var(--score-border);
        }
        .score-hot-card .hot-body {
            padding: 16px 18px 18px;
        }
        .score-hot-card .hot-name {
            font-family: var(--score-font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0 0 6px;
            line-height: 1.35;
        }
        .score-hot-card .hot-desc {
            font-size: 0.82rem;
            color: var(--score-text-muted);
            line-height: 1.65;
            margin: 0 0 12px;
        }
        .score-hot-card .hot-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 0.72rem;
            color: var(--score-text-faint);
        }
        .score-hot-card .hot-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: var(--score-radius-xs);
            font-size: 0.7rem;
            font-weight: 600;
            background: rgba(106, 43, 232, 0.18);
            border: 1px solid rgba(106, 43, 232, 0.5);
            color: var(--score-purple-light);
        }
        .score-hot-card .hot-tag.tag-teal {
            background: rgba(0, 230, 168, 0.1);
            border: 1px solid rgba(0, 230, 168, 0.35);
            color: var(--score-teal);
        }
        .score-hot-card .hot-tag.tag-amber {
            background: rgba(255, 176, 32, 0.12);
            border: 1px solid rgba(255, 176, 32, 0.35);
            color: var(--score-amber);
        }

        /* Stats Grid */
        .score-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .score-stat-box {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 20px 18px;
            text-align: center;
            transition: border-color var(--score-transition), box-shadow var(--score-transition);
        }
        .score-stat-box:hover {
            border-color: rgba(0, 230, 168, 0.4);
            box-shadow: var(--score-shadow);
        }
        .score-stat-box .stat-label {
            font-size: 0.78rem;
            color: var(--score-text-faint);
            letter-spacing: 0.04em;
            margin-bottom: 6px;
        }
        .score-stat-box .stat-value {
            font-family: var(--score-font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--score-teal);
            line-height: 1.2;
        }
        .score-stat-box .stat-extra {
            font-size: 0.7rem;
            color: var(--score-text-muted);
            margin-top: 4px;
        }

        /* Tag Cloud */
        .score-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .score-tag-cloud .cloud-tag {
            display: inline-flex;
            align-items: center;
            padding: 7px 16px;
            border-radius: var(--score-radius-xs);
            font-size: 0.82rem;
            font-weight: 500;
            background: var(--score-inset);
            border: 1px solid var(--score-border);
            color: var(--score-text-muted);
            transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition);
            cursor: default;
        }
        .score-tag-cloud .cloud-tag:hover {
            background: rgba(106, 43, 232, 0.15);
            border-color: rgba(106, 43, 232, 0.5);
            color: var(--score-text);
        }
        .score-tag-cloud .cloud-tag.tag-teal {
            color: var(--score-teal);
            border-color: rgba(0, 230, 168, 0.3);
            background: rgba(0, 230, 168, 0.06);
        }
        .score-tag-cloud .cloud-tag.tag-amber {
            color: var(--score-amber);
            border-color: rgba(255, 176, 32, 0.3);
            background: rgba(255, 176, 32, 0.06);
        }

        /* CTA Subscription */
        .score-subscribe-box {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-lg);
            padding: 30px 26px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 14px;
        }
        .score-subscribe-box .sub-title {
            font-family: var(--score-font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0;
        }
        .score-subscribe-box .sub-desc {
            font-size: 0.88rem;
            color: var(--score-text-muted);
            max-width: 440px;
            margin: 0;
            line-height: 1.7;
        }
        .score-subscribe-form {
            display: flex;
            gap: 10px;
            width: 100%;
            max-width: 400px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .score-subscribe-form input[type="email"],
        .score-subscribe-form input[type="text"] {
            flex: 1 1 200px;
            min-width: 0;
            height: 44px;
            background: var(--score-inset);
            border: 1px solid var(--score-border-strong);
            border-radius: var(--score-radius-sm);
            color: var(--score-text);
            padding: 0 14px;
            font-size: 0.9rem;
            transition: border-color var(--score-transition), box-shadow var(--score-transition);
        }
        .score-subscribe-form input:focus {
            border-color: var(--score-teal);
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 230, 168, 0.15);
        }
        .score-subscribe-form .sub-btn {
            height: 44px;
            padding: 0 22px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid transparent;
            cursor: pointer;
            transition: background var(--score-transition), color var(--score-transition), transform var(--score-transition);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .score-subscribe-form .sub-btn:hover {
            background: var(--score-teal);
            color: #0D0B14;
            transform: translateY(-1px);
        }
        .score-subscribe-form .sub-btn:active {
            transform: scale(0.97);
        }

        /* Related Search */
        .score-related-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .score-related-list .rel-link {
            display: inline-flex;
            align-items: center;
            padding: 7px 16px;
            border-radius: var(--score-radius-xs);
            font-size: 0.82rem;
            background: var(--score-inset);
            border: 1px solid var(--score-border);
            color: var(--score-text-muted);
            transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition);
            cursor: default;
        }
        .score-related-list .rel-link:hover {
            background: rgba(0, 230, 168, 0.08);
            border-color: rgba(0, 230, 168, 0.35);
            color: var(--score-teal);
        }

        /* FAQ */
        .score-faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .score-faq-item {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            transition: border-color var(--score-transition);
        }
        .score-faq-item.active {
            border-color: rgba(0, 230, 168, 0.4);
        }
        .score-faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--score-text);
            font-weight: 600;
            font-size: 0.95rem;
            text-align: left;
            line-height: 1.5;
            transition: background var(--score-transition);
        }
        .score-faq-question:hover {
            background: rgba(255, 255, 255, 0.04);
        }
        .score-faq-question .faq-icon {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--score-teal);
            background: rgba(0, 230, 168, 0.08);
            transition: transform var(--score-transition);
        }
        .score-faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        .score-faq-answer {
            padding: 0 18px 16px;
            font-size: 0.88rem;
            color: var(--score-text-muted);
            line-height: 1.7;
            display: none;
        }
        .score-faq-item.active .score-faq-answer {
            display: block;
        }

        /* More button */
        .score-more-row {
            text-align: center;
            margin-top: 24px;
        }
        .score-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 42px;
            padding: 0 26px;
            border-radius: var(--score-radius-sm);
            background: transparent;
            color: var(--score-text-muted);
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid var(--score-border-strong);
            cursor: pointer;
            transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition);
        }
        .score-more-btn:hover {
            background: rgba(255, 255, 255, 0.06);
            color: var(--score-teal);
            border-color: rgba(0, 230, 168, 0.4);
        }

        /* Footer */
        .score-footer {
            background: #0A080F;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 36px 0 28px;
            margin-top: 20px;
        }
        .score-footer .score-container {
            display: flex;
            flex-direction: column;
            gap: 18px;
            align-items: center;
            text-align: center;
        }
        .footer-logo {
            font-family: var(--score-font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--score-text);
            letter-spacing: 0.02em;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 8px 14px;
            font-size: 0.82rem;
        }
        .footer-links a {
            color: var(--score-text-faint);
            transition: color var(--score-transition);
        }
        .footer-links a:hover {
            color: var(--score-teal);
        }
        .footer-copy {
            font-size: 0.78rem;
            color: var(--score-text-faint);
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 767px) {
            .score-header {
                height: 56px;
            }
            .score-header .score-container {
                gap: 8px;
            }
            .score-logo {
                font-size: 1.05rem;
                gap: 6px;
            }
            .score-logo .logo-mark {
                width: 28px;
                height: 28px;
                font-size: 13px;
                border-radius: 7px;
            }
            .score-nav-cta {
                height: 34px;
                padding: 0 14px;
                font-size: 0.8rem;
            }
            .score-cat-header {
                padding: 36px 0 28px;
            }
            .score-cat-header h1 {
                font-size: 1.6rem;
            }
            .score-cat-header .cat-lede {
                font-size: 0.88rem;
            }
            .score-section {
                padding: 32px 0;
            }
            .score-section-head h2 {
                font-size: 1.3rem;
            }
            .score-rank-bar {
                grid-template-columns: 48px 1fr;
                gap: 10px;
                padding: 12px 14px;
            }
            .rank-number {
                font-size: 1.2rem;
                min-width: 36px;
                padding: 8px 0;
            }
            .rank-team-name {
                font-size: 0.95rem;
            }
            .rank-team-meta {
                font-size: 0.7rem;
                gap: 6px;
            }
            .rank-data {
                grid-column: 1 / -1;
                justify-content: flex-end;
                gap: 12px;
                padding-top: 6px;
                border-top: 1px solid var(--score-border);
                margin-top: 2px;
            }
            .rank-data .data-item {
                min-width: 52px;
            }
            .rank-data .data-value {
                font-size: 0.9rem;
            }
            .score-hot-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .score-hot-card .hot-img {
                height: 130px;
            }
            .score-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .score-stat-box {
                padding: 16px 12px;
            }
            .score-stat-box .stat-value {
                font-size: 1.4rem;
            }
            .score-subscribe-box {
                padding: 22px 16px;
            }
            .score-subscribe-form {
                flex-direction: column;
                align-items: stretch;
            }
            .score-subscribe-form input[type="email"],
            .score-subscribe-form input[type="text"] {
                flex: none;
                width: 100%;
            }
            .score-subscribe-form .sub-btn {
                width: 100%;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .score-hot-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .score-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .score-rank-bar {
                grid-template-columns: 58px 1fr auto;
                gap: 14px;
            }
        }

/* roulang page: category3 */
:root {
            --score-purple: #6A2BE8;
            --score-purple-light: #8B4DFF;
            --score-teal: #00E6A8;
            --score-amber: #FFB020;
            --score-bg: #0D0B14;
            --score-card: #171320;
            --score-inset: #1F1A2B;
            --score-text: #F5F2FF;
            --score-text-muted: #C9C3D8;
            --score-text-faint: #8E879F;
            --score-border: rgba(255, 255, 255, 0.08);
            --score-border-strong: rgba(255, 255, 255, 0.14);
            --score-radius-lg: 16px;
            --score-radius-md: 14px;
            --score-radius-sm: 10px;
            --score-radius-xs: 6px;
            --score-shadow: 0 10px 30px rgba(106, 43, 232, 0.14);
            --score-shadow-hover: 0 16px 44px rgba(106, 43, 232, 0.22);
            --score-font-display: "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Noto Sans SC", sans-serif;
            --score-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --score-transition: 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--score-font-body);
            font-size: 15px;
            line-height: 1.75;
            color: var(--score-text);
            background-color: var(--score-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--score-teal);
            text-decoration: none;
            transition: color var(--score-transition);
        }
        a:hover,
        a:focus {
            color: #4dffc4;
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
        }

        .score-container {
            max-width: 1180px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header / Nav — Landing 极简单 CTA */
        .score-header {
            position: sticky;
            top: 0;
            z-index: 100;
            height: 64px;
            display: flex;
            align-items: center;
            background: rgba(13, 11, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--score-border);
        }
        .score-header .score-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        .score-logo {
            font-family: var(--score-font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--score-text);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.2;
            transition: opacity var(--score-transition);
        }
        .score-logo:hover {
            opacity: 0.85;
            color: var(--score-text);
        }
        .score-logo .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--score-purple), var(--score-purple-light));
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .score-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 18px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid transparent;
            transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
            white-space: nowrap;
            cursor: pointer;
        }
        .score-nav-cta:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            transform: translateY(-1px);
        }
        .score-nav-cta:active {
            transform: scale(0.97);
        }

        /* Category H1 Section */
        .score-cat-hero {
            position: relative;
            padding: 48px 0 40px;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(106, 43, 232, 0.16), transparent 55%),
                radial-gradient(ellipse at 70% 70%, rgba(0, 230, 168, 0.06), transparent 50%),
                var(--score-bg);
            border-bottom: 1px solid var(--score-border);
        }
        .score-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--score-text-faint);
            margin-bottom: 14px;
            flex-wrap: wrap;
        }
        .score-breadcrumb a {
            color: var(--score-text-muted);
            transition: color var(--score-transition);
        }
        .score-breadcrumb a:hover {
            color: var(--score-teal);
        }
        .score-breadcrumb .sep {
            color: var(--score-text-faint);
            opacity: 0.6;
        }
        .score-breadcrumb .current {
            color: var(--score-teal);
        }
        .score-cat-hero h1 {
            font-family: var(--score-font-display);
            font-size: 34px;
            font-weight: 700;
            color: var(--score-text);
            margin-bottom: 14px;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }
        .score-cat-hero .cat-desc {
            font-size: 15px;
            color: var(--score-text-muted);
            max-width: 760px;
            line-height: 1.8;
            margin: 0;
        }

        /* Section Common */
        .score-section {
            padding: 48px 0;
        }
        .score-section-title {
            font-family: var(--score-font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--score-text);
            margin-bottom: 8px;
            line-height: 1.35;
            letter-spacing: -0.01em;
        }
        .score-section-sub {
            font-size: 14px;
            color: var(--score-text-faint);
            margin-bottom: 28px;
            line-height: 1.65;
        }
        .score-divider {
            height: 1px;
            background: var(--score-border);
            margin: 0;
            border: none;
        }

        /* Player Data Cards Grid */
        .player-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .player-data-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            box-shadow: var(--score-shadow);
            transition: transform var(--score-transition), box-shadow var(--score-transition), border-color var(--score-transition);
            display: flex;
            flex-direction: column;
        }
        .player-data-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--score-shadow-hover);
            border-color: rgba(0, 230, 168, 0.35);
        }
        .player-data-card .card-media {
            position: relative;
            aspect-ratio: 4 / 3;
            background: var(--score-inset);
            border-bottom: 1px solid var(--score-border);
            overflow: hidden;
        }
        .player-data-card .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .player-data-card:hover .card-media img {
            transform: scale(1.04);
        }
        .player-data-card .card-media .tag-pos {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            background: rgba(13, 11, 20, 0.82);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: var(--score-teal);
            border: 1px solid rgba(0, 230, 168, 0.35);
        }
        .player-data-card .card-media .tag-pos.tag-purple {
            color: var(--score-purple-light);
            border-color: rgba(106, 43, 232, 0.5);
        }
        .player-data-card .card-media .tag-pos.tag-amber {
            color: var(--score-amber);
            border-color: rgba(255, 176, 32, 0.5);
        }
        .player-data-card .card-body {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }
        .player-data-card .player-name {
            font-family: var(--score-font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--score-text);
            line-height: 1.3;
        }
        .player-data-card .player-team {
            font-size: 0.82rem;
            color: var(--score-text-faint);
        }
        .player-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 10px 0;
            border-top: 1px solid var(--score-border);
            border-bottom: 1px solid var(--score-border);
        }
        .player-metrics .metric {}
        .player-metrics .metric-value {
            font-family: var(--score-font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--score-teal);
            line-height: 1.3;
        }
        .player-metrics .metric-label {
            font-size: 0.7rem;
            color: var(--score-text-faint);
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .player-metrics .metric-value.amber {
            color: var(--score-amber);
        }
        .player-metrics .metric-value.purple-light {
            color: var(--score-purple-light);
        }
        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--score-teal);
            transition: color var(--score-transition), gap var(--score-transition);
            cursor: pointer;
        }
        .card-link:hover {
            color: #4dffc4;
            gap: 10px;
        }
        .card-link .arrow {
            font-size: 1rem;
            line-height: 1;
        }

        /* Top Players Ranking */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .ranking-item {
            display: grid;
            grid-template-columns: 48px 48px 1fr auto;
            gap: 14px;
            align-items: center;
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 14px 18px;
            transition: border-color var(--score-transition), box-shadow var(--score-transition);
        }
        .ranking-item:hover {
            border-color: rgba(106, 43, 232, 0.4);
            box-shadow: var(--score-shadow);
        }
        .ranking-item .rank-num {
            font-family: var(--score-font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--score-text-faint);
            line-height: 1;
        }
        .ranking-item:nth-child(1) .rank-num { color: var(--score-amber); }
        .ranking-item:nth-child(2) .rank-num { color: var(--score-text-muted); }
        .ranking-item:nth-child(3) .rank-num { color: #B87333; }
        .ranking-item .rank-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--score-inset);
            border: 2px solid var(--score-border-strong);
            flex-shrink: 0;
        }
        .ranking-item .rank-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .ranking-item .rank-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .ranking-item .rank-name {
            font-weight: 700;
            font-size: 0.98rem;
            color: var(--score-text);
        }
        .ranking-item .rank-team {
            font-size: 0.78rem;
            color: var(--score-text-faint);
        }
        .ranking-item .rank-winrate {
            font-family: var(--score-font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--score-teal);
            white-space: nowrap;
        }
        .ranking-item .rank-winrate .small-label {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--score-text-faint);
            margin-left: 4px;
        }

        /* Data Dimensions */
        .dimension-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .dimension-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 20px;
            text-align: left;
            transition: border-color var(--score-transition), box-shadow var(--score-transition);
        }
        .dimension-card:hover {
            border-color: rgba(0, 230, 168, 0.3);
            box-shadow: var(--score-shadow);
        }
        .dimension-card .dim-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(106, 43, 232, 0.18);
            color: var(--score-purple-light);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .dimension-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--score-text);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .dimension-card p {
            font-size: 0.82rem;
            color: var(--score-text-faint);
            line-height: 1.65;
            margin: 0;
        }

        /* Tag Cloud */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-cloud .tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 500;
            background: rgba(106, 43, 232, 0.15);
            border: 1px solid rgba(106, 43, 232, 0.35);
            color: var(--score-purple-light);
            transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition);
            cursor: default;
        }
        .tag-cloud .tag:hover {
            background: rgba(106, 43, 232, 0.28);
            border-color: rgba(106, 43, 232, 0.55);
        }
        .tag-cloud .tag.teal {
            background: rgba(0, 230, 168, 0.1);
            border-color: rgba(0, 230, 168, 0.35);
            color: var(--score-teal);
        }
        .tag-cloud .tag.amber {
            background: rgba(255, 176, 32, 0.1);
            border-color: rgba(255, 176, 32, 0.35);
            color: var(--score-amber);
        }

        /* Subscribe CTA */
        .subscribe-cta {
            background: linear-gradient(135deg, rgba(106, 43, 232, 0.28), rgba(27, 20, 40, 0.6)), var(--score-card);
            border: 1px solid rgba(106, 43, 232, 0.35);
            border-radius: var(--score-radius-lg);
            padding: 32px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }
        .subscribe-cta .sub-title {
            font-family: var(--score-font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--score-text);
            margin-bottom: 4px;
        }
        .subscribe-cta .sub-desc {
            font-size: 0.85rem;
            color: var(--score-text-muted);
            margin: 0;
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }
        .subscribe-form input[type="email"] {
            height: 46px;
            padding: 0 16px;
            border-radius: var(--score-radius-sm);
            background: var(--score-inset);
            border: 1px solid var(--score-border-strong);
            color: var(--score-text);
            font-size: 0.9rem;
            min-width: 240px;
            transition: border-color var(--score-transition);
        }
        .subscribe-form input[type="email"]::placeholder {
            color: var(--score-text-faint);
        }
        .subscribe-form input[type="email"]:focus {
            border-color: var(--score-teal);
            outline: none;
        }
        .subscribe-form button {
            height: 46px;
            padding: 0 24px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid transparent;
            cursor: pointer;
            transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
        }
        .subscribe-form button:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            transform: translateY(-1px);
        }
        .subscribe-form button:active {
            transform: scale(0.97);
        }

        /* FAQ */
        .score-faq {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .score-faq .faq-item {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            transition: border-color var(--score-transition);
        }
        .score-faq .faq-item:hover {
            border-color: rgba(106, 43, 232, 0.35);
        }
        .score-faq .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--score-text);
            transition: color var(--score-transition);
            user-select: none;
            position: relative;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
        .score-faq .faq-question:hover {
            color: var(--score-teal);
        }
        .score-faq .faq-question .faq-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(106, 43, 232, 0.18);
            color: var(--score-purple-light);
            font-size: 1rem;
            font-weight: 700;
            flex-shrink: 0;
            transition: transform var(--score-transition), background var(--score-transition), color var(--score-transition);
        }
        .score-faq .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            background: rgba(0, 230, 168, 0.18);
            color: var(--score-teal);
        }
        .score-faq .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            font-size: 0.88rem;
            color: var(--score-text-muted);
            line-height: 1.7;
        }
        .score-faq .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 0 20px 18px;
        }
        .score-faq .faq-answer p {
            margin: 0;
        }

        /* Next Preview */
        .preview-banner {
            background: var(--score-inset);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-lg);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .preview-banner .preview-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 600;
            background: rgba(255, 176, 32, 0.15);
            border: 1px solid rgba(255, 176, 32, 0.4);
            color: var(--score-amber);
            white-space: nowrap;
        }
        .preview-banner .preview-text {
            flex: 1;
            font-size: 0.95rem;
            color: var(--score-text-muted);
            line-height: 1.65;
            margin: 0;
        }
        .preview-banner .preview-link {
            font-weight: 600;
            color: var(--score-teal);
            white-space: nowrap;
        }
        .preview-banner .preview-link:hover {
            color: #4dffc4;
        }

        /* Footer */
        .score-footer {
            background: #0A080F;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 36px 0 28px;
            margin-top: 24px;
        }
        .score-footer .footer-logo {
            font-family: var(--score-font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--score-text);
            margin-bottom: 12px;
        }
        .score-footer .footer-links {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .score-footer .footer-links a {
            color: var(--score-text-faint);
            font-size: 0.82rem;
            transition: color var(--score-transition);
        }
        .score-footer .footer-links a:hover {
            color: var(--score-teal);
        }
        .score-footer .footer-copy {
            font-size: 0.75rem;
            color: var(--score-text-faint);
            line-height: 1.7;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 16px;
        }

        /* Responsive */
        @media screen and (max-width: 1023px) {
            .player-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .dimension-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .score-cat-hero h1 {
                font-size: 28px;
            }
        }
        @media screen and (max-width: 767px) {
            .score-header {
                height: 56px;
            }
            .score-logo {
                font-size: 1.05rem;
            }
            .score-nav-cta {
                height: 36px;
                padding: 0 14px;
                font-size: 0.82rem;
            }
            .score-cat-hero {
                padding: 32px 0 28px;
            }
            .score-cat-hero h1 {
                font-size: 26px;
            }
            .score-section {
                padding: 32px 0;
            }
            .score-section-title {
                font-size: 20px;
            }
            .player-grid {
                grid-template-columns: 1fr;
            }
            .dimension-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .dimension-card {
                padding: 14px;
            }
            .ranking-item {
                grid-template-columns: 36px 40px 1fr auto;
                gap: 10px;
                padding: 12px 14px;
            }
            .ranking-item .rank-avatar {
                width: 36px;
                height: 36px;
            }
            .ranking-item .rank-num {
                font-size: 1.2rem;
            }
            .subscribe-cta {
                padding: 22px 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .subscribe-form {
                width: 100%;
            }
            .subscribe-form input[type="email"] {
                min-width: 0;
                flex: 1;
            }
            .preview-banner {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .score-footer .footer-links {
                gap: 8px;
            }
        }
        @media screen and (max-width: 519px) {
            .dimension-grid {
                grid-template-columns: 1fr;
            }
            .score-nav-cta {
                padding: 0 10px;
                font-size: 0.75rem;
                height: 32px;
            }
            .score-logo .logo-mark {
                width: 26px;
                height: 26px;
                font-size: 13px;
                border-radius: 6px;
            }
            .score-logo {
                font-size: 0.95rem;
                gap: 6px;
            }
            .score-cat-hero h1 {
                font-size: 23px;
            }
            .ranking-item {
                grid-template-columns: 32px 36px 1fr;
                grid-template-rows: auto auto;
                gap: 6px 10px;
            }
            .ranking-item .rank-winrate {
                grid-column: 3;
                justify-self: start;
                font-size: 1rem;
            }
            .ranking-item .rank-avatar {
                grid-row: 1 / 3;
            }
            .ranking-item .rank-num {
                grid-row: 1 / 3;
                align-self: center;
            }
        }

/* roulang page: category4 */
:root {
            --score-purple: #6A2BE8;
            --score-purple-light: #8B4DFF;
            --score-teal: #00E6A8;
            --score-amber: #FFB020;
            --score-bg: #0D0B14;
            --score-card: #171320;
            --score-inset: #1F1A2B;
            --score-text: #F5F2FF;
            --score-text-muted: #C9C3D8;
            --score-text-faint: #8E879F;
            --score-border: rgba(255, 255, 255, 0.08);
            --score-border-strong: rgba(255, 255, 255, 0.14);
            --score-radius-lg: 16px;
            --score-radius-md: 14px;
            --score-radius-sm: 10px;
            --score-radius-xs: 6px;
            --score-shadow: 0 10px 30px rgba(106, 43, 232, 0.14);
            --score-shadow-hover: 0 16px 44px rgba(106, 43, 232, 0.22);
            --score-font-display: "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Noto Sans SC", sans-serif;
            --score-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            --score-transition: 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--score-font-body);
            font-size: 15px;
            line-height: 1.75;
            color: var(--score-text);
            background-color: var(--score-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        a {
            color: var(--score-teal);
            text-decoration: none;
            transition: color var(--score-transition);
        }

        a:hover,
        a:focus {
            color: #4dffc4;
            text-decoration: none;
        }

        a:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--score-teal);
            outline-offset: 2px;
        }

        .score-container {
            max-width: 1180px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header / Nav */
        .score-header {
            position: sticky;
            top: 0;
            z-index: 100;
            height: 64px;
            display: flex;
            align-items: center;
            background: rgba(13, 11, 20, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--score-border);
        }

        .score-header .score-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .score-logo {
            font-family: var(--score-font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--score-text);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.2;
            transition: opacity var(--score-transition);
        }

        .score-logo:hover {
            opacity: 0.85;
            color: var(--score-text);
        }

        .score-logo .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--score-purple), var(--score-purple-light));
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .score-nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 18px;
            border-radius: var(--score-radius-sm);
            background: var(--score-purple);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid transparent;
            transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
            white-space: nowrap;
            cursor: pointer;
        }

        .score-nav-cta:hover {
            background: var(--score-teal);
            color: #0D0B14;
            border-color: var(--score-teal);
            transform: translateY(-1px);
        }

        .score-nav-cta:active {
            transform: scale(0.97);
        }

        /* Breadcrumb */
        .score-breadcrumb-wrap {
            padding: 24px 0 0;
            background: transparent;
        }

        .score-breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--score-text-faint);
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .score-breadcrumb li {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
        }

        .score-breadcrumb li:not(:last-child)::after {
            content: '/';
            color: var(--score-text-faint);
            font-size: 0.75rem;
            opacity: 0.7;
        }

        .score-breadcrumb a {
            color: var(--score-text-muted);
            transition: color var(--score-transition);
        }

        .score-breadcrumb a:hover {
            color: var(--score-teal);
        }

        .score-breadcrumb .current {
            color: var(--score-teal);
            font-weight: 600;
        }

        /* Category H1 Section */
        .score-cat-hero {
            padding: 40px 0 32px;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(ellipse at 20% 30%, rgba(106, 43, 232, 0.12), transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(0, 230, 168, 0.06), transparent 50%),
                var(--score-bg);
        }

        .score-cat-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(106, 43, 232, 0.4), rgba(0, 230, 168, 0.3), transparent);
        }

        .score-cat-hero-inner {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .score-cat-hero h1 {
            font-family: var(--score-font-display);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0;
            line-height: 1.25;
            letter-spacing: 0.01em;
        }

        .score-cat-hero .cat-desc {
            font-size: 0.98rem;
            color: var(--score-text-muted);
            max-width: 760px;
            line-height: 1.75;
            margin: 0;
            padding-bottom: 8px;
        }

        .score-cat-hero .cat-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--score-text-faint);
        }

        .score-cat-hero .cat-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(106, 43, 232, 0.12);
            border: 1px solid rgba(106, 43, 232, 0.25);
            color: var(--score-text-muted);
        }

        /* Main sections */
        .score-main {
            padding: 0;
            background: var(--score-bg);
        }

        .score-section {
            padding: 48px 0;
            position: relative;
        }

        .score-section + .score-section {
            border-top: 1px solid var(--score-border);
        }

        .score-section-alt {
            background: rgba(23, 19, 32, 0.5);
        }

        .score-section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .score-section-title {
            font-family: var(--score-font-display);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--score-text);
            margin: 0;
            line-height: 1.3;
            letter-spacing: 0.01em;
            position: relative;
            padding-left: 16px;
        }

        .score-section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 22px;
            border-radius: 2px;
            background: linear-gradient(180deg, var(--score-purple), var(--score-teal));
        }

        .score-section-sub {
            font-size: 0.88rem;
            color: var(--score-text-faint);
            margin: 0;
        }

        /* Timeline schedule list */
        .score-timeline {
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            padding-left: 24px;
        }

        .score-timeline::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: linear-gradient(180deg, var(--score-purple), rgba(106, 43, 232, 0.2), var(--score-teal));
            border-radius: 1px;
        }

        .score-timeline-item {
            position: relative;
            padding-left: 28px;
            cursor: pointer;
            transition: transform var(--score-transition);
        }

        .score-timeline-item:hover {
            transform: translateX(4px);
        }

        .score-timeline-item::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 10px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--score-bg);
            border: 2px solid var(--score-purple-light);
            box-shadow: 0 0 0 4px rgba(106, 43, 232, 0.15);
            transition: border-color var(--score-transition), box-shadow var(--score-transition);
        }

        .score-timeline-item:hover::before {
            border-color: var(--score-teal);
            box-shadow: 0 0 0 6px rgba(0, 230, 168, 0.2);
        }

        .score-timeline-card {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 18px 20px;
            transition: border-color var(--score-transition), box-shadow var(--score-transition), background var(--score-transition);
        }

        .score-timeline-card:hover {
            border-color: rgba(0, 230, 168, 0.5);
            box-shadow: var(--score-shadow);
            background: #1A1625;
        }

        .score-timeline-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 64px;
            text-align: center;
            flex-shrink: 0;
        }

        .score-timeline-date .day {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--score-text);
            line-height: 1.1;
            font-family: var(--score-font-display);
        }

        .score-timeline-date .month {
            font-size: 0.75rem;
            color: var(--score-text-faint);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .score-timeline-match {
            flex: 1;
            min-width: 200px;
        }

        .score-timeline-match .match-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--score-text);
            margin: 0 0 4px;
            line-height: 1.4;
        }

        .score-timeline-match .match-teams {
            font-size: 0.9rem;
            color: var(--score-text-muted);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .score-timeline-match .match-teams .vs {
            color: var(--score-amber);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0 4px;
        }

        .score-timeline-tag {
            font-size: 0.72rem;
            padding: 4px 10px;
            border-radius: var(--score-radius-xs);
            font-weight: 600;
            letter-spacing: 0.02em;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .score-tag-purple {
            background: rgba(106, 43, 232, 0.18);
            border: 1px solid rgba(106, 43, 232, 0.5);
            color: #B79DFF;
        }

        .score-tag-teal {
            background: rgba(0, 230, 168, 0.12);
            border: 1px solid rgba(0, 230, 168, 0.4);
            color: var(--score-teal);
        }

        .score-tag-amber {
            background: rgba(255, 176, 32, 0.14);
            border: 1px solid rgba(255, 176, 32, 0.4);
            color: var(--score-amber);
        }

        .score-tag-muted {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: var(--score-text-faint);
        }

        .score-timeline-time {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--score-teal);
            white-space: nowrap;
            flex-shrink: 0;
            min-width: 48px;
            text-align: right;
        }

        /* Focus cards */
        .score-focus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .score-focus-card {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            overflow: hidden;
            transition: transform var(--score-transition), border-color var(--score-transition), box-shadow var(--score-transition);
            display: flex;
            flex-direction: column;
        }

        .score-focus-card:hover {
            transform: translateY(-4px);
            border-color: rgba(106, 43, 232, 0.5);
            box-shadow: var(--score-shadow-hover);
        }

        .score-focus-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: var(--score-inset);
            border-bottom: 1px solid var(--score-border);
            overflow: hidden;
        }

        .score-focus-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .score-focus-card:hover .score-focus-img img {
            transform: scale(1.04);
        }

        .score-focus-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 8px;
        }

        .score-focus-body .focus-tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .score-focus-body h3 {
            font-family: var(--score-font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--score-text);
            margin: 0;
            line-height: 1.4;
        }

        .score-focus-body p {
            font-size: 0.85rem;
            color: var(--score-text-muted);
            margin: 0;
            line-height: 1.65;
        }

        /* Data sidebar */
        .score-data-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .score-data-cell {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 20px;
            text-align: center;
            transition: border-color var(--score-transition), box-shadow var(--score-transition);
        }

        .score-data-cell:hover {
            border-color: rgba(0, 230, 168, 0.4);
            box-shadow: var(--score-shadow);
        }

        .score-data-cell .data-num {
            font-family: var(--score-font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--score-teal);
            line-height: 1.2;
        }

        .score-data-cell .data-label {
            font-size: 0.8rem;
            color: var(--score-text-muted);
            margin-top: 4px;
        }

        /* Tag cloud */
        .score-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .score-tag-cloud .cloud-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            font-size: 0.8rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--score-text-muted);
            cursor: pointer;
            transition: all var(--score-transition);
            white-space: nowrap;
        }

        .score-tag-cloud .cloud-tag:hover {
            background: rgba(106, 43, 232, 0.18);
            border-color: rgba(106, 43, 232, 0.5);
            color: var(--score-text);
        }

        /* Subscribe CTA */
        .score-subscribe-box {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 24px;
            align-items: center;
            background: linear-gradient(135deg, rgba(106, 43, 232, 0.12), rgba(13, 11, 20, 0.8));
            border: 1px solid rgba(106, 43, 232, 0.3);
            border-radius: var(--score-radius-lg);
            padding: 28px 30px;
        }

        .score-subscribe-box .sub-left h3 {
            font-family: var(--score-font-display);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--score-text);
            margin: 0 0 6px;
        }

        .score-subscribe-box .sub-left p {
            font-size: 0.9rem;
            color: var(--score-text-muted);
            margin: 0;
        }

        .score-subscribe-form {
            display: flex;
            gap: 10px;
        }

        .score-subscribe-form input[type="email"] {
            flex: 1;
            height: 46px;
            padding: 0 16px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--score-radius-sm);
            color: var(--score-text);
            font-size: 0.9rem;
            transition: border-color var(--score-transition), background var(--score-transition);
        }

        .score-subscribe-form input[type="email"]::placeholder {
            color: var(--score-text-faint);
        }

        .score-subscribe-form input[type="email"]:focus {
            outline: none;
            border-color: var(--score-teal);
            background: rgba(255, 255, 255, 0.08);
        }

        .score-subscribe-form button {
            height: 46px;
            padding: 0 22px;
            background: var(--score-purple);
            color: #fff;
            border: none;
            border-radius: var(--score-radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--score-transition), transform var(--score-transition);
        }

        .score-subscribe-form button:hover {
            background: var(--score-teal);
            color: #0D0B14;
            transform: translateY(-1px);
        }

        .score-subscribe-form button:active {
            transform: scale(0.97);
        }

        /* Preview card */
        .score-preview-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-md);
            padding: 20px 24px;
            transition: border-color var(--score-transition), box-shadow var(--score-transition);
        }

        .score-preview-card:hover {
            border-color: rgba(255, 176, 32, 0.5);
            box-shadow: var(--score-shadow);
        }

        .score-preview-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(255, 176, 32, 0.15);
            border: 1px solid rgba(255, 176, 32, 0.35);
            color: var(--score-amber);
            font-size: 1.4rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .score-preview-card .preview-body {
            flex: 1;
        }

        .score-preview-card .preview-body h3 {
            font-family: var(--score-font-display);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--score-text);
            margin: 0 0 4px;
        }

        .score-preview-card .preview-body p {
            font-size: 0.85rem;
            color: var(--score-text-muted);
            margin: 0;
        }

        .score-preview-date {
            font-size: 0.8rem;
            color: var(--score-amber);
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* FAQ */
        .score-faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .score-faq-item {
            background: var(--score-card);
            border: 1px solid var(--score-border);
            border-radius: var(--score-radius-sm);
            overflow: hidden;
            transition: border-color var(--score-transition);
        }

        .score-faq-item:hover,
        .score-faq-item.open {
            border-color: rgba(106, 43, 232, 0.45);
        }

        .score-faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 16px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--score-text);
            font-family: var(--score-font-body);
            transition: background var(--score-transition);
        }

        .score-faq-question:hover {
            background: rgba(106, 43, 232, 0.06);
        }

        .score-faq-question .faq-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: rgba(106, 43, 232, 0.2);
            color: var(--score-purple-light);
            font-size: 1rem;
            font-weight: 700;
            flex-shrink: 0;
            transition: transform var(--score-transition), background var(--score-transition);
        }

        .score-faq-item.open .score-faq-question .faq-icon {
            transform: rotate(45deg);
            background: rgba(0, 230, 168, 0.2);
            color: var(--score-teal);
        }

        .score-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
        }

        .score-faq-item.open .score-faq-answer {
            max-height: 200px;
            padding: 0 20px 18px;
        }

        .score-faq-answer p {
            font-size: 0.88rem;
            color: var(--score-text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* Footer */
        .score-footer {
            background: #0A080F;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 36px 0 28px;
            margin-top: 0;
        }

        .score-footer .score-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            text-align: center;
        }

        .footer-logo {
            font-family: var(--score-font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--score-text-muted);
            letter-spacing: 0.02em;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            justify-content: center;
            align-items: center;
            font-size: 0.82rem;
        }

        .footer-links a {
            color: var(--score-text-faint);
            transition: color var(--score-transition);
        }

        .footer-links a:hover {
            color: var(--score-teal);
        }

        .footer-copy {
            font-size: 0.75rem;
            color: var(--score-text-faint);
            line-height: 1.7;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .score-focus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .score-data-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .score-subscribe-box {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .score-cat-hero h1 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 767px) {
            .score-header {
                height: 56px;
            }
            .score-logo {
                font-size: 1.05rem;
            }
            .score-logo .logo-mark {
                width: 28px;
                height: 28px;
                font-size: 14px;
                border-radius: 6px;
            }
            .score-nav-cta {
                height: 36px;
                padding: 0 14px;
                font-size: 0.82rem;
            }
            .score-cat-hero {
                padding: 28px 0 24px;
            }
            .score-cat-hero h1 {
                font-size: 1.55rem;
            }
            .score-section {
                padding: 28px 0;
            }
            .score-section-title {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .score-section-title::before {
                width: 3px;
                height: 18px;
            }
            .score-focus-grid {
                grid-template-columns: 1fr;
            }
            .score-data-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .score-timeline {
                padding-left: 18px;
            }
            .score-timeline::before {
                left: 4px;
            }
            .score-timeline-item {
                padding-left: 20px;
            }
            .score-timeline-item::before {
                left: -18px;
                width: 10px;
                height: 10px;
            }
            .score-timeline-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 14px 16px;
                gap: 10px;
            }
            .score-timeline-date {
                flex-direction: row;
                align-items: baseline;
                gap: 6px;
                min-width: auto;
            }
            .score-timeline-date .day {
                font-size: 1.3rem;
            }
            .score-timeline-time {
                text-align: left;
            }
            .score-subscribe-box {
                padding: 20px;
            }
            .score-subscribe-form {
                flex-direction: column;
            }
            .score-subscribe-form button {
                width: 100%;
            }
            .score-preview-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }
            .score-preview-date {
                align-self: flex-start;
            }
            .footer-links {
                gap: 8px 12px;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 519px) {
            .score-container {
                padding-left: 14px;
                padding-right: 14px;
            }
            .score-section-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .score-data-row {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .score-data-cell {
                padding: 14px;
            }
            .score-data-cell .data-num {
                font-size: 1.5rem;
            }
            .score-faq-question {
                font-size: 0.85rem;
                padding: 13px 16px;
            }
        }

/* roulang page: category5 */
:root {
        --score-purple: #6A2BE8;
        --score-purple-light: #8B4DFF;
        --score-teal: #00E6A8;
        --score-amber: #FFB020;
        --score-bg: #0D0B14;
        --score-card: #171320;
        --score-inset: #1F1A2B;
        --score-text: #F5F2FF;
        --score-text-muted: #C9C3D8;
        --score-text-faint: #8E879F;
        --score-border: rgba(255, 255, 255, 0.08);
        --score-border-strong: rgba(255, 255, 255, 0.14);
        --score-radius-lg: 16px;
        --score-radius-md: 14px;
        --score-radius-sm: 10px;
        --score-radius-xs: 6px;
        --score-shadow: 0 10px 30px rgba(106, 43, 232, 0.14);
        --score-shadow-hover: 0 16px 44px rgba(106, 43, 232, 0.22);
        --score-font-display: "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Noto Sans SC", sans-serif;
        --score-font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
        --score-transition: 0.25s ease;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        font-family: var(--score-font-body);
        font-size: 15px;
        line-height: 1.75;
        color: var(--score-text);
        background-color: var(--score-bg);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    a {
        color: var(--score-teal);
        text-decoration: none;
        transition: color var(--score-transition);
    }

    a:hover,
    a:focus {
        color: #4dffc4;
        text-decoration: none;
    }

    a:focus-visible {
        outline: 2px solid var(--score-teal);
        outline-offset: 2px;
        border-radius: 4px;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    button:focus-visible,
    input:focus-visible {
        outline: 2px solid var(--score-teal);
        outline-offset: 2px;
    }

    .score-container {
        max-width: 1180px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Header / Nav - Landing 极简单 CTA */
    .score-header {
        position: sticky;
        top: 0;
        z-index: 100;
        height: 64px;
        display: flex;
        align-items: center;
        background: rgba(13, 11, 20, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--score-border);
    }

    .score-header .score-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .score-logo {
        font-family: var(--score-font-display);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--score-text);
        letter-spacing: 0.02em;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
        line-height: 1.2;
        transition: opacity var(--score-transition);
    }

    .score-logo:hover {
        opacity: 0.85;
        color: var(--score-text);
    }

    .score-logo .logo-mark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--score-purple), var(--score-purple-light));
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        flex-shrink: 0;
    }

    .score-nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 18px;
        border-radius: var(--score-radius-sm);
        background: var(--score-purple);
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border: 1px solid transparent;
        transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
        white-space: nowrap;
        cursor: pointer;
    }

    .score-nav-cta:hover {
        background: var(--score-teal);
        color: #0D0B14;
        border-color: var(--score-teal);
        transform: translateY(-1px);
    }

    .score-nav-cta:active {
        transform: scale(0.97);
    }

    /* 面包屑 */
    .score-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.85rem;
        color: var(--score-text-faint);
        margin-bottom: 12px;
    }

    .score-breadcrumb a {
        color: var(--score-text-muted);
        transition: color var(--score-transition);
    }

    .score-breadcrumb a:hover {
        color: var(--score-teal);
    }

    .score-breadcrumb .separator {
        color: var(--score-text-faint);
        opacity: 0.5;
    }

    .score-breadcrumb .current {
        color: var(--score-teal);
        font-weight: 500;
    }

    /* 分类 H1 区 */
    .score-cat-hero {
        padding: 48px 0 40px;
        background:
            radial-gradient(ellipse at 20% 30%, rgba(106, 43, 232, 0.15), transparent 60%),
            radial-gradient(ellipse at 80% 70%, rgba(0, 230, 168, 0.06), transparent 50%),
            var(--score-bg);
        border-bottom: 1px solid var(--score-border);
        position: relative;
        overflow: hidden;
    }

    .score-cat-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(106, 43, 232, 0.5), rgba(0, 230, 168, 0.3), transparent);
        pointer-events: none;
    }

    .score-cat-hero .score-container {
        position: relative;
        z-index: 1;
    }

    .score-cat-hero h1 {
        font-family: var(--score-font-display);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--score-text);
        margin: 0 0 12px;
        line-height: 1.25;
        letter-spacing: 0.01em;
    }

    .score-cat-hero .cat-intro {
        font-size: 0.95rem;
        color: var(--score-text-muted);
        max-width: 720px;
        line-height: 1.8;
        margin: 0;
    }

    /* 板块通用 */
    .score-section {
        padding: 48px 0;
    }

    .score-section-alt {
        background: var(--score-card);
        border-top: 1px solid var(--score-border);
        border-bottom: 1px solid var(--score-border);
    }

    .score-section-title {
        font-family: var(--score-font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--score-text);
        margin: 0 0 24px;
        line-height: 1.3;
        letter-spacing: 0.02em;
        position: relative;
        padding-left: 16px;
    }

    .score-section-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 24px;
        border-radius: 2px;
        background: linear-gradient(180deg, var(--score-purple), var(--score-teal));
    }

    /* 攻略步骤列表 */
    .guide-step-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .guide-step-item {
        display: grid;
        grid-template-columns: 56px 1fr 180px;
        gap: 20px;
        align-items: center;
        background: var(--score-card);
        border: 1px solid var(--score-border);
        border-radius: var(--score-radius-md);
        padding: 20px 24px;
        transition: border-color var(--score-transition), box-shadow var(--score-transition), transform var(--score-transition);
    }

    .guide-step-item:hover {
        border-color: rgba(0, 230, 168, 0.4);
        box-shadow: var(--score-shadow-hover);
        transform: translateY(-2px);
    }

    .guide-step-num {
        font-family: var(--score-font-display);
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--score-purple-light);
        text-align: center;
        line-height: 1;
        background: rgba(106, 43, 232, 0.12);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .guide-step-content h3 {
        font-family: var(--score-font-display);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--score-text);
        margin: 0 0 6px;
        line-height: 1.4;
    }

    .guide-step-content p {
        font-size: 0.85rem;
        color: var(--score-text-muted);
        margin: 0 0 8px;
        line-height: 1.65;
    }

    .guide-step-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .guide-tag {
        display: inline-flex;
        align-items: center;
        padding: 2px 10px;
        border-radius: var(--score-radius-xs);
        font-size: 0.7rem;
        font-weight: 500;
        background: rgba(106, 43, 232, 0.18);
        border: 1px solid rgba(106, 43, 232, 0.4);
        color: var(--score-purple-light);
        white-space: nowrap;
    }

    .guide-tag.tag-teal {
        background: rgba(0, 230, 168, 0.1);
        border-color: rgba(0, 230, 168, 0.35);
        color: var(--score-teal);
    }

    .guide-tag.tag-amber {
        background: rgba(255, 176, 32, 0.1);
        border-color: rgba(255, 176, 32, 0.35);
        color: var(--score-amber);
    }

    .guide-step-img {
        width: 160px;
        height: 100px;
        border-radius: var(--score-radius-sm);
        overflow: hidden;
        border: 1px solid var(--score-border);
        background: var(--score-inset);
        justify-self: end;
    }

    .guide-step-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--score-transition);
    }

    .guide-step-item:hover .guide-step-img img {
        transform: scale(1.04);
    }

    .guide-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        padding: 10px 22px;
        border-radius: var(--score-radius-sm);
        background: transparent;
        border: 1px solid var(--score-border-strong);
        color: var(--score-text-muted);
        font-size: 0.85rem;
        font-weight: 500;
        cursor: pointer;
        transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition);
    }

    .guide-more-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--score-text);
        border-color: var(--score-text-faint);
    }

    .guide-more-btn:active {
        transform: scale(0.97);
    }

    /* 热门推荐卡片 */
    .hot-card-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hot-card {
        display: flex;
        gap: 16px;
        background: var(--score-inset);
        border: 1px solid var(--score-border);
        border-radius: var(--score-radius-md);
        padding: 16px;
        transition: border-color var(--score-transition), box-shadow var(--score-transition);
        align-items: center;
    }

    .hot-card:hover {
        border-color: rgba(0, 230, 168, 0.35);
        box-shadow: 0 8px 24px rgba(106, 43, 232, 0.12);
    }

    .hot-card-img {
        width: 80px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--score-border);
        flex-shrink: 0;
        background: var(--score-card);
    }

    .hot-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hot-card-info h4 {
        font-family: var(--score-font-display);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--score-text);
        margin: 0 0 4px;
        line-height: 1.35;
    }

    .hot-card-info .hot-card-desc {
        font-size: 0.75rem;
        color: var(--score-text-faint);
        margin: 0;
        line-height: 1.5;
    }

    /* 标签云 */
    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag-cloud-link {
        display: inline-flex;
        align-items: center;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        background: rgba(106, 43, 232, 0.1);
        border: 1px solid rgba(106, 43, 232, 0.3);
        color: var(--score-text-muted);
        cursor: pointer;
        transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition);
    }

    .tag-cloud-link:hover {
        background: rgba(0, 230, 168, 0.12);
        border-color: rgba(0, 230, 168, 0.45);
        color: var(--score-teal);
    }

    /* FAQ 手风琴 */
    .score-faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .score-faq-item {
        background: var(--score-card);
        border: 1px solid var(--score-border);
        border-radius: var(--score-radius-md);
        overflow: hidden;
        transition: border-color var(--score-transition);
    }

    .score-faq-item:hover {
        border-color: rgba(0, 230, 168, 0.25);
    }

    .score-faq-item summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 16px 20px;
        font-family: var(--score-font-display);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--score-text);
        list-style: none;
        transition: color var(--score-transition);
        position: relative;
        gap: 12px;
    }

    .score-faq-item summary::-webkit-details-marker {
        display: none;
    }

    .score-faq-item summary .faq-icon {
        font-size: 1.2rem;
        color: var(--score-purple-light);
        transition: transform var(--score-transition);
        flex-shrink: 0;
    }

    .score-faq-item[open] summary .faq-icon {
        transform: rotate(45deg);
        color: var(--score-teal);
    }

    .score-faq-item summary:hover {
        color: var(--score-teal);
    }

    .score-faq-answer {
        padding: 0 20px 16px 20px;
        font-size: 0.85rem;
        color: var(--score-text-muted);
        line-height: 1.7;
    }

    .score-faq-answer::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: var(--score-border);
        margin-bottom: 12px;
    }

    /* 订阅 CTA */
    .subscribe-box {
        background: linear-gradient(135deg, rgba(106, 43, 232, 0.2), rgba(0, 230, 168, 0.08));
        border: 1px solid rgba(106, 43, 232, 0.35);
        border-radius: var(--score-radius-lg);
        padding: 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
    }

    .subscribe-info h3 {
        font-family: var(--score-font-display);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--score-text);
        margin: 0 0 6px;
    }

    .subscribe-info p {
        font-size: 0.85rem;
        color: var(--score-text-muted);
        margin: 0;
        line-height: 1.6;
    }

    .subscribe-form {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    .subscribe-input {
        min-width: 240px;
        height: 46px;
        padding: 0 16px;
        border-radius: var(--score-radius-sm);
        background: rgba(13, 11, 20, 0.7);
        border: 1px solid var(--score-border-strong);
        color: var(--score-text);
        font-size: 0.9rem;
        transition: border-color var(--score-transition), box-shadow var(--score-transition);
    }

    .subscribe-input::placeholder {
        color: var(--score-text-faint);
    }

    .subscribe-input:focus {
        border-color: var(--score-teal);
        box-shadow: 0 0 0 2px rgba(0, 230, 168, 0.15);
        outline: none;
    }

    .subscribe-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 46px;
        padding: 0 24px;
        border-radius: var(--score-radius-sm);
        background: var(--score-purple);
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border: none;
        cursor: pointer;
        transition: background var(--score-transition), transform var(--score-transition);
        white-space: nowrap;
    }

    .subscribe-btn:hover {
        background: var(--score-teal);
        color: #0D0B14;
        transform: translateY(-1px);
    }

    .subscribe-btn:active {
        transform: scale(0.97);
    }

    /* 按钮通用 */
    .score-btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 46px;
        padding: 0 22px;
        border-radius: var(--score-radius-sm);
        background: var(--score-purple);
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border: 1px solid transparent;
        cursor: pointer;
        transition: background var(--score-transition), transform var(--score-transition), border-color var(--score-transition);
        white-space: nowrap;
    }

    .score-btn-primary:hover {
        background: var(--score-teal);
        color: #0D0B14;
        border-color: var(--score-teal);
        transform: translateY(-1px);
    }

    .score-btn-primary:active {
        transform: scale(0.97);
    }

    .score-btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 46px;
        padding: 0 22px;
        border-radius: var(--score-radius-sm);
        background: transparent;
        color: var(--score-text);
        font-weight: 600;
        font-size: 0.9rem;
        border: 1px solid var(--score-border-strong);
        cursor: pointer;
        transition: background var(--score-transition), color var(--score-transition), border-color var(--score-transition);
        white-space: nowrap;
    }

    .score-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--score-text-faint);
        color: var(--score-teal);
    }

    .score-btn-secondary:active {
        transform: scale(0.97);
    }

    /* 页脚 */
    .score-footer {
        background: #0A080F;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 40px 0 32px;
        color: var(--score-text-faint);
        font-size: 0.8rem;
        line-height: 1.7;
    }

    .score-footer .score-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo {
        font-family: var(--score-font-display);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--score-text);
        letter-spacing: 0.02em;
        margin-bottom: 4px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }

    .footer-links a {
        color: var(--score-text-faint);
        transition: color var(--score-transition);
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .footer-links a:hover {
        color: var(--score-teal);
    }

    .footer-copy {
        color: var(--score-text-faint);
        font-size: 0.75rem;
        line-height: 1.75;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        padding-top: 16px;
    }

    /* 响应式 */
    @media (max-width: 1024px) {
        .score-cat-hero h1 {
            font-size: 2.1rem;
        }

        .guide-step-item {
            grid-template-columns: 48px 1fr 140px;
            gap: 14px;
            padding: 16px 18px;
        }

        .guide-step-img {
            width: 130px;
            height: 84px;
        }

        .guide-step-num {
            width: 40px;
            height: 40px;
            font-size: 1.4rem;
        }

        .hot-card-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .score-cat-hero {
            padding: 36px 0 30px;
        }

        .score-cat-hero h1 {
            font-size: 1.8rem;
        }

        .score-section {
            padding: 32px 0;
        }

        .score-section-title {
            font-size: 1.25rem;
            margin-bottom: 18px;
        }

        .guide-step-item {
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 16px;
        }

        .guide-step-num {
            width: 36px;
            height: 36px;
            font-size: 1.2rem;
            justify-self: start;
        }

        .guide-step-img {
            width: 100%;
            height: 160px;
            justify-self: stretch;
            margin-top: 4px;
        }

        .hot-card-grid {
            grid-template-columns: 1fr;
        }

        .subscribe-box {
            padding: 24px;
            flex-direction: column;
            align-items: flex-start;
        }

        .subscribe-input {
            min-width: 100%;
        }
    }

    @media (max-width: 520px) {
        .score-header {
            height: 56px;
        }

        .score-logo {
            font-size: 1.05rem;
        }

        .score-logo .logo-mark {
            width: 28px;
            height: 28px;
            font-size: 14px;
            border-radius: 6px;
        }

        .score-nav-cta {
            height: 36px;
            padding: 0 14px;
            font-size: 0.78rem;
        }

        .score-cat-hero h1 {
            font-size: 1.5rem;
        }

        .score-cat-hero .cat-intro {
            font-size: 0.85rem;
        }

        .score-section {
            padding: 24px 0;
        }

        .score-section-title {
            font-size: 1.1rem;
            padding-left: 12px;
        }

        .guide-step-content h3 {
            font-size: 0.95rem;
        }

        .guide-step-content p {
            font-size: 0.78rem;
        }

        .guide-step-img {
            height: 140px;
        }

        .hot-card {
            flex-direction: column;
            align-items: flex-start;
            padding: 12px;
        }

        .hot-card-img {
            width: 100%;
            height: 120px;
        }

        .footer-logo {
            font-size: 1.1rem;
        }

        .footer-links {
            gap: 8px;
        }

        .footer-links a {
            font-size: 0.72rem;
        }

        .footer-copy {
            font-size: 0.7rem;
        }

        .subscribe-form {
            flex-direction: column;
            width: 100%;
        }

        .subscribe-btn {
            width: 100%;
        }
    }
