/* roulang page: index */
:root {
            --primary: #2D3A2D;
            --primary-dark: #1E2A1E;
            --accent: #E8B23A;
            --accent-soft: #F4D98C;
            --danger: #C8402A;
            --danger-dark: #A3331F;
            --bg: #F5F3EC;
            --card-bg: #FFFFFF;
            --text: #262626;
            --text-muted: #6B6B6B;
            --border: #DEDCD4;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-pill: 999px;
            --shadow-sm: 0 1px 3px rgba(45, 58, 45, 0.08);
            --shadow-hover: 0 8px 20px rgba(45, 58, 45, 0.14);
            --font-mono: 'SF Mono', 'Consolas', 'Roboto Mono', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
            --dock-max-width: 980px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.85;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-wide {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 64px 0;
            position: relative;
        }

        .section-alt {
            background: #EFEDE5;
        }

        .section-dark {
            background: var(--primary);
            color: #F0EFEA;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--accent);
            margin-top: 12px;
            border-radius: 2px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 32px;
            line-height: 1.9;
        }

        .text-center {
            text-align: center;
        }

        .text-center .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }

        .text-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== 浮动 Dock 导航 ========== */
        .navbar-dock {
            position: sticky;
            top: 16px;
            z-index: 999;
            max-width: var(--dock-max-width);
            margin: 16px auto 0;
            padding: 0 16px;
        }

        .dock-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--primary);
            border-radius: var(--radius-pill);
            padding: 8px 20px;
            box-shadow: 0 8px 32px rgba(45, 58, 45, 0.35);
        }

        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #FFFFFF;
            font-size: 17px;
            font-weight: 700;
            white-space: nowrap;
            letter-spacing: 0.03em;
        }

        .dock-logo .logo-icon {
            width: 28px;
            height: 28px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            font-weight: 800;
        }

        .dock-logo:hover {
            color: var(--accent);
        }

        .dock-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
        }

        .dock-nav li a {
            display: block;
            padding: 6px 14px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: all var(--transition);
        }

        .dock-nav li a:hover,
        .dock-nav li a:focus {
            color: var(--accent);
            background: rgba(232, 178, 58, 0.12);
        }

        .dock-nav li a.active {
            color: var(--primary);
            background: var(--accent);
            font-weight: 600;
        }

        .dock-cta {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dock-cta .search-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 14px;
        }

        .dock-cta .search-btn:hover,
        .dock-cta .search-btn:focus {
            border-color: var(--accent);
            color: var(--accent);
        }

        .dock-cta .btn-dock-primary {
            background: var(--accent);
            color: var(--primary);
            border: none;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .dock-cta .btn-dock-primary:hover,
        .dock-cta .btn-dock-primary:focus {
            background: var(--accent-soft);
        }

        .dock-hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 22px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: background var(--transition);
        }

        .dock-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .dock-mobile-menu {
            display: none;
            background: var(--primary);
            border-radius: 16px;
            margin-top: 8px;
            padding: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .dock-mobile-menu ul {
            list-style: none;
            margin: 0;
        }

        .dock-mobile-menu ul li a {
            display: block;
            padding: 10px 16px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            border-radius: 8px;
            transition: all var(--transition);
        }

        .dock-mobile-menu ul li a:hover,
        .dock-mobile-menu ul li a.active {
            background: rgba(232, 178, 58, 0.15);
            color: var(--accent);
        }

        /* ========== Hero ========== */
        .hero-section {
            padding: 80px 0 72px;
            background-image: linear-gradient(rgba(45, 58, 45, 0.88), rgba(30, 42, 30, 0.92)), url('/assets/images/2dccdfc6c9f0ee34.webp');
            background-size: cover;
            background-position: center;
            color: #FFFFFF;
            min-height: 560px;
            display: flex;
            align-items: center;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 55% 45%;
            gap: 40px;
            align-items: center;
        }

        .hero-text .hero-badge {
            display: inline-block;
            background: rgba(232, 178, 58, 0.18);
            border: 1px solid rgba(232, 178, 58, 0.45);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 20px;
        }

        .hero-text h1 {
            font-size: 36px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 18px;
            line-height: 1.35;
            letter-spacing: 0.02em;
        }

        .hero-text .hero-desc {
            font-size: 15px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            border: none;
            text-decoration: none;
            line-height: 1.4;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--accent-soft);
            color: var(--primary-dark);
        }

        .btn-outline {
            background: transparent;
            color: #FFFFFF;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover,
        .btn-outline:focus {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-danger {
            background: var(--danger);
            color: #FFFFFF;
        }

        .btn-danger:hover,
        .btn-danger:focus {
            background: var(--danger-dark);
            color: #FFFFFF;
        }

        .hero-status {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-status .dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.4);
            }
        }

        .hero-scoreboard {
            background: rgba(30, 42, 30, 0.75);
            border: 1px solid rgba(232, 178, 58, 0.3);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(8px);
        }

        .hero-scoreboard .board-title {
            font-size: 13px;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 0.06em;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        .score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            gap: 8px;
        }

        .score-row:last-child {
            border-bottom: none;
        }

        .score-team {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 500;
        }

        .score-team.away {
            justify-content: flex-end;
            text-align: right;
        }

        .team-color {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .score-nums {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            min-width: 70px;
            justify-content: center;
        }

        .score-nums .status-tag {
            font-family: var(--font-sans);
            font-size: 10px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: var(--radius-pill);
            background: rgba(232, 178, 58, 0.2);
            color: var(--accent);
            white-space: nowrap;
        }

        .score-nums .status-tag.live {
            background: rgba(200, 64, 42, 0.35);
            color: #FF8A7A;
        }

        .score-nums .status-tag.ft {
            background: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.8);
        }

        /* ========== 比分看板 ========== */
        .scoreboard-scroll {
            display: flex;
            overflow-x: auto;
            gap: 16px;
            padding: 12px 4px 20px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border) transparent;
        }

        .scoreboard-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .scoreboard-scroll::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }

        .match-card {
            scroll-snap-align: start;
            flex: 0 0 240px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            cursor: pointer;
        }

        .match-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: var(--accent);
        }

        .match-card .match-status {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .match-card .match-status.live {
            color: var(--danger);
        }
        .match-card .match-status.ft {
            color: var(--primary);
        }

        .match-card .match-team {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 500;
            padding: 6px 0;
        }

        .match-card .match-score {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            padding: 8px 0;
            background: #FAF9F5;
            border-radius: 4px;
            margin: 8px 0;
        }

        .match-card.live .match-score {
            color: var(--danger);
            background: #FDF3F0;
        }

        .match-card .match-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
        }

        /* ========== 快速查询入口 ========== */
        .query-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .query-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            cursor: pointer;
        }

        .query-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: var(--accent);
        }

        .query-card .query-icon {
            width: 48px;
            height: 48px;
            background: rgba(45, 58, 45, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 20px;
            color: var(--primary);
        }

        .query-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .query-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ========== 数据优势 ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .stat-number .stat-unit {
            font-size: 16px;
            color: var(--accent);
            font-weight: 600;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* ========== 查分流程 ========== */
        .steps-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .step-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 26px 20px;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }

        .step-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .step-num {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            background: rgba(232, 178, 58, 0.15);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .step-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .step-item p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.8;
        }

        /* ========== 热门赛事墙 ========== */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .event-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            cursor: pointer;
        }

        .event-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .event-card .event-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .event-card .event-img .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(30, 42, 30, 0.7));
        }

        .event-card .event-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 700;
        }

        .event-card .event-body {
            padding: 18px;
        }

        .event-card .event-body h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .event-card .event-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .event-card .event-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ========== 情报列表 ========== */
        .intel-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .intel-item {
            display: grid;
            grid-template-columns: 1fr 220px;
            gap: 20px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            padding: 20px;
            cursor: pointer;
        }

        .intel-item:hover {
            box-shadow: var(--shadow-hover);
            border-left: 3px solid var(--accent);
        }

        .intel-item .intel-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .intel-item .intel-content p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.8;
        }

        .intel-item .intel-img {
            background-size: cover;
            background-position: center;
            border-radius: 6px;
            min-height: 120px;
        }

        /* ========== 品牌介绍 ========== */
        .brand-intro {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 40px;
            box-shadow: var(--shadow-sm);
        }

        .brand-intro p {
            font-size: 15px;
            line-height: 2;
            color: var(--text);
            margin-bottom: 16px;
        }

        .brand-intro p:last-child {
            margin-bottom: 0;
        }

        /* ========== 合作渠道 ========== */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .partner-tag {
            background: #EFEDE5;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all var(--transition);
        }

        .partner-tag:hover {
            background: var(--card-bg);
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
        }

        .partner-tag .partner-icon {
            width: 36px;
            height: 36px;
            background: rgba(45, 58, 45, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .partner-tag .partner-info h5 {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 2px;
        }

        .partner-tag .partner-info p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 22px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
        }

        .faq-question .faq-dot {
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .faq-question .faq-icon {
            margin-left: auto;
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition);
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
        }

        .faq-answer-inner {
            padding: 0 22px 20px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.85;
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }

        /* ========== 保障条 ========== */
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .guarantee-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .guarantee-item .g-icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .guarantee-item h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .guarantee-item p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* ========== 联系/CTA ========== */
        .cta-box {
            background: var(--primary);
            border-radius: 16px;
            padding: 48px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
            color: #FFFFFF;
        }

        .cta-box .cta-text h3 {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .cta-box .cta-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.85;
        }

        .cta-form {
            display: flex;
            gap: 12px;
        }

        .cta-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            font-size: 14px;
            outline: none;
            transition: all var(--transition);
        }

        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .cta-form input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }

        .cta-form .btn {
            flex-shrink: 0;
        }

        .cta-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 10px;
        }

        /* ========== 页脚 ========== */
        .footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 56px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-brand h4 {
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin: 0;
        }

        .footer-col h5 {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 13px;
            transition: all var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.45);
            margin: 0;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .hero-text h1 {
                font-size: 30px;
            }

            .query-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .events-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .guarantee-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-box {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .dock-nav {
                gap: 0;
            }

            .dock-nav li a {
                padding: 6px 10px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 24px;
            }

            .hero-section {
                padding: 48px 0;
                min-height: auto;
            }

            .hero-text h1 {
                font-size: 24px;
            }

            .query-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-row {
                grid-template-columns: 1fr;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .intel-item {
                grid-template-columns: 1fr;
            }

            .intel-item .intel-img {
                order: -1;
                min-height: 160px;
            }

            .partners-grid {
                grid-template-columns: 1fr;
            }

            .guarantee-grid {
                grid-template-columns: 1fr;
            }

            .cta-form {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .dock-inner {
                padding: 8px 14px;
            }

            .dock-nav {
                display: none;
            }

            .dock-cta .search-btn {
                display: none;
            }

            .dock-hamburger {
                display: flex;
            }

            .dock-mobile-menu.open {
                display: block;
            }

            .scoreboard-scroll {
                gap: 10px;
            }

            .match-card {
                flex: 0 0 200px;
                padding: 14px;
            }

            .match-card .match-score {
                font-size: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .container-wide {
                padding: 0 16px;
            }

            .hero-text h1 {
                font-size: 20px;
            }

            .hero-text .hero-desc {
                font-size: 14px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
                justify-content: center;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .stat-number {
                font-size: 28px;
            }

            .match-card {
                flex: 0 0 170px;
            }

            .brand-intro {
                padding: 24px 20px;
            }

            .cta-box {
                padding: 28px 20px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #2D3A2D;
            --primary-dark: #1E2A1E;
            --accent: #E8B23A;
            --accent-soft: #F4D98C;
            --danger: #C8402A;
            --danger-dark: #A3331F;
            --bg: #F5F3EC;
            --card-bg: #FFFFFF;
            --text: #262626;
            --text-muted: #6B6B6B;
            --border: #DEDCD4;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-pill: 999px;
            --shadow-sm: 0 1px 3px rgba(45, 58, 45, 0.08);
            --shadow-hover: 0 8px 20px rgba(45, 58, 45, 0.14);
            --font-mono: 'SF Mono', 'Consolas', 'Roboto Mono', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
            --dock-max-width: 980px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            box-sizing: border-box;
        }
        *, *::before, *::after {
            box-sizing: inherit;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.85;
            min-height: 100vh;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--danger);
            text-decoration: none;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button {
            cursor: pointer;
        }
        ul, ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        h1, h2, h3, h4, h5, h6 {
            margin: 0 0 0.5em;
            font-weight: 700;
            line-height: 1.45;
            color: var(--primary);
        }
        p {
            margin: 0 0 1em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-wide {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section {
            padding: 56px 0;
            position: relative;
        }
        .section-alt {
            background: #EFEDE5;
        }
        .section-dark {
            background: var(--primary);
            color: #F0EFEA;
        }
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--accent);
            margin-top: 12px;
            border-radius: 2px;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 32px;
            line-height: 1.9;
        }
        .text-center {
            text-align: center;
        }
        .text-center .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }
        .text-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== 浮动 Dock 导航 ========== */
        .navbar-dock {
            position: sticky;
            top: 16px;
            z-index: 999;
            max-width: var(--dock-max-width);
            margin: 16px auto 0;
            padding: 0 16px;
        }
        .dock-bar {
            background: var(--primary);
            border-radius: var(--radius-pill);
            box-shadow: 0 4px 16px rgba(30, 42, 30, 0.25);
            padding: 8px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #FFFFFF;
            font-size: 17px;
            font-weight: 700;
            white-space: nowrap;
            letter-spacing: 0.03em;
            flex-shrink: 0;
        }
        .dock-logo .logo-icon {
            width: 28px;
            height: 28px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .dock-logo:hover {
            color: var(--accent);
        }
        .dock-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        .dock-nav li a {
            display: block;
            padding: 6px 14px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: all var(--transition);
            letter-spacing: 0.01em;
        }
        .dock-nav li a:hover,
        .dock-nav li a:focus {
            color: var(--accent);
            background: rgba(232, 178, 58, 0.12);
        }
        .dock-nav li a.active {
            color: var(--primary);
            background: var(--accent);
            font-weight: 600;
        }
        .dock-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .dock-cta .search-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 14px;
            padding: 0;
        }
        .dock-cta .search-btn:hover,
        .dock-cta .search-btn:focus {
            border-color: var(--accent);
            color: var(--accent);
            outline: none;
        }
        .dock-cta .btn-dock-primary {
            background: var(--accent);
            color: var(--primary);
            border: none;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .dock-cta .btn-dock-primary:hover,
        .dock-cta .btn-dock-primary:focus {
            background: var(--accent-soft);
            outline: none;
        }
        .dock-hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 20px;
            cursor: pointer;
            padding: 6px;
            transition: color var(--transition);
            flex-shrink: 0;
            line-height: 1;
        }
        .dock-hamburger:hover {
            color: var(--accent);
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-bar {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
            margin-top: 16px;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 14px;
            color: var(--text-muted);
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li a {
            color: var(--primary);
            font-weight: 500;
        }
        .breadcrumb li a:hover {
            color: var(--danger);
        }
        .breadcrumb li .separator {
            color: var(--border);
            font-size: 12px;
        }
        .breadcrumb li.current {
            color: var(--text-muted);
            font-weight: 400;
        }

        /* ========== Hero / Page Header ========== */
        .page-header {
            background: var(--primary);
            color: #F0EFEA;
            padding: 48px 0 56px;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background: linear-gradient(135deg, transparent 40%, rgba(232, 178, 58, 0.08) 100%);
            pointer-events: none;
        }
        .page-header h1 {
            font-size: 34px;
            color: #FFFFFF;
            margin-bottom: 16px;
            letter-spacing: 0.03em;
            position: relative;
            z-index: 1;
        }
        .page-header h1::after {
            content: '';
            display: block;
            width: 56px;
            height: 3px;
            background: var(--accent);
            margin-top: 14px;
            border-radius: 2px;
        }
        .page-header p {
            font-size: 15px;
            color: rgba(240, 239, 234, 0.8);
            max-width: 720px;
            margin-bottom: 0;
            line-height: 1.9;
            position: relative;
            z-index: 1;
        }
        .page-header .header-meta {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: rgba(240, 239, 234, 0.7);
            position: relative;
            z-index: 1;
        }
        .page-header .header-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .page-header .header-meta i {
            color: var(--accent);
        }

        /* ========== 分类说明小卡 ========== */
        .intro-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            margin-top: -28px;
            position: relative;
            z-index: 2;
        }
        .intro-card h2 {
            font-size: 19px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.9;
        }

        /* ========== 列表卡片主体 ========== */
        .score-list-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }
        .score-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }
        .score-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: #C9C6BC;
        }
        .score-card .card-cover {
            width: 100%;
            height: 140px;
            background-size: cover;
            background-position: center;
            position: relative;
            flex-shrink: 0;
        }
        .score-card .card-cover .live-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--danger);
            color: #FFFFFF;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.03em;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .score-card .card-cover .live-badge.finished {
            background: var(--primary);
            color: #FFFFFF;
        }
        .score-card .card-cover .live-badge.upcoming {
            background: #8A8A8A;
            color: #FFFFFF;
        }
        .score-card .card-cover .live-badge i {
            font-size: 9px;
            animation: pulse 1.2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        .score-card .card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .score-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }
        .score-card .team {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            flex: 1;
            text-align: center;
            line-height: 1.4;
        }
        .score-card .score-display {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            background: #F0EEE7;
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            min-width: 58px;
            text-align: center;
            letter-spacing: 0.06em;
            flex-shrink: 0;
        }
        .score-card .score-display.live {
            color: var(--danger);
            background: rgba(200, 64, 42, 0.08);
        }
        .score-card .half-score {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            font-family: var(--font-mono);
            letter-spacing: 0.04em;
            margin-bottom: 10px;
        }
        .score-card .match-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .score-card .match-meta span {
            background: #F5F3EC;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .score-card .match-meta i {
            color: var(--accent);
            font-size: 10px;
        }
        .score-card .card-link {
            margin-top: auto;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all var(--transition);
        }
        .score-card .card-link:hover {
            color: var(--danger);
            gap: 10px;
        }

        /* ========== 筛选/排序条 ========== */
        .filter-bar {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-sm);
        }
        .filter-bar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-right: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .filter-bar .filter-label i {
            color: var(--accent);
            font-size: 13px;
        }
        .filter-tag {
            border: 1px solid var(--border);
            background: #FFFFFF;
            color: var(--text-muted);
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }
        .filter-tag:hover {
            border-color: var(--accent);
            color: var(--primary);
            background: rgba(232, 178, 58, 0.08);
        }
        .filter-tag.active {
            background: var(--primary);
            color: #FFFFFF;
            border-color: var(--primary);
            font-weight: 600;
        }
        .filter-tag .count {
            font-family: var(--font-mono);
            font-size: 11px;
            opacity: 0.7;
        }

        /* ========== 数据摘要侧栏 ========== */
        .stats-strip {
            background: var(--primary);
            border-radius: var(--radius-md);
            padding: 28px 32px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            box-shadow: var(--shadow-hover);
        }
        .stat-item {
            text-align: center;
            color: #F0EFEA;
        }
        .stat-item .stat-number {
            font-family: var(--font-mono);
            font-size: 36px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            letter-spacing: 0.02em;
        }
        .stat-item .stat-label {
            font-size: 13px;
            color: rgba(240, 239, 234, 0.75);
            margin-top: 6px;
            letter-spacing: 0.02em;
        }
        .stat-item .stat-unit {
            font-size: 14px;
            color: rgba(240, 239, 234, 0.6);
            font-weight: 400;
        }

        /* ========== 热门导读 ========== */
        .hot-guide {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .hot-guide-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .hot-guide-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .hot-guide-card .hot-tag {
            font-size: 11px;
            font-weight: 700;
            color: var(--danger);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .hot-guide-card .hot-tag i {
            font-size: 9px;
        }
        .hot-guide-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--primary);
            line-height: 1.5;
        }
        .hot-guide-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.7;
        }
        .hot-guide-card a {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .hot-guide-card a:hover {
            color: var(--danger);
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }
        .faq-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            cursor: default;
            background: #FFFFFF;
            border: none;
            width: 100%;
            text-align: left;
            transition: all var(--transition);
        }
        .faq-question .faq-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .faq-answer {
            padding: 0 22px 20px 42px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.9;
        }

        /* ========== 页脚 ========== */
        .footer {
            background: var(--primary);
            color: rgba(240, 239, 234, 0.85);
            padding: 48px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .footer-brand h4 {
            color: #FFFFFF;
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.03em;
        }
        .footer-brand p {
            font-size: 13px;
            color: rgba(240, 239, 234, 0.7);
            line-height: 1.8;
            margin-bottom: 0;
        }
        .footer-col h5 {
            color: #FFFFFF;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: rgba(240, 239, 234, 0.75);
            font-size: 13px;
            transition: all var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            text-align: center;
        }
        .footer-bottom p {
            font-size: 12px;
            color: rgba(240, 239, 234, 0.5);
            margin-bottom: 4px;
            line-height: 1.7;
        }

        /* ========== 图像遮罩 ========== */
        .img-cover {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .dock-bar {
                flex-wrap: wrap;
                gap: 8px;
            }
            .dock-nav {
                order: 3;
                width: 100%;
                justify-content: center;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
            }
            .dock-nav li a {
                padding: 5px 12px;
                font-size: 13px;
            }
            .hot-guide {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-strip {
                padding: 22px 24px;
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
            .page-header h1 {
                font-size: 27px;
            }
            .score-list-grid {
                grid-template-columns: 1fr;
            }
            .hot-guide {
                grid-template-columns: 1fr;
            }
            .stats-strip {
                grid-template-columns: 1fr;
                gap: 16px;
                text-align: center;
            }
            .dock-bar {
                padding: 6px 10px;
            }
            .dock-cta .btn-dock-primary {
                padding: 7px 14px;
                font-size: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 640px) {
            .navbar-dock {
                top: 8px;
                margin-top: 8px;
                padding: 0 8px;
            }
            .dock-hamburger {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .dock-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary-dark);
                border-radius: var(--radius-md);
                padding: 12px;
                gap: 2px;
                order: 4;
            }
            .dock-nav.show {
                display: flex;
            }
            .dock-nav li a {
                padding: 10px 16px;
                font-size: 14px;
                width: 100%;
                text-align: center;
                border-radius: var(--radius-sm);
            }
            .dock-cta {
                margin-left: auto;
            }
            .dock-cta .search-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            .dock-cta .btn-dock-primary {
                padding: 6px 12px;
                font-size: 11px;
            }
            .container {
                padding: 0 16px;
            }
            .breadcrumb-bar {
                margin-top: 8px;
                padding: 10px 0;
            }
            .page-header {
                padding: 36px 0 44px;
            }
            .page-header h1 {
                font-size: 24px;
            }
            .intro-card {
                padding: 18px 20px;
                margin-top: -20px;
            }
            .filter-bar {
                padding: 12px 14px;
                gap: 8px;
            }
            .filter-tag {
                font-size: 12px;
                padding: 6px 12px;
            }
            .score-card .card-cover {
                height: 120px;
            }
            .score-card .match-teams {
                flex-wrap: wrap;
                gap: 8px;
            }
            .score-card .score-display {
                font-size: 20px;
                min-width: 48px;
                padding: 3px 8px;
            }
            .faq-question {
                font-size: 14px;
                padding: 15px 18px;
            }
            .faq-answer {
                padding: 0 18px 16px 36px;
                font-size: 13px;
            }
            .footer {
                padding: 36px 0 20px;
            }
        }
        @media (max-width: 420px) {
            .page-header h1 {
                font-size: 21px;
            }
            .section-title {
                font-size: 22px;
            }
            .filter-bar .filter-label {
                width: 100%;
                margin-bottom: 4px;
            }
            .filter-tag {
                font-size: 11px;
                padding: 5px 10px;
            }
            .stat-item .stat-number {
                font-size: 28px;
            }
        }

/* 覆盖 Foundation 默认按钮样式，确保设计系统统一 */
        .btn-dock-primary,
        .filter-tag,
        .dock-hamburger {
            font-family: var(--font-sans);
        }
        .filter-tag:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .dock-hamburger:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .search-btn:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .btn-dock-primary:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .score-card .card-link:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }
        .hot-guide-card a:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
            border-radius: 4px;
        }

/* roulang page: category2 */
:root {
        --primary: #2D3A2D;
        --primary-dark: #1E2A1E;
        --accent: #E8B23A;
        --accent-soft: #F4D98C;
        --danger: #C8402A;
        --danger-dark: #A3331F;
        --bg: #F5F3EC;
        --card-bg: #FFFFFF;
        --text: #262626;
        --text-muted: #6B6B6B;
        --border: #DEDCD4;
        --radius-sm: 6px;
        --radius-md: 8px;
        --radius-pill: 999px;
        --shadow-sm: 0 1px 3px rgba(45, 58, 45, 0.08);
        --shadow-hover: 0 8px 20px rgba(45, 58, 45, 0.14);
        --font-mono: 'SF Mono', 'Consolas', 'Roboto Mono', 'Courier New', monospace;
        --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
        --transition: 0.2s ease;
        --dock-max-width: 980px;
    }
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }
    body {
        font-family: var(--font-sans);
        background: var(--bg);
        color: var(--text);
        font-size: 15px;
        line-height: 1.85;
        min-height: 100vh;
        margin: 0;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
        border: 0;
    }
    a {
        color: var(--primary);
        text-decoration: none;
        transition: color var(--transition);
    }
    a:hover,
    a:focus {
        color: var(--accent);
        text-decoration: none;
    }
    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .container-wide {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .section {
        padding: 56px 0;
        position: relative;
    }
    .section-alt {
        background: #EFEDE5;
    }
    .section-dark {
        background: var(--primary);
        color: #F0EFEA;
    }
    .section-title {
        font-size: 26px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 12px;
        line-height: 1.4;
        letter-spacing: 0.02em;
    }
    .section-title::after {
        content: '';
        display: block;
        width: 48px;
        height: 3px;
        background: var(--accent);
        margin-top: 12px;
        border-radius: 2px;
    }
    .section-desc {
        font-size: 15px;
        color: var(--text-muted);
        max-width: 820px;
        margin-bottom: 32px;
        line-height: 1.9;
    }
    .text-center {
        text-align: center;
    }
    .text-center .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }
    .text-center .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    /* ===== 浮动 Dock 导航 ===== */
    .navbar-dock {
        position: sticky;
        top: 16px;
        z-index: 999;
        max-width: var(--dock-max-width);
        margin: 16px auto 0;
        padding: 0 16px;
    }
    .dock-bar {
        background: var(--primary);
        border-radius: var(--radius-pill);
        padding: 6px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        box-shadow: 0 4px 16px rgba(45, 58, 45, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .dock-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
        letter-spacing: 0.03em;
        flex-shrink: 0;
    }
    .dock-logo .logo-icon {
        width: 28px;
        height: 28px;
        background: var(--accent);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 13px;
        font-weight: 800;
        flex-shrink: 0;
    }
    .dock-logo:hover {
        color: var(--accent);
    }
    .dock-nav {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .dock-nav::-webkit-scrollbar {
        display: none;
    }
    .dock-nav li {
        flex-shrink: 0;
    }
    .dock-nav li a {
        display: block;
        padding: 6px 12px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        font-weight: 500;
        border-radius: var(--radius-pill);
        white-space: nowrap;
        transition: all var(--transition);
    }
    .dock-nav li a:hover,
    .dock-nav li a:focus {
        color: var(--accent);
        background: rgba(232, 178, 58, 0.12);
    }
    .dock-nav li a.active {
        color: var(--primary);
        background: var(--accent);
        font-weight: 600;
    }
    .dock-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }
    .dock-cta .search-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #FFFFFF;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--transition);
        font-size: 13px;
    }
    .dock-cta .search-btn:hover,
    .dock-cta .search-btn:focus {
        border-color: var(--accent);
        color: var(--accent);
    }
    .dock-cta .btn-dock-primary {
        background: var(--accent);
        color: var(--primary);
        border: none;
        padding: 7px 16px;
        border-radius: var(--radius-pill);
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition);
        white-space: nowrap;
    }
    .dock-cta .btn-dock-primary:hover,
    .dock-cta .btn-dock-primary:focus {
        background: var(--accent-soft);
    }
    .dock-hamburger {
        display: none;
        background: transparent;
        border: none;
        color: #FFFFFF;
        font-size: 20px;
        cursor: pointer;
        width: 34px;
        height: 34px;
        border-radius: 6px;
        align-items: center;
        justify-content: center;
        transition: all var(--transition);
    }
    .dock-hamburger:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.1);
    }
    .dock-mobile-menu {
        display: none;
        background: var(--primary-dark);
        border-radius: var(--radius-md);
        margin-top: 8px;
        padding: 8px 0;
        box-shadow: var(--shadow-hover);
    }
    .dock-mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .dock-mobile-menu li a {
        display: block;
        padding: 10px 20px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        transition: all var(--transition);
    }
    .dock-mobile-menu li a:hover {
        color: var(--accent);
        background: rgba(232, 178, 58, 0.1);
    }
    .dock-mobile-menu li a.active {
        color: var(--primary);
        background: var(--accent);
        font-weight: 600;
    }
    .dock-mobile-menu.open {
        display: block;
    }

    /* ===== 面包屑 ===== */
    .breadcrumb-block {
        background: transparent;
        padding: 24px 0 0;
    }
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }
    .breadcrumb li {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .breadcrumb li:not(:last-child)::after {
        content: '/';
        color: var(--border);
        font-size: 12px;
    }
    .breadcrumb a {
        color: var(--primary);
        transition: color var(--transition);
    }
    .breadcrumb a:hover {
        color: var(--accent);
    }
    .breadcrumb .current {
        color: var(--text-muted);
        font-weight: 500;
    }

    /* ===== Hero 分类头部（拼团转化版式） ===== */
    .category-hero {
        padding: 32px 0 48px;
    }
    .category-hero .hero-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 32px;
        align-items: center;
    }
    .category-hero .hero-text h1 {
        font-size: 34px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1.35;
        margin-bottom: 16px;
        letter-spacing: 0.02em;
    }
    .category-hero .hero-text .hero-sub {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.9;
        margin-bottom: 20px;
        max-width: 620px;
    }
    .category-hero .hero-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 12px;
    }
    .category-hero .hero-tag {
        display: inline-block;
        padding: 4px 14px;
        background: rgba(232, 178, 58, 0.15);
        color: var(--primary);
        font-size: 12px;
        font-weight: 600;
        border-radius: var(--radius-pill);
        border: 1px solid rgba(232, 178, 58, 0.35);
    }

    /* 拼团转化卡 */
    .group-card {
        background: var(--primary);
        border-radius: var(--radius-md);
        padding: 28px 24px;
        color: #FFFFFF;
        box-shadow: var(--shadow-hover);
        border: 1px solid rgba(232, 178, 58, 0.2);
    }
    .group-card .group-label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--accent);
        text-transform: uppercase;
        margin-bottom: 8px;
    }
    .group-card .group-title {
        font-size: 20px;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    .group-card .group-count {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 10px;
    }
    .group-card .group-count .num {
        font-family: var(--font-mono);
        font-size: 32px;
        font-weight: 800;
        color: var(--accent);
        line-height: 1;
    }
    .group-card .group-count .unit {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
    }
    .group-card .group-progress {
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 3px;
        overflow: hidden;
        margin-bottom: 16px;
    }
    .group-card .group-progress .fill {
        height: 100%;
        background: var(--accent);
        border-radius: 3px;
        width: 95%;
        transition: width 0.6s ease;
    }
    .group-card .group-btns {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .group-card .btn-group-start {
        background: var(--accent);
        color: var(--primary);
        border: none;
        padding: 10px 20px;
        border-radius: var(--radius-pill);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition);
        flex: 1;
        min-width: 120px;
    }
    .group-card .btn-group-start:hover {
        background: var(--accent-soft);
    }
    .group-card .btn-group-join {
        background: transparent;
        color: var(--accent);
        border: 1px solid var(--accent);
        padding: 10px 20px;
        border-radius: var(--radius-pill);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition);
        flex: 1;
        min-width: 120px;
    }
    .group-card .btn-group-join:hover {
        background: rgba(232, 178, 58, 0.12);
        border-color: var(--accent-soft);
    }

    /* ===== 分类说明小卡 ===== */
    .explain-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 28px 32px;
        box-shadow: var(--shadow-sm);
        display: flex;
        align-items: flex-start;
        gap: 20px;
        max-width: 900px;
    }
    .explain-card .explain-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background: rgba(232, 178, 58, 0.15);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    .explain-card .explain-text {
        font-size: 15px;
        line-height: 1.9;
        color: var(--text);
        margin: 0;
    }

    /* ===== 筛选条 ===== */
    .filter-bar {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 28px;
    }
    .filter-bar .filter-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        margin-right: 4px;
        white-space: nowrap;
    }
    .filter-btn {
        background: var(--card-bg);
        border: 1px solid var(--border);
        color: var(--text);
        padding: 7px 18px;
        border-radius: var(--radius-pill);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: all var(--transition);
        white-space: nowrap;
    }
    .filter-btn:hover {
        border-color: var(--accent);
        color: var(--primary);
        background: rgba(232, 178, 58, 0.08);
    }
    .filter-btn.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #FFFFFF;
        font-weight: 600;
    }

    /* ===== 赛程卡片列表 ===== */
    .schedule-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .schedule-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 18px 20px;
        box-shadow: var(--shadow-sm);
        display: grid;
        grid-template-columns: 140px 1fr 120px 200px;
        gap: 16px;
        align-items: center;
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
    }
    .schedule-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
        border-color: rgba(232, 178, 58, 0.45);
    }
    .schedule-card:hover::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent);
    }
    .schedule-card .sc-time {
        font-family: var(--font-mono);
        font-size: 15px;
        font-weight: 700;
        color: var(--primary);
        line-height: 1.5;
        white-space: nowrap;
    }
    .schedule-card .sc-time .sc-date {
        display: block;
        font-size: 12px;
        font-weight: 400;
        color: var(--text-muted);
        font-family: var(--font-sans);
    }
    .schedule-card .sc-matchup {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }
    .schedule-card .sc-matchup .sc-team {
        font-size: 15px;
        font-weight: 600;
        color: var(--text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .schedule-card .sc-matchup .sc-score {
        font-family: var(--font-mono);
        font-size: 20px;
        font-weight: 800;
        color: var(--primary);
        white-space: nowrap;
        padding: 2px 6px;
        border-radius: 4px;
        background: rgba(45, 58, 45, 0.06);
        min-width: 52px;
        text-align: center;
    }
    .schedule-card .sc-matchup .sc-score.live {
        color: var(--accent);
        background: rgba(232, 178, 58, 0.15);
    }
    .schedule-card .sc-matchup .sc-score.finished {
        color: var(--danger);
        background: rgba(200, 64, 42, 0.08);
    }
    .schedule-card .sc-status {
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        white-space: nowrap;
    }
    .schedule-card .sc-status .badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: var(--radius-pill);
        font-size: 12px;
        font-weight: 600;
    }
    .badge-live {
        background: rgba(232, 178, 58, 0.18);
        color: #8B6A1A;
        border: 1px solid rgba(232, 178, 58, 0.4);
    }
    .badge-finished {
        background: rgba(200, 64, 42, 0.1);
        color: var(--danger);
        border: 1px solid rgba(200, 64, 42, 0.3);
    }
    .badge-upcoming {
        background: rgba(45, 58, 45, 0.08);
        color: var(--primary);
        border: 1px solid rgba(45, 58, 45, 0.2);
    }
    .schedule-card .sc-summary {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .schedule-card .sc-thumb {
        width: 100%;
        height: 56px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        background: #EFEDE5;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    .schedule-card .sc-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ===== 数据摘要侧栏 ===== */
    .data-summary-grid {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 28px 32px;
        box-shadow: var(--shadow-sm);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .data-summary-item {
        text-align: center;
        padding: 12px 8px;
    }
    .data-summary-item .ds-num {
        font-family: var(--font-mono);
        font-size: 36px;
        font-weight: 800;
        color: var(--accent);
        line-height: 1.1;
        margin-bottom: 6px;
    }
    .data-summary-item .ds-label {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 500;
        line-height: 1.5;
    }

    /* ===== 热门导读 ===== */
    .hot-reads {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .hot-read-item {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 18px 20px;
        box-shadow: var(--shadow-sm);
        display: flex;
        align-items: flex-start;
        gap: 12px;
        transition: all var(--transition);
    }
    .hot-read-item:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
        border-color: rgba(232, 178, 58, 0.45);
    }
    .hot-read-item .hr-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(232, 178, 58, 0.15);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }
    .hot-read-item .hr-content .hr-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--text);
        line-height: 1.5;
        margin-bottom: 4px;
        transition: color var(--transition);
    }
    .hot-read-item:hover .hr-title {
        color: var(--accent);
    }
    .hot-read-item .hr-content .hr-meta {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    /* ===== FAQ ===== */
    .faq-wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 850px;
        margin: 0 auto;
    }
    .faq-item {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: all var(--transition);
        position: relative;
    }
    .faq-item:hover {
        box-shadow: var(--shadow-hover);
    }
    .faq-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent);
        border-radius: 0 2px 2px 0;
    }
    .faq-question {
        width: 100%;
        background: transparent;
        border: none;
        padding: 18px 20px 18px 28px;
        text-align: left;
        font-size: 15px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        transition: color var(--transition);
        line-height: 1.5;
    }
    .faq-question .faq-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 12px;
        transition: all var(--transition);
    }
    .faq-question:hover {
        color: var(--primary);
    }
    .faq-item.open .faq-question {
        color: var(--primary);
    }
    .faq-item.open .faq-icon {
        color: var(--accent);
        transform: rotate(180deg);
    }
    .faq-answer {
        padding: 0 20px 18px 28px;
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.85;
        display: none;
    }
    .faq-item.open .faq-answer {
        display: block;
    }

    /* ===== CTA 按钮 ===== */
    .btn-primary {
        display: inline-block;
        background: var(--primary);
        color: #FFFFFF;
        border: none;
        padding: 12px 28px;
        border-radius: var(--radius-pill);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition);
        text-align: center;
        letter-spacing: 0.02em;
    }
    .btn-primary:hover,
    .btn-primary:focus {
        background: var(--accent);
        color: var(--primary-dark);
    }
    .btn-danger {
        display: inline-block;
        background: var(--danger);
        color: #FFFFFF;
        border: none;
        padding: 12px 28px;
        border-radius: var(--radius-pill);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition);
        text-align: center;
    }
    .btn-danger:hover,
    .btn-danger:focus {
        background: var(--danger-dark);
        color: #FFFFFF;
    }
    .btn-outline {
        display: inline-block;
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
        padding: 11px 26px;
        border-radius: var(--radius-pill);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition);
        text-align: center;
    }
    .btn-outline:hover,
    .btn-outline:focus {
        border-color: var(--accent);
        color: var(--primary-dark);
        background: rgba(232, 178, 58, 0.08);
    }

    /* ===== 页脚 ===== */
    .footer {
        background: var(--primary);
        color: rgba(255, 255, 255, 0.75);
        padding: 48px 0 20px;
        margin-top: 0;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    .footer-brand h4 {
        font-size: 18px;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 12px;
        letter-spacing: 0.02em;
    }
    .footer-brand p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.8;
        margin: 0;
        max-width: 320px;
    }
    .footer-col h5 {
        font-size: 14px;
        font-weight: 600;
        color: #FFFFFF;
        margin-bottom: 12px;
        letter-spacing: 0.04em;
    }
    .footer-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-col ul li {
        margin-bottom: 8px;
    }
    .footer-col ul li a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        transition: color var(--transition);
    }
    .footer-col ul li a:hover {
        color: var(--accent);
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
        text-align: center;
    }
    .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
        margin: 4px 0;
        line-height: 1.6;
    }

    /* ===== 响应式 ===== */
    @media (max-width: 1024px) {
        .category-hero .hero-grid {
            grid-template-columns: 1fr 320px;
            gap: 24px;
        }
        .category-hero .hero-text h1 {
            font-size: 28px;
        }
        .schedule-card {
            grid-template-columns: 110px 1fr 100px;
            gap: 12px;
        }
        .schedule-card .sc-summary {
            grid-column: 1 / -1;
            grid-row: 2;
        }
        .data-summary-grid {
            gap: 16px;
            padding: 24px;
        }
    }
    @media (max-width: 768px) {
        .dock-nav {
            display: none;
        }
        .dock-hamburger {
            display: flex;
        }
        .dock-cta .search-btn {
            display: none;
        }
        .category-hero .hero-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .category-hero .hero-text h1 {
            font-size: 24px;
        }
        .group-card {
            padding: 22px 20px;
        }
        .schedule-card {
            grid-template-columns: 1fr;
            gap: 10px;
            padding: 16px;
        }
        .schedule-card .sc-time {
            font-size: 13px;
        }
        .schedule-card .sc-matchup {
            flex-wrap: wrap;
        }
        .schedule-card .sc-matchup .sc-score {
            font-size: 18px;
        }
        .schedule-card .sc-status {
            text-align: left;
        }
        .data-summary-grid {
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 20px;
        }
        .data-summary-item {
            padding: 8px;
        }
        .data-summary-item .ds-num {
            font-size: 28px;
        }
        .hot-reads {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .section {
            padding: 36px 0;
        }
        .category-hero {
            padding: 24px 0 32px;
        }
    }
    @media (max-width: 520px) {
        .container {
            padding: 0 16px;
        }
        .category-hero .hero-text h1 {
            font-size: 21px;
            line-height: 1.4;
        }
        .group-card .group-btns {
            flex-direction: column;
        }
        .group-card .btn-group-start,
        .group-card .btn-group-join {
            width: 100%;
            flex: none;
        }
        .explain-card {
            flex-direction: column;
            gap: 12px;
            padding: 20px;
        }
        .schedule-card .sc-time {
            white-space: normal;
        }
        .filter-btn {
            font-size: 12px;
            padding: 6px 14px;
        }
        .dock-logo {
            font-size: 14px;
        }
    }

/* roulang page: category4 */
:root {
        --primary: #2D3A2D;
        --primary-dark: #1E2A1E;
        --accent: #E8B23A;
        --accent-soft: #F4D98C;
        --danger: #C8402A;
        --danger-dark: #A3331F;
        --bg: #F5F3EC;
        --card-bg: #FFFFFF;
        --text: #262626;
        --text-muted: #6B6B6B;
        --border: #DEDCD4;
        --radius-sm: 6px;
        --radius-md: 8px;
        --radius-pill: 999px;
        --shadow-sm: 0 1px 3px rgba(45, 58, 45, 0.08);
        --shadow-hover: 0 8px 20px rgba(45, 58, 45, 0.14);
        --font-mono: 'SF Mono', 'Consolas', 'Roboto Mono', 'Courier New', monospace;
        --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
        --transition: 0.2s ease;
        --dock-max-width: 980px;
    }
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
        font-size: 16px;
    }
    body {
        font-family: var(--font-sans);
        background: var(--bg);
        color: var(--text);
        font-size: 15px;
        line-height: 1.85;
        min-height: 100vh;
        margin: 0;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
        border: 0;
    }
    a {
        color: var(--primary);
        text-decoration: none;
        transition: color var(--transition);
    }
    a:hover,
    a:focus {
        color: var(--accent);
        text-decoration: none;
        outline: none;
    }
    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }
    button:focus-visible,
    a:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }
    ul,
    ol {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 0.5em;
        line-height: 1.4;
        font-weight: 700;
        color: var(--primary);
    }
    p {
        margin: 0 0 1em;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .container-wide {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .section {
        padding: 56px 0;
        position: relative;
    }
    .section-alt {
        background: #EFEDE5;
    }
    .section-sm {
        padding: 36px 0;
    }
    .section-title {
        font-size: 26px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 10px;
        line-height: 1.4;
        letter-spacing: 0.02em;
    }
    .section-title::after {
        content: '';
        display: block;
        width: 44px;
        height: 3px;
        background: var(--accent);
        margin-top: 10px;
        border-radius: 2px;
    }
    .section-desc {
        font-size: 15px;
        color: var(--text-muted);
        max-width: 820px;
        margin-bottom: 28px;
        line-height: 1.9;
    }
    .text-center {
        text-align: center;
    }
    .text-center .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }
    .text-center .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    /* ========== 浮动 Dock 导航 ========== */
    .navbar-dock {
        position: sticky;
        top: 12px;
        z-index: 999;
        max-width: var(--dock-max-width);
        margin: 12px auto 0;
        padding: 0 16px;
    }
    .dock-inner {
        background: var(--primary);
        border-radius: var(--radius-pill);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 10px 6px 16px;
        box-shadow: 0 6px 24px rgba(45, 58, 45, 0.22);
    }
    .dock-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #FFFFFF;
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
        letter-spacing: 0.03em;
        flex-shrink: 0;
    }
    .dock-logo .logo-icon {
        width: 28px;
        height: 28px;
        background: var(--accent);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 13px;
        font-weight: 800;
    }
    .dock-logo:hover,
    .dock-logo:focus {
        color: var(--accent);
    }
    .dock-nav {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .dock-nav::-webkit-scrollbar {
        display: none;
    }
    .dock-nav li {
        flex-shrink: 0;
    }
    .dock-nav li a {
        display: block;
        padding: 6px 13px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 13px;
        font-weight: 500;
        border-radius: var(--radius-pill);
        white-space: nowrap;
        transition: all var(--transition);
    }
    .dock-nav li a:hover,
    .dock-nav li a:focus {
        color: var(--accent);
        background: rgba(232, 178, 58, 0.12);
    }
    .dock-nav li a.active {
        color: var(--primary);
        background: var(--accent);
        font-weight: 600;
    }
    .dock-cta {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    .dock-cta .search-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #FFFFFF;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--transition);
        font-size: 13px;
        padding: 0;
    }
    .dock-cta .search-btn:hover,
    .dock-cta .search-btn:focus {
        border-color: var(--accent);
        color: var(--accent);
    }
    .dock-cta .btn-dock-primary {
        background: var(--accent);
        color: var(--primary);
        border: none;
        padding: 7px 16px;
        border-radius: var(--radius-pill);
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition);
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .dock-cta .btn-dock-primary:hover,
    .dock-cta .btn-dock-primary:focus {
        background: var(--accent-soft);
    }
    .dock-hamburger {
        display: none;
        background: transparent;
        border: none;
        color: #FFFFFF;
        font-size: 20px;
        cursor: pointer;
        padding: 6px;
        line-height: 1;
        flex-shrink: 0;
    }
    .dock-hamburger:hover,
    .dock-hamburger:focus {
        color: var(--accent);
    }
    .dock-mobile-menu {
        display: none;
        background: var(--primary);
        border-radius: var(--radius-md);
        margin-top: 8px;
        padding: 8px;
        box-shadow: var(--shadow-hover);
    }
    .dock-mobile-menu.open {
        display: block;
    }
    .dock-mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .dock-mobile-menu ul li a {
        display: block;
        padding: 10px 14px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        border-radius: var(--radius-sm);
        transition: all var(--transition);
    }
    .dock-mobile-menu ul li a:hover,
    .dock-mobile-menu ul li a:focus {
        background: rgba(232, 178, 58, 0.12);
        color: var(--accent);
    }
    .dock-mobile-menu ul li a.active {
        background: var(--accent);
        color: var(--primary);
        font-weight: 600;
    }

    /* ========== 面包屑 ========== */
    .breadcrumb-bar {
        padding: 28px 0 0;
    }
    .breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        font-size: 13px;
        color: var(--text-muted);
    }
    .breadcrumb a {
        color: var(--text-muted);
        transition: color var(--transition);
    }
    .breadcrumb a:hover,
    .breadcrumb a:focus {
        color: var(--primary);
    }
    .breadcrumb .crumb-sep {
        margin: 0 2px;
        color: #B0ADA5;
    }
    .breadcrumb .crumb-current {
        color: var(--primary);
        font-weight: 600;
    }

    /* ========== 分类页头部 ========== */
    .cat-header {
        padding: 32px 0 20px;
    }
    .cat-header h1 {
        font-size: 34px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 12px;
        line-height: 1.4;
        letter-spacing: 0.02em;
    }
    .cat-header h1::after {
        content: '';
        display: block;
        width: 52px;
        height: 3px;
        background: var(--accent);
        margin-top: 14px;
        border-radius: 2px;
    }
    .cat-header .cat-sub {
        font-size: 15px;
        color: var(--text-muted);
        max-width: 760px;
        line-height: 1.95;
    }

    /* ========== 分类说明小卡 ========== */
    .cat-intro-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 20px 24px;
        margin-bottom: 28px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        box-shadow: var(--shadow-sm);
    }
    .cat-intro-card .intro-icon {
        width: 42px;
        height: 42px;
        background: rgba(232, 178, 58, 0.15);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 18px;
        flex-shrink: 0;
    }
    .cat-intro-card p {
        margin: 0;
        font-size: 14px;
        color: var(--text);
        line-height: 1.9;
    }

    /* ========== 筛选条 ========== */
    .filter-bar {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 14px 18px;
        margin-bottom: 28px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        box-shadow: var(--shadow-sm);
    }
    .filter-bar .filter-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        margin-right: 4px;
        flex-shrink: 0;
    }
    .filter-chip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 14px;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        font-size: 13px;
        color: var(--text);
        background: #FFFFFF;
        cursor: pointer;
        transition: all var(--transition);
        white-space: nowrap;
        user-select: none;
    }
    .filter-chip:hover,
    .filter-chip:focus {
        border-color: var(--accent);
        color: var(--primary);
        background: rgba(232, 178, 58, 0.08);
    }
    .filter-chip.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #FFFFFF;
        font-weight: 600;
    }
    .filter-chip .chip-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 18px;
        height: 18px;
        background: rgba(45, 58, 45, 0.1);
        border-radius: 50%;
        font-size: 11px;
        font-weight: 600;
        padding: 0 4px;
    }
    .filter-chip.active .chip-count {
        background: rgba(255, 255, 255, 0.22);
        color: #FFFFFF;
    }

    /* ========== 主体内容布局 ========== */
    .intel-layout {
        display: flex;
        gap: 28px;
        align-items: flex-start;
    }
    .intel-main {
        flex: 1;
        min-width: 0;
    }
    .intel-sidebar {
        width: 310px;
        flex-shrink: 0;
        position: sticky;
        top: 90px;
    }

    /* ========== 情报列表卡片 ========== */
    .intel-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .intel-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 20px;
        display: flex;
        gap: 18px;
        box-shadow: var(--shadow-sm);
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
    }
    .intel-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 3px;
        background: transparent;
        transition: all var(--transition);
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }
    .intel-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }
    .intel-card:hover::before {
        background: var(--accent);
    }
    .intel-card .intel-media {
        width: 140px;
        height: 92px;
        flex-shrink: 0;
        border-radius: var(--radius-sm);
        overflow: hidden;
        background: #EAE7DF;
        position: relative;
    }
    .intel-card .intel-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .intel-card .intel-media .media-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: var(--text-muted);
        background: linear-gradient(135deg, #E4E1D8 0%, #D5D1C6 100%);
    }
    .intel-card .intel-body {
        flex: 1;
        min-width: 0;
    }
    .intel-card .intel-tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 8px;
    }
    .intel-tag {
        display: inline-block;
        padding: 2px 10px;
        border-radius: var(--radius-pill);
        font-size: 11px;
        font-weight: 600;
        line-height: 1.6;
    }
    .intel-tag.tag-today {
        background: rgba(232, 178, 58, 0.18);
        color: #8A6D1F;
    }
    .intel-tag.tag-injury {
        background: rgba(200, 64, 42, 0.1);
        color: var(--danger);
    }
    .intel-tag.tag-lineup {
        background: rgba(45, 58, 45, 0.08);
        color: var(--primary);
    }
    .intel-tag.tag-history {
        background: rgba(107, 107, 107, 0.1);
        color: var(--text-muted);
    }
    .intel-tag.tag-trend {
        background: rgba(232, 178, 58, 0.12);
        color: #6B5A1E;
    }
    .intel-card .intel-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary);
        margin: 0 0 6px;
        line-height: 1.5;
    }
    .intel-card .intel-title a {
        color: var(--primary);
        transition: color var(--transition);
    }
    .intel-card .intel-title a:hover,
    .intel-card .intel-title a:focus {
        color: var(--accent);
    }
    .intel-card .intel-summary {
        font-size: 13px;
        color: var(--text-muted);
        margin: 0 0 8px;
        line-height: 1.8;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .intel-card .intel-meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
        color: var(--text-muted);
    }
    .intel-card .intel-meta span {
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    /* ========== 侧栏数据摘要 ========== */
    .side-box {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 18px 20px;
        box-shadow: var(--shadow-sm);
        margin-bottom: 16px;
    }
    .side-box .side-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .side-box .side-title i {
        color: var(--accent);
        font-size: 14px;
    }
    .side-stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 0;
        border-bottom: 1px dashed var(--border);
    }
    .side-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .side-stat-item .stat-label {
        font-size: 13px;
        color: var(--text-muted);
    }
    .side-stat-item .stat-value {
        font-family: var(--font-mono);
        font-size: 19px;
        font-weight: 700;
        color: var(--accent);
    }
    .side-stat-item .stat-value.danger {
        color: var(--danger);
    }
    .side-stat-item .stat-value.primary {
        color: var(--primary);
    }

    /* ========== 热门导读 ========== */
    .hot-guide {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        padding: 0;
        margin-bottom: 28px;
        overflow: hidden;
    }
    .hot-guide .hot-header {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 15px;
        color: var(--primary);
    }
    .hot-guide .hot-header i {
        color: var(--accent);
    }
    .hot-guide-list {
        padding: 8px 20px;
    }
    .hot-guide-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px dashed var(--border);
    }
    .hot-guide-item:last-child {
        border-bottom: none;
    }
    .hot-guide-item .hot-link {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
        line-height: 1.5;
        transition: color var(--transition);
        flex: 1;
        min-width: 0;
    }
    .hot-guide-item .hot-link:hover,
    .hot-guide-item .hot-link:focus {
        color: var(--accent);
    }
    .hot-guide-item .hot-date {
        font-size: 12px;
        color: var(--text-muted);
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* ========== CTA 卡片 ========== */
    .cta-card {
        background: var(--primary);
        border-radius: var(--radius-md);
        padding: 28px 32px;
        text-align: center;
        box-shadow: var(--shadow-hover);
        position: relative;
        overflow: hidden;
    }
    .cta-card::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -10%;
        width: 260px;
        height: 260px;
        background: rgba(232, 178, 58, 0.08);
        border-radius: 50%;
        pointer-events: none;
    }
    .cta-card h3 {
        color: #FFFFFF;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
    }
    .cta-card p {
        color: rgba(240, 239, 234, 0.8);
        font-size: 14px;
        margin-bottom: 18px;
        position: relative;
        z-index: 1;
    }
    .cta-card .btn-cta-primary {
        background: var(--accent);
        color: var(--primary);
        border: none;
        padding: 10px 28px;
        border-radius: var(--radius-pill);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        position: relative;
        z-index: 1;
    }
    .cta-card .btn-cta-primary:hover,
    .cta-card .btn-cta-primary:focus {
        background: var(--accent-soft);
        transform: translateY(-1px);
    }

    /* ========== 页脚 ========== */
    .footer {
        background: var(--primary);
        color: rgba(240, 239, 234, 0.85);
        padding: 48px 0 0;
        margin-top: 40px;
    }
    .footer .footer-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 36px;
        padding-bottom: 32px;
    }
    .footer .footer-brand {
        flex: 1 1 260px;
        min-width: 240px;
    }
    .footer .footer-brand h4 {
        color: #FFFFFF;
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: 0.03em;
    }
    .footer .footer-brand p {
        font-size: 13px;
        line-height: 1.8;
        color: rgba(240, 239, 234, 0.7);
        margin: 0;
    }
    .footer .footer-col {
        flex: 1 1 120px;
        min-width: 120px;
    }
    .footer .footer-col h5 {
        color: var(--accent);
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 14px;
    }
    .footer .footer-col ul li {
        margin-bottom: 8px;
    }
    .footer .footer-col ul li a {
        color: rgba(240, 239, 234, 0.7);
        font-size: 13px;
        transition: color var(--transition);
    }
    .footer .footer-col ul li a:hover,
    .footer .footer-col ul li a:focus {
        color: var(--accent);
    }
    .footer .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 0;
        text-align: center;
    }
    .footer .footer-bottom p {
        font-size: 12px;
        color: rgba(240, 239, 234, 0.5);
        margin: 2px 0;
    }

    /* ========== 响应式 ========== */
    @media (max-width: 1024px) {
        .dock-nav li a {
            padding: 6px 10px;
            font-size: 12px;
        }
        .intel-layout {
            gap: 20px;
        }
        .intel-sidebar {
            width: 270px;
        }
        .intel-card .intel-media {
            width: 110px;
            height: 78px;
        }
    }
    @media (max-width: 768px) {
        .dock-inner {
            padding: 6px 10px 6px 12px;
            flex-wrap: wrap;
        }
        .dock-nav {
            display: none;
        }
        .dock-hamburger {
            display: block;
        }
        .dock-cta {
            margin-left: auto;
        }
        .intel-layout {
            flex-direction: column;
        }
        .intel-sidebar {
            width: 100%;
            position: static;
        }
        .intel-card {
            padding: 16px;
            gap: 14px;
        }
        .intel-card .intel-media {
            width: 90px;
            height: 66px;
        }
        .intel-card .intel-title {
            font-size: 14px;
        }
        .cat-header h1 {
            font-size: 26px;
        }
        .section {
            padding: 40px 0;
        }
        .cta-card {
            padding: 22px 18px;
        }
    }
    @media (max-width: 520px) {
        .dock-logo {
            font-size: 14px;
        }
        .dock-logo .logo-icon {
            width: 24px;
            height: 24px;
            font-size: 11px;
            border-radius: 5px;
        }
        .dock-cta .btn-dock-primary {
            padding: 6px 12px;
            font-size: 12px;
        }
        .dock-cta .search-btn {
            width: 30px;
            height: 30px;
            font-size: 12px;
        }
        .cat-header h1 {
            font-size: 22px;
        }
        .intel-card {
            flex-direction: column;
            gap: 12px;
        }
        .intel-card .intel-media {
            width: 100%;
            height: 150px;
        }
        .filter-bar {
            gap: 6px;
            padding: 10px 12px;
        }
        .filter-chip {
            padding: 5px 11px;
            font-size: 12px;
        }
        .footer .footer-grid {
            gap: 24px;
        }
    }

/* roulang page: category3 */
:root {
            --primary: #2D3A2D;
            --primary-dark: #1E2A1E;
            --accent: #E8B23A;
            --accent-soft: #F4D98C;
            --danger: #C8402A;
            --danger-dark: #A3331F;
            --bg: #F5F3EC;
            --card-bg: #FFFFFF;
            --text: #262626;
            --text-muted: #6B6B6B;
            --border: #DEDCD4;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-pill: 999px;
            --shadow-sm: 0 1px 3px rgba(45, 58, 45, 0.08);
            --shadow-hover: 0 8px 20px rgba(45, 58, 45, 0.14);
            --font-mono: 'SF Mono', 'Consolas', 'Roboto Mono', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
            --dock-max-width: 980px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.85;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-wide {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section {
            padding: 48px 0;
            position: relative;
        }
        .section-alt {
            background: #EFEDE5;
        }
        .section-dark {
            background: var(--primary);
            color: #F0EFEA;
        }
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--accent);
            margin-top: 12px;
            border-radius: 2px;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 32px;
            line-height: 1.9;
        }
        .text-center {
            text-align: center;
        }
        .text-center .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }
        .text-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }
        /* ========== 浮动 Dock 导航 ========== */
        .navbar-dock {
            position: sticky;
            top: 16px;
            z-index: 999;
            max-width: var(--dock-max-width);
            margin: 16px auto 0;
            padding: 0 16px;
        }
        .dock-inner {
            background: var(--primary);
            border-radius: var(--radius-pill);
            padding: 10px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            box-shadow: 0 4px 18px rgba(45, 58, 45, 0.25);
        }
        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #FFFFFF;
            font-size: 17px;
            font-weight: 700;
            white-space: nowrap;
            letter-spacing: 0.03em;
            flex-shrink: 0;
        }
        .dock-logo .logo-icon {
            width: 28px;
            height: 28px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            font-weight: 800;
            flex-shrink: 0;
        }
        .dock-logo:hover {
            color: var(--accent);
        }
        .dock-hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 22px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all var(--transition);
            flex-shrink: 0;
        }
        .dock-hamburger:hover {
            background: rgba(232, 178, 58, 0.15);
            color: var(--accent);
        }
        .dock-nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            justify-content: center;
        }
        .dock-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .dock-nav li a {
            display: block;
            padding: 6px 13px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: all var(--transition);
        }
        .dock-nav li a:hover,
        .dock-nav li a:focus {
            color: var(--accent);
            background: rgba(232, 178, 58, 0.12);
        }
        .dock-nav li a.active {
            color: var(--primary);
            background: var(--accent);
            font-weight: 600;
        }
        .dock-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .dock-cta .search-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 14px;
        }
        .dock-cta .search-btn:hover,
        .dock-cta .search-btn:focus {
            border-color: var(--accent);
            color: var(--accent);
        }
        .dock-cta .btn-dock-primary {
            background: var(--accent);
            color: var(--primary);
            border: none;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .dock-cta .btn-dock-primary:hover,
        .dock-cta .btn-dock-primary:focus {
            background: var(--accent-soft);
        }
        /* ========== 面包屑 ========== */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 18px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .separator {
            color: var(--border);
            user-select: none;
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }
        /* ========== 页面头部 ========== */
        .page-header {
            padding: 48px 0 24px;
        }
        .page-header h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 14px;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }
        .page-header .h1-underline {
            width: 56px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            margin-bottom: 20px;
        }
        .page-header .header-summary {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 780px;
            line-height: 1.9;
        }
        /* ========== 分类说明卡 ========== */
        .intro-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 36px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .intro-card .icon-wrap {
            width: 44px;
            height: 44px;
            background: rgba(232, 178, 58, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 20px;
            flex-shrink: 0;
        }
        .intro-card p {
            margin: 0;
            color: var(--text);
            font-size: 15px;
            line-height: 1.95;
        }
        /* ========== 筛选标签条 ========== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .filter-bar .filter-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
            align-self: center;
            margin-right: 8px;
            letter-spacing: 0.05em;
        }
        .filter-tag {
            display: inline-block;
            padding: 7px 18px;
            border: 1px solid var(--border);
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 500;
            color: var(--text);
            background: var(--card-bg);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            user-select: none;
        }
        .filter-tag:hover {
            border-color: var(--accent);
            color: var(--primary);
            background: rgba(232, 178, 58, 0.08);
        }
        .filter-tag.active {
            background: var(--primary);
            color: #FFFFFF;
            border-color: var(--primary);
        }
        /* ========== 数据摘要侧栏 ========== */
        .data-sidebar {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 120px;
        }
        .data-sidebar h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .data-sidebar .stat-item {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .data-sidebar .stat-item:last-child {
            border-bottom: none;
        }
        .data-sidebar .stat-label {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .data-sidebar .stat-value {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }
        .data-sidebar .stat-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        /* ========== 文章卡片列表 ========== */
        .article-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }
        .article-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }
        .article-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: rgba(232, 178, 58, 0.5);
        }
        .article-card .card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: #E5E2D9;
        }
        .article-card .card-body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-card .card-tag {
            display: inline-block;
            padding: 3px 12px;
            background: rgba(232, 178, 58, 0.15);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            border-radius: var(--radius-pill);
            align-self: flex-start;
            margin-bottom: 10px;
            letter-spacing: 0.03em;
        }
        .article-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .article-card h3 a {
            color: var(--primary);
            transition: color var(--transition);
        }
        .article-card h3 a:hover {
            color: var(--accent);
        }
        .article-card .card-summary {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 12px;
            flex: 1;
        }
        .article-card .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
            padding-top: 12px;
        }
        .article-card .card-meta i {
            color: var(--accent);
            font-size: 13px;
        }
        .article-card.is-hidden {
            display: none;
        }
        /* ========== 查看更多按钮 ========== */
        .load-more-wrap {
            text-align: center;
            margin-top: 28px;
        }
        .btn-load-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 10px 28px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-load-more:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
        }
        .btn-load-more i {
            transition: transform var(--transition);
        }
        .btn-load-more.expanded i {
            transform: rotate(180deg);
        }
        /* ========== 热门导读 ========== */
        .hot-reads {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 8px;
        }
        .hot-read-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .hot-read-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: rgba(232, 178, 58, 0.5);
        }
        .hot-read-item .hot-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--danger);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .hot-read-item a {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            line-height: 1.5;
            display: block;
        }
        .hot-read-item a:hover {
            color: var(--accent);
        }
        .hot-read-item .hot-meta {
            font-size: 12px;
            color: var(--text-muted);
        }
        /* ========== FAQ ========== */
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: rgba(232, 178, 58, 0.5);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 22px;
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all var(--transition);
            position: relative;
            user-select: none;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::before {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .faq-item summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            color: var(--text-muted);
            margin-left: auto;
            transition: transform var(--transition);
        }
        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }
        .faq-item summary:hover {
            color: var(--primary);
            background: rgba(232, 178, 58, 0.05);
        }
        .faq-item .faq-answer {
            padding: 0 22px 20px 44px;
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.9;
        }
        /* ========== 页脚 ========== */
        .footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.85);
            padding: 56px 0 24px;
            margin-top: 40px;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.75);
            transition: color var(--transition);
        }
        .footer a:hover {
            color: var(--accent);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }
        .footer-brand h4 {
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.03em;
        }
        .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        .footer-col h5 {
            color: var(--accent);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.05em;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            text-align: center;
        }
        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.55);
            margin: 0 0 6px;
            line-height: 1.7;
        }
        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .dock-nav li a {
                padding: 6px 10px;
                font-size: 13px;
            }
            .dock-inner {
                padding: 10px 12px;
                gap: 8px;
            }
            .dock-logo {
                font-size: 15px;
            }
            .hot-reads {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .section {
                padding: 36px 0;
            }
            .page-header {
                padding: 32px 0 16px;
            }
            .page-header h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 22px;
            }
            .hot-reads {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .data-sidebar {
                position: static;
                margin-bottom: 24px;
            }
            .article-card .card-img {
                height: 160px;
            }
            .dock-nav-wrapper {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary);
                border-radius: var(--radius-md);
                padding: 12px;
                box-shadow: 0 10px 30px rgba(45, 58, 45, 0.3);
                margin-top: 8px;
                z-index: 1000;
            }
            .dock-nav-wrapper.is-open {
                display: block;
            }
            .dock-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
            }
            .dock-nav li a {
                padding: 10px 16px;
                font-size: 15px;
                text-align: left;
                display: block;
            }
            .dock-hamburger {
                display: flex;
            }
            .dock-cta .btn-dock-primary {
                padding: 6px 14px;
                font-size: 12px;
            }
            .dock-cta .search-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .container-wide {
                padding: 0 16px;
            }
            .page-header h1 {
                font-size: 22px;
            }
            .section-title {
                font-size: 20px;
            }
            .article-card .card-body {
                padding: 16px 18px;
            }
            .article-card h3 {
                font-size: 16px;
            }
            .filter-tag {
                padding: 6px 14px;
                font-size: 12px;
            }
            .filter-bar .filter-label {
                font-size: 12px;
                width: 100%;
                margin-bottom: 4px;
            }
            .intro-card {
                flex-direction: column;
                gap: 12px;
                padding: 18px 20px;
            }
            .data-sidebar .stat-value {
                font-size: 24px;
            }
            .faq-item summary {
                font-size: 14px;
                padding: 16px 18px;
            }
            .faq-item .faq-answer {
                padding: 0 18px 16px 38px;
                font-size: 13px;
            }
            .dock-cta .btn-dock-primary {
                display: none;
            }
            .dock-logo {
                font-size: 14px;
            }
        }

.article-card.is-filtered-out {
            display: none;
        }
        @media (max-width: 768px) {
            .dock-nav-wrapper.is-open {
                display: block;
                position: absolute;
                top: calc(100% + 4px);
                left: 0;
                right: 0;
                background: var(--primary);
                border-radius: var(--radius-md);
                padding: 10px;
                box-shadow: 0 10px 30px rgba(45, 58, 45, 0.3);
                z-index: 1001;
            }
            .navbar-dock {
                position: sticky;
                top: 10px;
                z-index: 999;
            }
            .dock-inner {
                position: relative;
            }
            .dock-nav-wrapper.is-open .dock-nav {
                flex-direction: column;
                align-items: stretch;
                gap: 2px;
            }
            .dock-nav-wrapper.is-open .dock-nav li a {
                padding: 10px 16px;
                font-size: 15px;
                text-align: left;
                display: block;
                color: rgba(255, 255, 255, 0.9);
            }
            .dock-nav-wrapper.is-open .dock-nav li a.active {
                background: var(--accent);
                color: var(--primary);
            }
        }
        @media (min-width: 769px) {
            .dock-nav-wrapper {
                display: flex !important;
                position: static;
                background: transparent;
                padding: 0;
                box-shadow: none;
                margin-top: 0;
            }
            .dock-nav-wrapper .dock-nav {
                flex-direction: row;
                align-items: center;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #2D3A2D;
            --primary-dark: #1E2A1E;
            --accent: #E8B23A;
            --accent-soft: #F4D98C;
            --danger: #C8402A;
            --danger-dark: #A3331F;
            --bg: #F5F3EC;
            --card-bg: #FFFFFF;
            --text: #262626;
            --text-muted: #6B6B6B;
            --border: #DEDCD4;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-pill: 999px;
            --shadow-sm: 0 1px 3px rgba(45, 58, 45, 0.08);
            --shadow-hover: 0 8px 20px rgba(45, 58, 45, 0.14);
            --font-mono: 'SF Mono', 'Consolas', 'Roboto Mono', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
            --dock-max-width: 980px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.85;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-wide {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 56px 0;
            position: relative;
        }

        .section-alt {
            background: #EFEDE5;
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--accent);
            margin-top: 12px;
            border-radius: 2px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 820px;
            margin-bottom: 32px;
            line-height: 1.9;
        }

        .text-center {
            text-align: center;
        }
        .text-center .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }
        .text-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== 浮动 Dock 导航 ========== */
        .navbar-dock {
            position: sticky;
            top: 16px;
            z-index: 999;
            max-width: var(--dock-max-width);
            margin: 16px auto 0;
            padding: 0 16px;
        }

        .dock-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--primary);
            border-radius: var(--radius-pill);
            padding: 10px 18px;
            box-shadow: 0 6px 18px rgba(45, 58, 45, 0.22);
            gap: 12px;
        }

        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #FFFFFF;
            font-size: 16px;
            font-weight: 700;
            white-space: nowrap;
            letter-spacing: 0.03em;
        }

        .dock-logo .logo-icon {
            width: 28px;
            height: 28px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 13px;
            font-weight: 800;
            flex-shrink: 0;
        }

        .dock-logo:hover {
            color: var(--accent);
        }

        .dock-nav {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .dock-nav li a {
            display: block;
            padding: 6px 13px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            font-weight: 500;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: all var(--transition);
        }

        .dock-nav li a:hover,
        .dock-nav li a:focus {
            color: var(--accent);
            background: rgba(232, 178, 58, 0.12);
        }

        .dock-nav li a.active {
            color: var(--primary);
            background: var(--accent);
            font-weight: 600;
        }

        .dock-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .dock-cta .search-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 13px;
        }

        .dock-cta .search-btn:hover,
        .dock-cta .search-btn:focus {
            border-color: var(--accent);
            color: var(--accent);
        }

        .dock-cta .btn-dock-primary {
            background: var(--accent);
            color: var(--primary);
            border: none;
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .dock-cta .btn-dock-primary:hover,
        .dock-cta .btn-dock-primary:focus {
            background: var(--accent-soft);
        }

        .dock-hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 20px;
            cursor: pointer;
            padding: 4px 6px;
            transition: color var(--transition);
        }

        .dock-hamburger:hover {
            color: var(--accent);
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-bar {
            padding: 28px 0 0;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 14px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-list li:not(:last-child)::after {
            content: '/';
            color: var(--border);
            font-size: 12px;
        }

        .breadcrumb-list a {
            color: var(--primary);
            font-weight: 500;
        }

        .breadcrumb-list a:hover {
            color: var(--accent);
        }

        .breadcrumb-list .current {
            color: var(--text-muted);
            font-weight: 400;
        }

        /* ========== 页面头部 ========== */
        .page-header {
            padding: 32px 0 8px;
        }

        .page-header h1 {
            font-size: 34px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 16px;
            line-height: 1.35;
            letter-spacing: 0.03em;
        }

        .page-header h1 .highlight {
            color: var(--accent);
            border-bottom: 3px solid var(--accent);
            padding-bottom: 2px;
        }

        .page-header .sub-desc {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 720px;
            line-height: 1.9;
            margin: 0;
        }

        /* ========== 分类说明卡片 ========== */
        .intro-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .intro-card .intro-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 20px;
            flex-shrink: 0;
        }

        .intro-card .intro-text {
            flex: 1;
            min-width: 240px;
        }

        .intro-card .intro-text h2 {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .intro-card .intro-text p {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.9;
        }

        /* ========== 筛选条 ========== */
        .filter-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .filter-bar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .filter-btn {
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 7px 16px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .filter-btn:hover,
        .filter-btn:focus {
            border-color: var(--accent);
            color: var(--primary);
            background: #FFFDF5;
        }

        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #FFFFFF;
            font-weight: 600;
        }

        /* ========== 玩法卡片网格 ========== */
        .playlist-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .play-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .play-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: var(--accent-soft);
        }

        .play-card .card-img {
            position: relative;
            aspect-ratio: 16/9;
            background: #EFEDE5;
            overflow: hidden;
        }

        .play-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .play-card:hover .card-img img {
            transform: scale(1.03);
        }

        .play-card .card-img .badge-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .play-card .card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .play-card .card-body h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 10px;
            line-height: 1.45;
        }

        .play-card .card-body h3 a {
            color: var(--primary);
            transition: color var(--transition);
        }

        .play-card .card-body h3 a:hover {
            color: var(--accent);
        }

        .play-card .card-body .card-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0 0 16px;
            flex: 1;
        }

        .play-card .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
            padding-top: 14px;
        }

        .play-card .card-meta .meta-icon {
            color: var(--accent);
            font-size: 13px;
        }

        .play-card .card-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* ========== 数据摘要侧栏 ========== */
        .data-sidebar {
            background: var(--primary);
            border-radius: var(--radius-md);
            padding: 28px;
            color: #F0EFEA;
            box-shadow: var(--shadow-hover);
        }

        .data-sidebar h3 {
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 20px;
            letter-spacing: 0.03em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .data-sidebar h3 .icon {
            color: var(--accent);
        }

        .data-sidebar .data-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .data-sidebar .data-item:last-child {
            border-bottom: none;
        }

        .data-sidebar .data-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .data-sidebar .data-value {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.02em;
        }

        /* ========== 热门导读 ========== */
        .hot-guide {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .hot-guide-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 18px 20px;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .hot-guide-item:hover {
            border-color: var(--accent-soft);
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }

        .hot-guide-item .hot-tag {
            display: inline-block;
            background: var(--accent-soft);
            color: var(--primary);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            margin-bottom: 8px;
            letter-spacing: 0.03em;
        }

        .hot-guide-item h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            margin: 0 0 6px;
            line-height: 1.5;
        }

        .hot-guide-item h4 a {
            color: var(--primary);
            transition: color var(--transition);
        }

        .hot-guide-item h4 a:hover {
            color: var(--accent);
        }

        .hot-guide-item p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* ========== CTA 区域 ========== */
        .cta-card {
            background: var(--primary);
            border-radius: var(--radius-md);
            padding: 40px 32px;
            text-align: center;
            color: #F0EFEA;
            box-shadow: var(--shadow-hover);
        }

        .cta-card h2 {
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 12px;
            line-height: 1.4;
        }

        .cta-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.9;
        }

        .btn-accent {
            display: inline-block;
            background: var(--danger);
            color: #FFFFFF;
            border: none;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            letter-spacing: 0.02em;
            border: none;
            text-decoration: none;
        }

        .btn-accent:hover,
        .btn-accent:focus {
            background: var(--danger-dark);
            color: #FFFFFF;
            text-decoration: none;
        }

        /* ========== 页脚 ========== */
        .footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 24px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand h4 {
            font-size: 18px;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 12px;
            letter-spacing: 0.03em;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.8;
            margin: 0;
        }

        .footer-col h5 {
            font-size: 15px;
            font-weight: 600;
            color: var(--accent);
            margin: 0 0 12px;
            letter-spacing: 0.03em;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
            line-height: 1.7;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .dock-nav li a {
                padding: 6px 10px;
                font-size: 12px;
            }
            .dock-logo {
                font-size: 14px;
            }
            .playlist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hot-guide {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .dock-bar {
                flex-wrap: wrap;
                padding: 10px 14px;
            }
            .dock-nav {
                order: 3;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 2px;
            }
            .dock-nav li a {
                padding: 5px 10px;
                font-size: 12px;
            }
            .dock-hamburger {
                display: block;
            }
            .dock-nav.collapsed {
                display: none;
            }
            .section {
                padding: 40px 0;
            }
            .page-header h1 {
                font-size: 27px;
            }
            .playlist-grid {
                grid-template-columns: 1fr;
            }
            .hot-guide {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .dock-bar {
                flex-wrap: wrap;
                justify-content: space-between;
            }
            .dock-logo {
                font-size: 13px;
            }
            .dock-cta .btn-dock-primary {
                padding: 6px 12px;
                font-size: 12px;
            }
            .dock-cta .search-btn {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            .dock-nav li a {
                padding: 5px 8px;
                font-size: 11px;
            }
            .page-header h1 {
                font-size: 24px;
            }
            .section-title {
                font-size: 22px;
            }
            .breadcrumb-list {
                font-size: 13px;
            }
            .filter-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
            .intro-card {
                padding: 18px;
                flex-direction: column;
            }
            .cta-card {
                padding: 28px 18px;
            }
            .cta-card h2 {
                font-size: 20px;
            }
        }

/* roulang page: category6 */
:root {
            --primary: #2D3A2D;
            --primary-dark: #1E2A1E;
            --accent: #E8B23A;
            --accent-soft: #F4D98C;
            --danger: #C8402A;
            --danger-dark: #A3331F;
            --bg: #F5F3EC;
            --card-bg: #FFFFFF;
            --text: #262626;
            --text-muted: #6B6B6B;
            --border: #DEDCD4;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-pill: 999px;
            --shadow-sm: 0 1px 3px rgba(45, 58, 45, 0.08);
            --shadow-hover: 0 8px 20px rgba(45, 58, 45, 0.14);
            --font-mono: 'SF Mono', 'Consolas', 'Roboto Mono', 'Courier New', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Helvetica Neue', Arial, sans-serif;
            --transition: 0.2s ease;
            --dock-max-width: 980px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            font-size: 15px;
            line-height: 1.85;
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: none;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-wide {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section {
            padding: 64px 0;
            position: relative;
        }
        .section-alt {
            background: #EFEDE5;
        }
        .section-dark {
            background: var(--primary);
            color: #F0EFEA;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--accent);
            margin-top: 12px;
            border-radius: 2px;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 32px;
            line-height: 1.9;
        }
        .text-center {
            text-align: center;
        }
        .text-center .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }
        .text-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }
        /* ========== 浮动 Dock 导航 ========== */
        .navbar-dock {
            position: sticky;
            top: 16px;
            z-index: 999;
            max-width: var(--dock-max-width);
            margin: 16px auto 0;
            padding: 0 16px;
        }
        .dock-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #FFFFFF;
            font-size: 17px;
            font-weight: 700;
            white-space: nowrap;
            letter-spacing: 0.03em;
        }
        .dock-logo .logo-icon {
            width: 28px;
            height: 28px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            font-weight: 800;
        }
        .dock-logo:hover {
            color: var(--accent);
        }
        .dock-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
        }
        .dock-nav li a {
            display: block;
            padding: 6px 14px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-pill);
            white-space: nowrap;
            transition: all var(--transition);
        }
        .dock-nav li a:hover,
        .dock-nav li a:focus {
            color: var(--accent);
            background: rgba(232, 178, 58, 0.12);
        }
        .dock-nav li a.active {
            color: var(--primary);
            background: var(--accent);
            font-weight: 600;
        }
        .dock-cta {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dock-cta .search-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 14px;
        }
        .dock-cta .search-btn:hover,
        .dock-cta .search-btn:focus {
            border-color: var(--accent);
            color: var(--accent);
        }
        .dock-cta .btn-dock-primary {
            background: var(--accent);
            color: var(--primary);
            border: none;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .dock-cta .btn-dock-primary:hover,
        .dock-cta .btn-dock-primary:focus {
            background: var(--accent-soft);
        }
        .dock-hamburger {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
        }
        /* ========== 按钮系统 ========== */
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 600;
            border: 1px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
            text-align: center;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--accent);
            color: var(--primary-dark);
            border-color: var(--accent);
        }
        .btn-secondary {
            background: #fff;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-secondary:hover,
        .btn-secondary:focus {
            background: var(--accent);
            color: var(--primary-dark);
            border-color: var(--accent);
        }
        .btn-accent {
            background: var(--danger);
            color: #fff;
        }
        .btn-accent:hover,
        .btn-accent:focus {
            background: var(--danger-dark);
            color: #fff;
        }
        /* ========== 卡片基础 ========== */
        .card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        /* ========== 面包屑 ========== */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .sep {
            color: var(--border);
        }
        /* ========== 分类页特有样式 ========== */
        .page-hero {
            background: var(--primary);
            color: #fff;
            padding: 40px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 300px;
            height: 300px;
            background: rgba(232, 178, 58, 0.12);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-hero .h1 {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px;
            letter-spacing: 0.03em;
        }
        .page-hero .sub {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            line-height: 1.9;
        }
        .hero-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 178, 58, 0.18);
            color: var(--accent-soft);
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            margin-bottom: 24px;
        }
        .hero-status i {
            color: var(--accent);
        }
        /* 分类说明小卡 */
        .intro-card {
            display: flex;
            align-items: center;
            gap: 32px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: var(--shadow-sm);
        }
        .intro-card .intro-text {
            flex: 1;
        }
        .intro-card .intro-text h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 10px;
        }
        .intro-card .intro-text p {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.9;
        }
        .intro-card .intro-img {
            width: 200px;
            height: 140px;
            object-fit: cover;
            border-radius: var(--radius-md);
            flex-shrink: 0;
            border: 1px solid var(--border);
        }
        /* 筛选标签 */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        .filter-btn {
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            font-size: 14px;
            cursor: pointer;
            transition: all var(--transition);
        }
        .filter-btn:hover,
        .filter-btn:focus {
            border-color: var(--accent);
            color: var(--primary);
            background: #FEF9E9;
        }
        .filter-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        /* FAQ 手风琴 */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            background: var(--card-bg);
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
            font-size: 16px;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            gap: 12px;
            transition: background var(--transition);
        }
        .faq-question:hover,
        .faq-question:focus {
            background: #F9F7F0;
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }
        .faq-item.open .faq-question .faq-icon {
            background: var(--accent);
            transform: rotate(45deg);
        }
        .faq-answer {
            display: none;
            padding: 0 20px 20px 64px;
            color: var(--text-muted);
            line-height: 1.9;
            border-left: 3px solid var(--accent);
            margin-left: 20px;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        /* 分类卡片网格 */
        .faq-category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .faq-cat-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: block;
            color: var(--text);
        }
        .faq-cat-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            color: var(--text);
            border-color: var(--accent);
        }
        .faq-cat-card .cat-icon {
            font-size: 24px;
            color: var(--danger);
            margin-bottom: 12px;
        }
        .faq-cat-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 8px;
            color: var(--primary);
        }
        .faq-cat-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 0 12px;
            line-height: 1.7;
        }
        .faq-cat-card .tag {
            display: inline-block;
            background: #F0EDE1;
            color: var(--text-muted);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
        }
        /* 数据摘要 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }
        .stat-card .stat-number {
            font-family: var(--font-mono);
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 8px;
        }
        /* 热门导读 */
        .hot-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .hot-link {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            color: var(--text);
        }
        .hot-link:hover {
            border-color: var(--accent);
            color: var(--text);
            box-shadow: var(--shadow-hover);
        }
        .hot-link i {
            color: var(--danger);
            font-size: 18px;
            width: 24px;
            text-align: center;
        }
        .hot-link span {
            font-weight: 600;
            color: var(--primary);
        }
        /* 页脚 */
        .footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 10px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            max-width: 320px;
        }
        .footer-col h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 12px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-bottom p {
            margin: 4px 0;
        }
        /* 响应式 */
        @media (max-width: 1024px) {
            .dock-nav li a {
                padding: 6px 10px;
                font-size: 13px;
            }
            .faq-category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .navbar-dock {
                position: sticky;
                top: 8px;
                margin: 8px auto 0;
            }
            .dock-nav {
                display: none;
                flex-direction: column;
                background: var(--primary-dark);
                border-radius: var(--radius-md);
                padding: 12px;
                position: absolute;
                top: 60px;
                left: 16px;
                right: 16px;
                box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            }
            .dock-nav.open {
                display: flex;
            }
            .dock-nav li a {
                color: #fff;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .dock-hamburger {
                display: block;
            }
            .dock-cta {
                margin-left: auto;
            }
            .intro-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .intro-card .intro-img {
                width: 100%;
                height: auto;
            }
            .faq-category-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .section {
                padding: 40px 0;
            }
            .page-hero {
                padding: 32px 0 40px;
            }
            .page-hero .h1 {
                font-size: 28px;
            }
            .faq-answer {
                padding-left: 20px;
                margin-left: 0;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 15px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .dock-logo {
                font-size: 15px;
            }
            .dock-cta .search-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            .dock-cta .btn-dock-primary {
                padding: 6px 12px;
                font-size: 12px;
            }
        }
