/* roulang page: index */
:root {
            --primary: #1E6B3E;
            --primary-dark: #174F2D;
            --primary-darker: #102D1A;
            --accent: #C9E84C;
            --bg-warm: #F5F7F0;
            --bg-white: #FFFFFF;
            --bg-light-green: #EDF3E9;
            --border: #E0E8DC;
            --border-hover: #A6C6A0;
            --text-main: #1C2A20;
            --text-secondary: #5A6B5D;
            --text-weak: #8B9A8D;
            --radius-lg: 12px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --shadow-card: 0 2px 10px rgba(16, 45, 26, 0.06);
            --shadow-hover: 0 8px 24px rgba(16, 45, 26, 0.12);
            --transition: 0.25s ease;
            --font-stack: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --container-max: 1200px;
            --section-pad: 72px 24px;
            --section-pad-mobile: 40px 16px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-stack);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-main);
            background-color: var(--bg-warm);
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover,
        a:focus {
            color: var(--primary);
            outline: none;
        }

        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        .section-pad {
            padding: var(--section-pad);
        }

        .section-pad-sm {
            padding: 48px 24px;
        }

        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section-pad {
                padding: var(--section-pad-mobile);
            }
            .section-pad-sm {
                padding: 40px 16px;
            }
        }

        /* 促销条 */
        .promo-bar {
            background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 60%, #2a7a4b 100%);
            color: #FFFFFF;
            font-size: 0.85rem;
            font-weight: 500;
            text-align: center;
            padding: 8px 16px;
            line-height: 1.4;
            letter-spacing: 0.02em;
            position: relative;
            z-index: 50;
        }

        .promo-bar .promo-highlight {
            color: var(--accent);
            font-weight: 600;
            margin: 0 4px;
        }

        @media (max-width: 767px) {
            .promo-bar {
                font-size: 0.78rem;
                padding: 6px 12px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

        /* 主导航 */
        .main-nav-wrapper {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(16, 45, 26, 0.04);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 16px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(16, 45, 26, 0.15);
        }

        .nav-logo .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: 0.06em;
            line-height: 1;
            white-space: nowrap;
        }

        .nav-logo .logo-text em {
            font-style: normal;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex: 1;
            justify-content: center;
        }

        .nav-links li a {
            display: inline-block;
            padding: 10px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-main);
            border-radius: var(--radius-sm);
            position: relative;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .nav-links li a:hover {
            color: var(--primary);
            background: var(--bg-light-green);
        }

        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
            background: var(--bg-light-green);
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            background: var(--bg-warm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            font-size: 0.95rem;
        }

        .nav-icon-btn:hover,
        .nav-icon-btn:focus {
            color: var(--primary);
            background: var(--bg-light-green);
            border-color: var(--primary);
        }

        .nav-search-box {
            display: flex;
            align-items: center;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 6px 12px;
            gap: 8px;
            min-width: 170px;
            transition: all var(--transition);
        }

        .nav-search-box:focus-within {
            border-color: var(--primary);
            background: var(--bg-white);
            box-shadow: 0 0 0 3px rgba(30, 107, 62, 0.1);
        }

        .nav-search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            width: 100%;
            color: var(--text-main);
        }

        .nav-search-box input::placeholder {
            color: var(--text-weak);
        }

        .nav-search-box .fa-search {
            color: var(--text-weak);
            font-size: 0.85rem;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #FFFFFF;
            padding: 10px 18px;
            border-radius: 24px;
            font-size: 0.88rem;
            font-weight: 600;
            transition: all var(--transition);
            white-space: nowrap;
            border: 1px solid var(--primary);
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #FFFFFF;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(16, 45, 26, 0.18);
        }

        .nav-cta:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* 移动端汉堡按钮 */
        .hamburger-btn {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: var(--bg-warm);
            border: 1px solid var(--border);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
            color: var(--text-main);
            transition: all var(--transition);
        }

        .hamburger-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-main);
            border-radius: 2px;
            transition: all var(--transition);
        }

        .hamburger-btn:hover {
            background: var(--bg-light-green);
            border-color: var(--primary);
        }

        /* 抽屉菜单 */
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(16, 45, 26, 0.5);
            z-index: 199;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .drawer-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .drawer-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 280px;
            height: 100vh;
            background: var(--bg-white);
            z-index: 200;
            box-shadow: -4px 0 24px rgba(16, 45, 26, 0.15);
            transition: right 0.35s cubic-bezier(0.22, 0.68, 0.43, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .drawer-menu.open {
            right: 0;
        }

        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
        }

        .drawer-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--text-secondary);
            transition: all var(--transition);
        }

        .drawer-close:hover {
            background: var(--bg-light-green);
            color: var(--primary);
        }

        .drawer-body {
            flex: 1;
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .drawer-body a {
            display: block;
            padding: 14px 16px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: var(--radius-sm);
            color: var(--text-main);
            border-bottom: 1px solid #f0f4ed;
            transition: all var(--transition);
        }

        .drawer-body a:hover {
            background: var(--bg-light-green);
            color: var(--primary);
        }

        .drawer-body a.active {
            background: var(--bg-light-green);
            color: var(--primary);
            font-weight: 600;
        }

        .drawer-footer {
            padding: 16px 20px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            .nav-search-box {
                display: none;
            }
            .hamburger-btn {
                display: flex;
            }
            .nav-cta {
                display: none;
            }
            .nav-icon-btn.hidden-mobile {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .main-nav {
                min-height: 56px;
                gap: 8px;
            }
            .nav-logo .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .nav-logo .logo-text {
                font-size: 1.2rem;
            }
        }

        /* Hero */
        .hero-section {
            position: relative;
            min-height: 520px;
            background: linear-gradient(160deg, var(--primary-darker) 0%, #153f26 40%, var(--primary) 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/497891e4f1fcf1bd.webp') center/cover;
            opacity: 0.22;
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, rgba(16, 45, 26, 0.6), transparent);
            pointer-events: none;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            padding: 80px 24px;
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 48px;
            align-items: center;
        }

        .hero-left {
            color: #FFFFFF;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 232, 76, 0.15);
            border: 1px solid rgba(201, 232, 76, 0.45);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.03em;
        }

        .hero-title {
            font-size: 2.7rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: 0.01em;
        }

        .hero-title .highlight {
            color: var(--accent);
            position: relative;
        }

        .hero-sub {
            font-size: 1.05rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 28px;
            max-width: 520px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .btn-primary-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: var(--primary-dark);
            padding: 13px 28px;
            border-radius: 28px;
            font-size: 0.95rem;
            font-weight: 700;
            border: 2px solid var(--accent);
            transition: all var(--transition);
            letter-spacing: 0.02em;
        }

        .btn-primary-lg:hover {
            background: #dbf05e;
            border-color: #dbf05e;
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(201, 232, 76, 0.35);
        }

        .btn-outline-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #FFFFFF;
            padding: 13px 28px;
            border-radius: 28px;
            font-size: 0.95rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.55);
            transition: all var(--transition);
        }

        .btn-outline-lg:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #FFFFFF;
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        /* 右侧选择器卡片 */
        .hero-selector-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: 0 16px 40px rgba(16, 45, 26, 0.28);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-selector-card .selector-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 16px;
            text-align: center;
        }

        .selector-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 16px;
        }

        .selector-chip {
            padding: 7px 16px;
            border-radius: 20px;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .selector-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--bg-light-green);
        }

        .selector-chip.active {
            background: var(--primary);
            color: #FFFFFF;
            border-color: var(--primary);
            font-weight: 600;
        }

        .hero-preview-box {
            background: var(--bg-light-green);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            border: 1px solid var(--border);
            min-height: 90px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all var(--transition);
        }

        .preview-label {
            font-size: 0.78rem;
            color: var(--text-weak);
            font-weight: 500;
            margin-bottom: 6px;
        }

        .preview-result {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.5;
        }

        .preview-detail {
            font-size: 0.83rem;
            color: var(--text-secondary);
            margin-top: 6px;
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            .hero-left {
                text-align: center;
            }
            .hero-sub {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-selector-card {
                max-width: 480px;
                margin: 0 auto;
            }
            .hero-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                min-height: auto;
            }
            .hero-container {
                padding: 48px 16px;
                gap: 24px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-sub {
                font-size: 0.95rem;
            }
            .btn-primary-lg,
            .btn-outline-lg {
                padding: 11px 20px;
                font-size: 0.88rem;
                width: 100%;
                justify-content: center;
            }
            .hero-actions {
                flex-direction: column;
                gap: 10px;
            }
            .hero-selector-card {
                padding: 20px;
            }
        }

        /* 数据快报条 */
        .data-strip {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            padding: 32px 24px;
        }

        .data-strip-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .data-stat {
            text-align: center;
            padding: 8px 4px;
            border-right: 1px solid var(--border);
        }

        .data-stat:last-child {
            border-right: none;
        }

        .data-stat .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.1;
        }

        .data-stat .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 6px;
            font-weight: 500;
        }

        @media (max-width: 767px) {
            .data-strip {
                padding: 24px 16px;
            }
            .data-strip-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .data-stat:nth-child(2) {
                border-right: none;
            }
            .data-stat .stat-number {
                font-size: 1.7rem;
            }
        }

        /* 通用板块标题 */
        .section-head {
            margin-bottom: 36px;
            position: relative;
        }

        .section-head .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary);
            background: rgba(30, 107, 62, 0.08);
            padding: 4px 12px;
            border-radius: 4px;
            letter-spacing: 0.06em;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .section-head h2 {
            font-size: 1.85rem;
            font-weight: 650;
            line-height: 1.3;
            color: var(--text-main);
            position: relative;
            padding-left: 16px;
            margin-bottom: 12px;
        }

        .section-head h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-head .section-desc {
            font-size: 0.98rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 680px;
            padding-left: 16px;
        }

        @media (max-width: 767px) {
            .section-head {
                margin-bottom: 24px;
            }
            .section-head h2 {
                font-size: 1.5rem;
            }
            .section-head .section-desc {
                font-size: 0.9rem;
            }
        }

        /* 栏目入口矩阵 */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .category-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 24px 20px;
            text-align: center;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-card);
        }

        .category-card:hover {
            border-color: var(--border-hover);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .category-card .cat-image {
            width: 100%;
            height: 120px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: var(--bg-light-green);
        }

        .category-card .cat-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .category-card:hover .cat-image img {
            transform: scale(1.05);
        }

        .category-card .cat-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .category-card .cat-desc {
            font-size: 0.83rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .category-card .cat-link {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 18px;
            background: var(--bg-light-green);
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 600;
            transition: all var(--transition);
        }

        .category-card:hover .cat-link {
            background: var(--primary);
            color: #FFFFFF;
        }

        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .category-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .category-card .cat-image {
                height: 100px;
            }
        }

        /* 热门赛事焦点 */
        .fixture-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .fixture-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }

        .fixture-teams {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            min-width: 200px;
        }

        .fixture-team {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .fixture-vs {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary);
            background: var(--bg-light-green);
            padding: 6px 12px;
            border-radius: 6px;
        }

        .fixture-info {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .fixture-tag {
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .fixture-tag.live {
            background: #ff4757;
            color: #FFFFFF;
        }

        .fixture-tag.upcoming {
            background: var(--accent);
            color: var(--primary-dark);
        }

        .fixture-tag.league {
            background: var(--bg-light-green);
            color: var(--primary);
        }

        .fixture-time {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .fixture-link {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 20px;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            font-size: 0.83rem;
            font-weight: 600;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .fixture-link:hover {
            background: var(--primary);
            color: #FFFFFF;
        }

        .fixture-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        @media (max-width: 767px) {
            .fixture-card {
                padding: 16px;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .fixture-teams {
                flex-wrap: wrap;
                gap: 8px;
            }
        }

        /* 服务矩阵 */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .service-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .service-card:hover {
            border-color: var(--border-hover);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .service-card .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .service-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.4;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.75;
            flex: 1;
        }

        .service-card .service-meta {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .service-card .service-meta span {
            font-size: 0.76rem;
            padding: 3px 10px;
            border-radius: 12px;
            background: var(--bg-warm);
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        @media (max-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .service-card {
                padding: 20px;
            }
        }

        /* 深层背景交替 */
        .section-alt {
            background: var(--bg-white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-light-green {
            background: #edf3e9;
            border-top: 1px solid #dce6d4;
            border-bottom: 1px solid #dce6d4;
        }

        /* 核心数据条 */
        .core-data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .core-data-item {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 24px;
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .core-data-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .core-data-item .big-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .core-data-item .data-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 8px;
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .core-data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .core-data-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .core-data-item .big-number {
                font-size: 1.8rem;
            }
        }

        /* 流程步骤 */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            counter-reset: step;
        }

        .step-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 24px 20px;
            text-align: center;
            position: relative;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .step-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .step-card::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--primary);
            color: #FFFFFF;
            font-size: 0.9rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--bg-white);
            box-shadow: 0 2px 8px rgba(16, 45, 26, 0.2);
        }

        .step-card .step-icon {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .step-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        @media (max-width: 1024px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px 16px;
            }
        }

        @media (max-width: 767px) {
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .step-card::before {
                top: -14px;
            }
        }

        /* 品牌介绍 */
        .brand-intro {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 0;
        }

        .brand-intro .brand-image {
            min-height: 320px;
            background: url('/assets/images/d680ca00c40963f6.webp') center/cover;
            position: relative;
        }

        .brand-intro .brand-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent 0%, rgba(16, 45, 26, 0.3) 100%);
        }

        .brand-intro .brand-content {
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-intro .brand-content h2 {
            font-size: 1.6rem;
            font-weight: 650;
            color: var(--text-main);
            margin-bottom: 16px;
            position: relative;
            padding-left: 16px;
        }

        .brand-intro .brand-content h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .brand-intro .brand-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 12px;
        }

        .brand-intro .brand-content p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 1024px) {
            .brand-intro {
                grid-template-columns: 1fr;
            }
            .brand-intro .brand-image {
                min-height: 220px;
            }
            .brand-intro .brand-content {
                padding: 28px 24px;
            }
        }

        /* 装备评测入口 */
        .gear-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 22px;
        }

        .gear-feature {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .gear-feature:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .gear-feature .gear-image {
            height: 220px;
            background: url('/assets/images/b7fcfaf0e5dace6b.webp') center/cover;
        }

        .gear-feature .gear-body {
            padding: 22px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .gear-feature .gear-body h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .gear-feature .gear-body p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.75;
            flex: 1;
        }

        .gear-feature .gear-body .gear-link {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
        }

        .gear-side-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .gear-side-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .gear-side-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
            transform: translateX(4px);
        }

        .gear-side-card .side-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .gear-side-card .side-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .gear-side-card .side-info p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .gear-layout {
                grid-template-columns: 1fr;
            }
        }

        /* 青训专区入口 */
        .academy-layout {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 22px;
            align-items: center;
        }

        .academy-text {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 32px 28px;
            box-shadow: var(--shadow-card);
        }

        .academy-text h2 {
            font-size: 1.5rem;
            font-weight: 650;
            color: var(--text-main);
            margin-bottom: 14px;
            position: relative;
            padding-left: 16px;
        }

        .academy-text h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .academy-text p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .academy-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .academy-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            padding: 18px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .academy-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: var(--border-hover);
        }

        .academy-card .ac-img {
            height: 70px;
            border-radius: var(--radius-sm);
            background: var(--bg-light-green);
            margin-bottom: 10px;
            overflow: hidden;
        }

        .academy-card .ac-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .academy-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
        }

        @media (max-width: 1024px) {
            .academy-layout {
                grid-template-columns: 1fr;
            }
            .academy-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 767px) {
            .academy-cards {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        /* 球队档案入口 */
        .team-scroll {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .team-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .team-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: var(--border-hover);
        }

        .team-card .team-badge {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-light-green);
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            font-weight: 700;
        }

        .team-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .team-card p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-top: 4px;
        }

        @media (max-width: 1024px) {
            .team-scroll {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .team-scroll {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        /* 资讯列表 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .news-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: var(--border-hover);
        }

        .news-card .news-img {
            height: 170px;
            background: var(--bg-light-green);
            overflow: hidden;
        }

        .news-card .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .news-img img {
            transform: scale(1.04);
        }

        .news-card .news-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .news-card .news-body h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.45;
        }

        .news-card .news-body .news-summary {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
        }

        .news-card .news-body .news-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            color: var(--text-weak);
            margin-top: 4px;
        }

        .news-card .news-body .news-meta .news-tag {
            padding: 3px 10px;
            border-radius: 12px;
            background: var(--bg-light-green);
            color: var(--primary);
            font-weight: 600;
        }

        @media (max-width: 767px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }

        /* 合作伙伴 */
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .partner-item {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 14px 22px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            box-shadow: var(--shadow-card);
        }

        .partner-item:hover {
            border-color: var(--border-hover);
            color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border-hover);
        }

        .faq-question {
            width: 100%;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-main);
            background: var(--bg-white);
            transition: all var(--transition);
            text-align: left;
        }

        .faq-question:hover {
            color: var(--primary);
            background: var(--bg-light-green);
        }

        .faq-question .faq-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--bg-light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--primary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            background: var(--primary);
            color: #FFFFFF;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 20px 18px 20px;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.8;
            background: var(--bg-white);
        }

        /* 保障条 */
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .guarantee-item {
            text-align: center;
            padding: 20px 16px;
        }

        .guarantee-item .g-icon {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .guarantee-item .g-title {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .guarantee-item .g-desc {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        @media (max-width: 767px) {
            .guarantee-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }

        /* CTA转化区 */
        .cta-section {
            background: linear-gradient(160deg, var(--primary-darker) 0%, var(--primary) 70%, #1e6b3e 100%);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            display: grid;
            grid-template-columns: 1fr 0.9fr;
            gap: 36px;
            align-items: center;
            color: #FFFFFF;
        }

        .cta-left h2 {
            font-size: 1.7rem;
            font-weight: 650;
            line-height: 1.3;
            margin-bottom: 14px;
        }

        .cta-left p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }

        .cta-right form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cta-right input[type="email"] {
            flex: 1;
            min-width: 200px;
            padding: 13px 18px;
            border-radius: 26px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            outline: none;
            font-size: 0.9rem;
            transition: all var(--transition);
        }

        .cta-right input[type="email"]::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-right input[type="email"]:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(201, 232, 76, 0.25);
        }

        .cta-right .btn-subscribe {
            padding: 13px 28px;
            border-radius: 26px;
            background: var(--accent);
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 0.92rem;
            border: 2px solid var(--accent);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .cta-right .btn-subscribe:hover {
            background: #dbf05e;
            border-color: #dbf05e;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(201, 232, 76, 0.35);
        }

        .cta-note {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 10px;
        }

        @media (max-width: 1024px) {
            .cta-section {
                grid-template-columns: 1fr;
                padding: 36px 28px;
                gap: 24px;
            }
        }

        @media (max-width: 767px) {
            .cta-section {
                padding: 28px 20px;
                border-radius: var(--radius-md);
            }
            .cta-left h2 {
                font-size: 1.35rem;
            }
            .cta-right form {
                flex-direction: column;
            }
            .cta-right input[type="email"] {
                width: 100%;
                min-width: auto;
            }
            .cta-right .btn-subscribe {
                width: 100%;
            }
        }

        /* 页脚 */
        .site-footer {
            background: var(--primary-darker);
            color: #FFFFFF;
            padding: 56px 24px 28px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 36px;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .footer-brand .footer-logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-brand .footer-logo .logo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.65);
            transition: all var(--transition);
            display: inline-block;
        }

        .footer-col ul li a:hover {
            color: var(--accent);
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 767px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .site-footer {
                padding: 36px 16px 20px;
            }
        }

        /* 通用按钮 */
        .btn-outline-md {
            display: inline-block;
            padding: 9px 20px;
            border-radius: 22px;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            transition: all var(--transition);
            background: transparent;
        }

        .btn-outline-md:hover {
            background: var(--primary);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(16, 45, 26, 0.18);
        }

        /* 辅助类 */
        .text-center {
            text-align: center;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* 高亮分隔条 */
        .section-divider {
            height: 4px;
            max-width: 80px;
            background: var(--accent);
            border-radius: 2px;
            margin: 0 auto 28px;
        }

        /* 板块内标题行 */
        .section-title-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .section-title-row .section-head {
            margin-bottom: 0;
        }

        @media (max-width: 767px) {
            .section-title-row {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* 图片占位背景 */
        .img-placeholder {
            background-color: #dfe8da;
            background-image: linear-gradient(135deg, #d5e2cd 25%, #e8f0e3 25%, #e8f0e3 50%, #d5e2cd 50%, #d5e2cd 75%, #e8f0e3 75%, #e8f0e3);
            background-size: 20px 20px;
        }

/* roulang page: category1 */
:root {
            --primary: #1E6B3E;
            --primary-dark: #174F2D;
            --primary-darker: #102D1A;
            --accent: #C9E84C;
            --bg-warm: #F5F7F0;
            --bg-white: #FFFFFF;
            --bg-light-green: #EDF3E9;
            --border: #E0E8DC;
            --border-hover: #A6C6A0;
            --text-main: #1C2A20;
            --text-secondary: #5A6B5D;
            --text-weak: #8B9A8D;
            --radius-lg: 12px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --shadow-card: 0 2px 10px rgba(16, 45, 26, 0.06);
            --shadow-hover: 0 8px 24px rgba(16, 45, 26, 0.12);
            --transition: 0.25s ease;
            --font-stack: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --container-max: 1200px;
            --section-pad: 72px 24px;
            --section-pad-mobile: 40px 16px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-stack);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-main);
            background-color: var(--bg-warm);
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--primary);
            outline: none;
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .section-pad {
            padding: var(--section-pad);
        }
        .section-pad-sm {
            padding: 48px 24px;
        }
        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section-pad {
                padding: var(--section-pad-mobile);
            }
            .section-pad-sm {
                padding: 40px 16px;
            }
        }
        /* 促销条 */
        .promo-bar {
            background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-dark) 100%);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 500;
            text-align: center;
            padding: 8px 12px;
            letter-spacing: 0.03em;
            position: relative;
            z-index: 101;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .promo-bar strong {
            color: var(--accent);
            font-weight: 700;
        }
        /* 主导航 */
        .main-nav-wrapper {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(16, 45, 26, 0.04);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 16px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(16, 45, 26, 0.15);
        }
        .nav-logo .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: 0.06em;
            line-height: 1;
            white-space: nowrap;
        }
        .nav-logo .logo-text em {
            font-style: normal;
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex: 1;
            justify-content: center;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            display: inline-block;
            padding: 10px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-main);
            border-radius: var(--radius-sm);
            position: relative;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-links li a:hover {
            color: var(--primary);
            background: var(--bg-light-green);
        }
        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
            background: var(--bg-light-green);
        }
        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            background: var(--bg-warm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            font-size: 0.95rem;
        }
        .nav-icon-btn:hover,
        .nav-icon-btn:focus {
            color: var(--primary);
            background: var(--bg-light-green);
            border-color: var(--primary);
        }
        .nav-search-box {
            display: flex;
            align-items: center;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 6px 12px;
            gap: 8px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .nav-search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 107, 62, 0.12);
        }
        .nav-search-box i {
            color: var(--text-weak);
            font-size: 0.85rem;
        }
        .nav-search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.88rem;
            color: var(--text-main);
            min-width: 130px;
            padding: 0;
        }
        .nav-search-box input::placeholder {
            color: var(--text-weak);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            background: var(--primary);
            color: #fff;
            font-size: 0.88rem;
            font-weight: 600;
            border-radius: 20px;
            white-space: nowrap;
            transition: all var(--transition);
            border: 1px solid var(--primary);
        }
        .nav-cta:hover,
        .nav-cta:focus {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(30, 107, 62, 0.25);
        }
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 8px;
            transition: all var(--transition);
        }
        .hamburger-btn span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--text-main);
            border-radius: 1px;
            transition: all var(--transition);
        }
        .hamburger-btn:hover {
            background: var(--bg-light-green);
            border-color: var(--primary);
        }
        .hidden-mobile {
            display: flex;
        }
        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links li a {
                padding: 8px 10px;
                font-size: 0.85rem;
            }
            .nav-search-box input {
                min-width: 90px;
                width: 90px;
            }
        }
        @media (max-width: 767px) {
            .nav-links {
                display: none;
            }
            .nav-search-box {
                display: none;
            }
            .nav-cta {
                display: none;
            }
            .hidden-mobile {
                display: none;
            }
            .hamburger-btn {
                display: flex;
            }
            .main-nav {
                min-height: 60px;
            }
            .nav-logo .logo-text {
                font-size: 1.2rem;
            }
            .nav-logo .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
        }
        /* 抽屉菜单 */
        .drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(16, 45, 26, 0.5);
            z-index: 199;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .drawer-overlay.active {
            display: block;
            opacity: 1;
        }
        .drawer-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            max-width: 85%;
            height: 100%;
            background: var(--bg-white);
            z-index: 200;
            box-shadow: -4px 0 20px rgba(16, 45, 26, 0.15);
            transition: right 0.3s ease;
            overflow-y: auto;
            padding: 0 20px 20px;
        }
        .drawer-menu.active {
            right: 0;
        }
        .drawer-menu .drawer-promo {
            background: linear-gradient(135deg, var(--primary-darker), var(--primary));
            color: var(--accent);
            font-size: 0.8rem;
            padding: 12px 16px;
            text-align: center;
            margin: 0 -20px 16px;
            font-weight: 500;
        }
        .drawer-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .drawer-menu ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 12px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-main);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            border-bottom: 1px solid var(--border);
        }
        .drawer-menu ul li a:hover,
        .drawer-menu ul li a.active {
            background: var(--bg-light-green);
            color: var(--primary);
        }
        .drawer-menu .drawer-cta {
            display: flex;
            gap: 10px;
            margin-top: 16px;
        }
        .drawer-menu .drawer-cta a {
            flex: 1;
            text-align: center;
            padding: 12px 8px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.88rem;
            transition: all var(--transition);
        }
        .drawer-menu .drawer-cta .btn-primary {
            background: var(--primary);
            color: #fff;
            border: 1px solid var(--primary);
        }
        .drawer-menu .drawer-cta .btn-primary:hover {
            background: var(--primary-dark);
        }
        .drawer-menu .drawer-cta .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        .drawer-menu .drawer-cta .btn-outline:hover {
            background: var(--bg-light-green);
        }
        .drawer-close {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }
        .drawer-close span {
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary-dark);
        }
        .drawer-close button {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: all var(--transition);
        }
        .drawer-close button:hover {
            background: var(--bg-light-green);
            color: var(--primary);
        }
        /* 面包屑 */
        .breadcrumb-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-weak);
            padding: 16px 0 0;
            flex-wrap: wrap;
        }
        .breadcrumb-bar a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .breadcrumb-bar a:hover {
            color: var(--primary);
        }
        .breadcrumb-bar .separator {
            color: var(--border-hover);
            font-size: 0.7rem;
        }
        .breadcrumb-bar .current {
            color: var(--primary);
            font-weight: 600;
        }
        /* 分类页首屏 */
        .category-hero {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
            padding: 32px 0 40px;
            align-items: start;
            position: relative;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -24px;
            right: -24px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
            border-radius: 2px;
        }
        .category-hero-text h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-darker);
            line-height: 1.2;
            margin: 0 0 12px;
            letter-spacing: 0.02em;
        }
        .category-hero-text h1 .highlight {
            color: var(--primary);
            position: relative;
        }
        .category-hero-text .hero-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 640px;
            margin: 0 0 18px;
        }
        .category-hero-meta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .category-hero-meta .meta-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--text-secondary);
            background: var(--bg-white);
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: 20px;
            transition: all var(--transition);
        }
        .category-hero-meta .meta-tag i {
            color: var(--primary);
            font-size: 0.78rem;
        }
        .category-stat-card {
            background: linear-gradient(160deg, var(--primary-darker) 0%, var(--primary-dark) 60%, var(--primary) 100%);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            color: #fff;
            box-shadow: 0 8px 24px rgba(16, 45, 26, 0.2);
            position: relative;
            overflow: hidden;
        }
        .category-stat-card::after {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(201, 232, 76, 0.12);
            pointer-events: none;
        }
        .category-stat-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent);
            margin: 0 0 16px;
            letter-spacing: 0.05em;
        }
        .category-stat-card .stat-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .category-stat-card .stat-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.85);
        }
        .category-stat-card .stat-list li:last-child {
            border-bottom: none;
        }
        .category-stat-card .stat-list li strong {
            color: var(--accent);
            font-size: 1.15rem;
            font-weight: 700;
        }
        @media (max-width: 767px) {
            .category-hero {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 24px 0 32px;
            }
            .category-hero-text h1 {
                font-size: 1.7rem;
            }
            .category-stat-card {
                padding: 20px 16px;
            }
        }
        /* 板块标题 */
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }
        .section-title .title-bar {
            width: 4px;
            height: 28px;
            background: var(--primary);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .section-title h2 {
            font-size: 1.6rem;
            font-weight: 650;
            color: var(--text-main);
            line-height: 1.3;
            margin: 0;
            letter-spacing: 0.02em;
        }
        .section-title .title-sub {
            font-size: 0.82rem;
            color: var(--text-weak);
            margin-left: auto;
            font-weight: 500;
        }
        @media (max-width: 767px) {
            .section-title h2 {
                font-size: 1.3rem;
            }
            .section-title .title-bar {
                height: 22px;
            }
        }
        /* 资讯卡片 */
        .news-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .news-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }
        .news-card .news-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: var(--bg-light-green);
        }
        .news-card .news-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card .news-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.78rem;
            color: var(--text-weak);
        }
        .news-card .news-card-meta .badge {
            background: var(--bg-light-green);
            color: var(--primary);
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 14px;
            font-size: 0.72rem;
            letter-spacing: 0.03em;
            border: 1px solid var(--border);
        }
        .news-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.45;
            margin: 0 0 10px;
            transition: color var(--transition);
        }
        .news-card:hover h3 {
            color: var(--primary);
        }
        .news-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card .news-card-footer {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-weak);
        }
        .news-card .news-card-footer i {
            color: var(--primary);
            font-size: 0.75rem;
        }
        @media (max-width: 767px) {
            .news-card .news-card-img {
                height: 160px;
            }
            .news-card .news-card-body {
                padding: 16px;
            }
        }
        /* 专栏卡片 */
        .column-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            padding: 24px 20px;
            transition: all var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        .column-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px 2px 0 0;
        }
        .column-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }
        .column-card .column-tag {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            background: var(--bg-light-green);
            display: inline-block;
            padding: 4px 12px;
            border-radius: 14px;
            margin-bottom: 12px;
            letter-spacing: 0.05em;
            border: 1px solid var(--border);
            align-self: flex-start;
        }
        .column-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.45;
            margin: 0 0 10px;
            transition: color var(--transition);
        }
        .column-card:hover h3 {
            color: var(--primary);
        }
        .column-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0 0 14px;
            flex: 1;
        }
        .column-card .column-author {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            color: var(--text-weak);
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }
        .column-card .column-author i {
            color: var(--primary);
            font-size: 0.75rem;
        }
        /* 热门讨论条 */
        .hot-discuss {
            background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 60%, var(--primary) 100%);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
        }
        .hot-discuss::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(201, 232, 76, 0.08);
            pointer-events: none;
        }
        .hot-discuss .discuss-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
        }
        .hot-discuss .discuss-title i {
            color: var(--accent);
            font-size: 1.2rem;
        }
        .hot-discuss .discuss-title h2 {
            font-size: 1.3rem;
            font-weight: 650;
            color: #fff;
            margin: 0;
            letter-spacing: 0.03em;
        }
        .hot-discuss .discuss-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .hot-discuss .discuss-list li {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            transition: all var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hot-discuss .discuss-list li:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(201, 232, 76, 0.3);
        }
        .hot-discuss .discuss-list li i {
            color: var(--accent);
            font-size: 0.85rem;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .hot-discuss .discuss-list li .discuss-text {
            line-height: 1.6;
        }
        .hot-discuss .discuss-list li .discuss-count {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.75rem;
            margin-left: 6px;
            white-space: nowrap;
        }
        @media (max-width: 767px) {
            .hot-discuss {
                padding: 22px 16px;
            }
            .hot-discuss .discuss-list {
                grid-template-columns: 1fr;
            }
            .hot-discuss .discuss-title h2 {
                font-size: 1.1rem;
            }
        }
        /* CTA */
        .cta-band {
            background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(16, 45, 26, 0.18);
        }
        .cta-band::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(201, 232, 76, 0.1);
            pointer-events: none;
        }
        .cta-band .cta-text h2 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 0 8px;
            color: #fff;
            letter-spacing: 0.03em;
        }
        .cta-band .cta-text p {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.7;
        }
        .cta-band .cta-input-group {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            min-width: 320px;
        }
        .cta-band .cta-input-group input {
            flex: 1;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            transition: all var(--transition);
        }
        .cta-band .cta-input-group input::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }
        .cta-band .cta-input-group input:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 0 0 3px rgba(201, 232, 76, 0.2);
        }
        .cta-band .cta-input-group .btn-subscribe {
            padding: 12px 22px;
            background: var(--accent);
            color: var(--primary-darker);
            font-weight: 700;
            font-size: 0.88rem;
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            white-space: nowrap;
            border: 1px solid var(--accent);
        }
        .cta-band .cta-input-group .btn-subscribe:hover {
            background: #d8f25a;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(201, 232, 76, 0.3);
        }
        @media (max-width: 767px) {
            .cta-band {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                padding: 28px 18px;
            }
            .cta-band .cta-input-group {
                flex-direction: column;
                min-width: auto;
            }
            .cta-band .cta-input-group input {
                width: 100%;
                text-align: center;
            }
            .cta-band .cta-text h2 {
                font-size: 1.2rem;
            }
        }
        /* 相关专题入口 */
        .related-entry {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .related-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            padding: 28px 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .related-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
        }
        .related-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            border-radius: 0 0 0 80px;
            background: var(--bg-light-green);
            pointer-events: none;
        }
        .related-card .related-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(30, 107, 62, 0.2);
        }
        .related-card .related-info h3 {
            font-size: 1.05rem;
            font-weight: 650;
            color: var(--text-main);
            margin: 0 0 6px;
            transition: color var(--transition);
        }
        .related-card:hover .related-info h3 {
            color: var(--primary);
        }
        .related-card .related-info p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0 0 8px;
            line-height: 1.6;
        }
        .related-card .related-info .link-hint {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .related-card .related-info .link-hint i {
            font-size: 0.7rem;
            transition: transform var(--transition);
        }
        .related-card:hover .related-info .link-hint i {
            transform: translateX(3px);
        }
        @media (max-width: 767px) {
            .related-entry {
                grid-template-columns: 1fr;
            }
            .related-card {
                padding: 20px 16px;
                flex-direction: column;
                text-align: center;
            }
            .related-card::after {
                display: none;
            }
        }
        /* 页脚 */
        .site-footer {
            background: var(--primary-darker);
            color: rgba(255, 255, 255, 0.8);
            margin-top: 60px;
            padding: 48px 24px 0;
        }
        .footer-grid {
            max-width: var(--container-max);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
        }
        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo .logo-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(201, 232, 76, 0.5);
        }
        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            margin: 0;
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 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: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 18px 0;
            text-align: center;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.45);
            max-width: var(--container-max);
            margin: 0 auto;
        }
        @media (max-width: 767px) {
            .site-footer {
                padding: 32px 16px 0;
                margin-top: 40px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                padding-bottom: 24px;
            }
            .footer-brand p {
                max-width: 100%;
            }
        }
        /* 通用按钮 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--primary);
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            border: 1px solid var(--primary);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-primary:hover,
        .btn-primary:focus {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(30, 107, 62, 0.25);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: transparent;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--primary);
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-outline:hover,
        .btn-outline:focus {
            background: var(--bg-light-green);
            border-color: var(--primary-dark);
            color: var(--primary-dark);
        }
        /* 查看更多 */
        .view-more {
            display: flex;
            justify-content: center;
            margin-top: 24px;
        }
        .view-more a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--primary);
            transition: all var(--transition);
        }
        .view-more a:hover,
        .view-more a:focus {
            background: var(--bg-light-green);
            border-color: var(--primary-dark);
            color: var(--primary-dark);
        }
        .view-more a i {
            transition: transform var(--transition);
        }
        .view-more a:hover i {
            transform: translateX(3px);
        }

/* roulang page: category2 */
:root {
            --primary: #1E6B3E;
            --primary-dark: #174F2D;
            --primary-darker: #102D1A;
            --accent: #C9E84C;
            --bg-warm: #F5F7F0;
            --bg-white: #FFFFFF;
            --bg-light-green: #EDF3E9;
            --border: #E0E8DC;
            --border-hover: #A6C6A0;
            --text-main: #1C2A20;
            --text-secondary: #5A6B5D;
            --text-weak: #8B9A8D;
            --radius-lg: 12px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --shadow-card: 0 2px 10px rgba(16, 45, 26, 0.06);
            --shadow-hover: 0 8px 24px rgba(16, 45, 26, 0.12);
            --transition: 0.25s ease;
            --font-stack: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --container-max: 1200px;
            --section-pad: 72px 24px;
            --section-pad-mobile: 40px 16px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-stack);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-main);
            background-color: var(--bg-warm);
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover,
        a:focus {
            color: var(--primary);
            outline: none;
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
            padding: 0;
        }
        h1, h2, h3, h4, h5, h6 {
            margin: 0 0 0.5em;
            font-weight: 600;
            line-height: 1.25;
            color: var(--text-main);
        }
        p {
            margin: 0 0 1em;
        }
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .section-pad {
            padding: var(--section-pad);
        }
        .section-pad-sm {
            padding: 48px 24px;
        }

        /* 促销条 */
        .promo-bar {
            background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-dark) 100%);
            color: #FFFFFF;
            font-size: 0.85rem;
            font-weight: 500;
            text-align: center;
            padding: 8px 16px;
            line-height: 1.5;
            letter-spacing: 0.02em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .promo-bar .accent-text {
            color: var(--accent);
            font-weight: 600;
        }

        /* 主导航 */
        .main-nav-wrapper {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 6px rgba(16, 45, 26, 0.04);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 68px;
            gap: 16px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(16, 45, 26, 0.15);
        }
        .nav-logo .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: 0.06em;
            line-height: 1;
            white-space: nowrap;
        }
        .nav-logo .logo-text em {
            font-style: normal;
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex: 1;
            justify-content: center;
            margin: 0;
            padding: 0;
        }
        .nav-links li a {
            display: inline-block;
            padding: 10px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-main);
            border-radius: var(--radius-sm);
            position: relative;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-links li a:hover {
            color: var(--primary);
            background: var(--bg-light-green);
        }
        .nav-links li a.active {
            color: var(--primary);
            font-weight: 600;
            background: var(--bg-light-green);
        }
        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-icon-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            background: var(--bg-warm);
            border: 1px solid var(--border);
            transition: all var(--transition);
            font-size: 0.95rem;
        }
        .nav-icon-btn:hover,
        .nav-icon-btn:focus {
            color: var(--primary);
            background: var(--bg-light-green);
            border-color: var(--primary);
        }
        .nav-search-box {
            display: flex;
            align-items: center;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 6px 12px;
            gap: 8px;
            min-width: 180px;
        }
        .nav-search-box i {
            color: var(--text-weak);
            font-size: 0.85rem;
        }
        .nav-search-box input {
            border: none;
            background: transparent;
            font-size: 0.85rem;
            outline: none;
            flex: 1;
            color: var(--text-main);
            min-width: 0;
        }
        .nav-search-box input::placeholder {
            color: var(--text-weak);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            font-size: 0.88rem;
            font-weight: 600;
            color: #FFFFFF;
            background: var(--primary);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            white-space: nowrap;
            border: 2px solid var(--primary);
        }
        .nav-cta:hover,
        .nav-cta:focus {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #FFFFFF;
        }
        .hamburger-btn {
            width: 40px;
            height: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: var(--bg-light-green);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .hamburger-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--primary-dark);
            border-radius: 2px;
            transition: all var(--transition);
        }
        .hamburger-btn:hover,
        .hamburger-btn:focus {
            background: var(--bg-light-green);
            border-color: var(--primary);
        }

        /* 抽屉菜单 */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(16, 45, 26, 0.55);
            z-index: 199;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        .drawer-menu {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100%;
            background: var(--bg-white);
            z-index: 200;
            transition: right 0.3s ease;
            box-shadow: -4px 0 24px rgba(16, 45, 26, 0.15);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        .drawer-menu.open {
            right: 0;
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px 12px;
            border-bottom: 1px solid var(--border);
            flex-shrink: 0;
        }
        .drawer-header .drawer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .drawer-header .drawer-logo i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        .drawer-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            transition: all var(--transition);
            font-size: 1rem;
        }
        .drawer-close:hover {
            background: var(--bg-light-green);
            color: var(--primary);
            border-color: var(--primary);
        }
        .drawer-nav {
            flex: 1;
            padding: 12px 16px;
        }
        .drawer-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .drawer-nav ul li a {
            display: block;
            padding: 14px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-main);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            border-bottom: 1px solid var(--border);
        }
        .drawer-nav ul li:last-child a {
            border-bottom: none;
        }
        .drawer-nav ul li a:hover,
        .drawer-nav ul li a.active {
            background: var(--bg-light-green);
            color: var(--primary);
        }
        .drawer-nav ul li a.active {
            font-weight: 600;
        }
        .drawer-search {
            padding: 12px 16px;
            border-top: 1px solid var(--border);
        }
        .drawer-search .nav-search-box {
            width: 100%;
            border-radius: var(--radius-sm);
            min-width: 0;
        }
        .drawer-cta {
            padding: 16px;
            border-top: 1px solid var(--border);
        }
        .drawer-cta .nav-cta {
            width: 100%;
            justify-content: center;
        }

        /* 面包屑 */
        .breadcrumb-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-weak);
            margin-bottom: 16px;
        }
        .breadcrumb-row a {
            color: var(--text-secondary);
            transition: color var(--transition);
        }
        .breadcrumb-row a:hover {
            color: var(--primary);
        }
        .breadcrumb-row .separator {
            color: var(--text-weak);
            font-size: 0.75rem;
        }
        .breadcrumb-row .current {
            color: var(--primary);
            font-weight: 500;
        }

        /* 分类首屏 */
        .category-hero {
            background: linear-gradient(160deg, var(--bg-light-green) 0%, var(--bg-warm) 60%, #F0F4EC 100%);
            padding: 56px 24px 48px;
            border-bottom: 1px solid var(--border);
        }
        .category-hero .category-h1 {
            font-size: 2.0rem;
            font-weight: 700;
            color: var(--primary-darker);
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .category-hero .category-sub {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 600px;
            margin-bottom: 20px;
        }
        .category-stat-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            padding: 24px;
            position: relative;
            overflow: hidden;
        }
        .category-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        .category-stat-card .stat-label {
            font-size: 0.85rem;
            color: var(--text-weak);
            margin-bottom: 4px;
        }
        .category-stat-card .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }
        .category-stat-card .stat-unit {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-left: 4px;
        }
        .category-stat-card .stat-desc {
            font-size: 0.85rem;
            color: var(--text-weak);
            margin-top: 6px;
        }
        .category-stat-card .stat-image {
            margin-top: 16px;
            border-radius: var(--radius-md);
            overflow: hidden;
            max-height: 160px;
        }
        .category-stat-card .stat-image img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        /* Section通用标题 */
        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary-darker);
            line-height: 1.3;
            margin-bottom: 8px;
            position: relative;
            padding-left: 16px;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        .section-desc {
            font-size: 0.98rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 28px;
            padding-left: 16px;
            max-width: 700px;
        }

        /* 卡片 */
        .data-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition);
        }
        .data-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
            transform: translateY(-2px);
        }
        .data-card .card-body {
            padding: 20px;
        }
        .data-card .card-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .data-card .card-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .data-card .card-meta {
            font-size: 0.82rem;
            color: var(--text-weak);
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .data-card .card-meta .badge {
            display: inline-block;
            padding: 3px 10px;
            background: var(--accent);
            color: var(--primary-darker);
            font-size: 0.78rem;
            font-weight: 600;
            border-radius: 6px;
            letter-spacing: 0.02em;
        }
        .data-card .card-meta .badge.green {
            background: var(--primary);
            color: #FFFFFF;
        }

        /* 赛程卡片 */
        .match-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            padding: 20px;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .match-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
            transform: translateY(-3px);
        }
        .match-league {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.03em;
        }
        .match-league .league-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .match-teams .team {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-main);
            flex: 1;
            text-align: center;
        }
        .match-teams .vs {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-weak);
            flex-shrink: 0;
            width: 32px;
            text-align: center;
        }
        .match-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
            color: var(--text-weak);
            border-top: 1px dashed var(--border);
            padding-top: 12px;
        }
        .match-info .match-status {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
            color: var(--primary);
        }
        .match-info .match-status .pulse-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* 表格 */
        .table-wrapper {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            overflow-x: auto;
        }
        .table-wrapper table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
            min-width: 500px;
        }
        .table-wrapper thead {
            background: var(--primary-darker);
            color: #FFFFFF;
        }
        .table-wrapper thead th {
            padding: 14px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: left;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .table-wrapper tbody tr {
            border-bottom: 1px solid var(--border);
            transition: background var(--transition);
        }
        .table-wrapper tbody tr:last-child {
            border-bottom: none;
        }
        .table-wrapper tbody tr:hover {
            background: var(--bg-light-green);
        }
        .table-wrapper tbody td {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-align: left;
        }
        .table-wrapper tbody td:first-child {
            font-weight: 600;
            color: var(--text-main);
        }
        .table-wrapper .highlight-row {
            background: var(--bg-light-green);
        }
        .table-wrapper .highlight-row td {
            font-weight: 600;
            color: var(--primary-dark);
        }

        /* 数据可视化 */
        .viz-container {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            padding: 24px;
        }
        .viz-bar-group {
            display: flex;
            align-items: flex-end;
            gap: 16px;
            height: 220px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }
        .viz-bar-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }
        .viz-bar-item .bar {
            width: 100%;
            max-width: 52px;
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 6px 6px 0 0;
            transition: all 0.4s ease;
            position: relative;
            min-height: 20px;
        }
        .viz-bar-item .bar:hover {
            background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
        }
        .viz-bar-item .bar-label {
            font-size: 0.78rem;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }
        .viz-bar-item .bar-value {
            font-size: 0.75rem;
            color: var(--text-weak);
            font-weight: 500;
        }

        /* 联赛覆盖 */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
        }
        .league-chip {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 16px;
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-main);
            transition: all var(--transition);
            text-align: center;
        }
        .league-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--bg-light-green);
            box-shadow: var(--shadow-card);
        }

        /* 资讯入口卡片 */
        .news-entry-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition);
            display: block;
        }
        .news-entry-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--border-hover);
            transform: translateY(-3px);
            color: inherit;
        }
        .news-entry-card .news-img {
            height: 160px;
            overflow: hidden;
        }
        .news-entry-card .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-entry-card .news-body {
            padding: 16px 18px;
        }
        .news-entry-card .news-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .news-entry-card .news-desc {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .news-entry-card .news-link-more {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary);
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
            padding: 56px 24px;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(201, 232, 76, 0.15);
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -40px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
        }
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }
        .cta-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .cta-content p {
            font-size: 0.98rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .cta-form {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .cta-form input[type="email"] {
            flex: 1;
            min-width: 220px;
            padding: 12px 18px;
            font-size: 0.92rem;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            outline: none;
            transition: all var(--transition);
        }
        .cta-form input[type="email"]::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        .cta-form input[type="email"]:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--primary-darker);
            background: var(--accent);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            white-space: nowrap;
            border: 2px solid var(--accent);
        }
        .cta-btn:hover,
        .cta-btn:focus {
            background: #E0F05A;
            border-color: #E0F05A;
            color: var(--primary-darker);
        }

        /* 页脚 */
        .site-footer {
            background: var(--primary-darker);
            color: rgba(255, 255, 255, 0.85);
            padding: 48px 24px 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            max-width: var(--container-max);
            margin: 0 auto 32px;
        }
        .footer-brand .footer-logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
        }
        .footer-brand p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .footer-col h4 {
            font-size: 0.92rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 14px;
            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 {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            max-width: var(--container-max);
            margin: 0 auto;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .nav-search-box {
                min-width: 120px;
            }
            .nav-links li a {
                padding: 10px 10px;
                font-size: 0.85rem;
            }
            .category-hero .category-h1 {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section-pad {
                padding: var(--section-pad-mobile);
            }
            .section-pad-sm {
                padding: 40px 16px;
            }
            .nav-links {
                display: none;
            }
            .nav-search-box {
                display: none;
            }
            .hidden-mobile {
                display: none;
            }
            .main-nav {
                min-height: 60px;
            }
            .nav-logo .logo-text {
                font-size: 1.2rem;
            }
            .nav-logo .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .category-hero {
                padding: 40px 16px 32px;
            }
            .category-hero .category-h1 {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .section-desc {
                font-size: 0.9rem;
                padding-left: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .viz-bar-group {
                height: 150px;
                gap: 8px;
            }
            .viz-bar-item .bar {
                max-width: 38px;
            }
            .cta-form {
                flex-direction: column;
                align-items: stretch;
            }
            .cta-btn {
                width: 100%;
                justify-content: center;
            }
            .league-grid {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .category-hero .category-h1 {
                font-size: 1.3rem;
            }
            .section-title {
                font-size: 1.25rem;
            }
            .match-card {
                padding: 14px;
            }
            .match-teams .team {
                font-size: 0.9rem;
            }
            .viz-bar-group {
                height: 120px;
                gap: 4px;
            }
            .viz-bar-item .bar {
                max-width: 30px;
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .nav-cta {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            .promo-bar {
                font-size: 0.78rem;
                padding: 6px 12px;
            }
        }

/* roulang page: category3 */
:root {
        --primary: #1E6B3E;
        --primary-dark: #174F2D;
        --primary-darker: #102D1A;
        --accent: #C9E84C;
        --bg-warm: #F5F7F0;
        --bg-white: #FFFFFF;
        --bg-light-green: #EDF3E9;
        --border: #E0E8DC;
        --border-hover: #A6C6A0;
        --text-main: #1C2A20;
        --text-secondary: #5A6B5D;
        --text-weak: #8B9A8D;
        --radius-lg: 12px;
        --radius-md: 10px;
        --radius-sm: 8px;
        --shadow-card: 0 2px 10px rgba(16, 45, 26, 0.06);
        --shadow-hover: 0 8px 24px rgba(16, 45, 26, 0.12);
        --transition: 0.25s ease;
        --font-stack: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        --container-max: 1200px;
        --section-pad: 72px 24px;
        --section-pad-mobile: 40px 16px;
    }
    * {
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    body {
        font-family: var(--font-stack);
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-main);
        background-color: var(--bg-warm);
        margin: 0;
        overflow-x: hidden;
    }
    a {
        color: inherit;
        text-decoration: none;
        transition: color var(--transition);
    }
    a:hover,
    a:focus {
        color: var(--primary);
        outline: none;
    }
    a:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
        border-radius: 4px;
    }
    img {
        max-width: 100%;
        height: auto;
        display: block;
        border: 0;
    }
    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }
    button {
        cursor: pointer;
        border: none;
        background: none;
    }
    .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
    }
    .section-pad {
        padding: var(--section-pad);
    }
    .section-pad-sm {
        padding: 48px 24px;
    }
    .text-center {
        text-align: center;
    }
    .hidden-mobile {
        display: block;
    }
    /* 导航 */
    .main-nav-wrapper {
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 1px 6px rgba(16, 45, 26, 0.04);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 68px;
        gap: 16px;
    }
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }
    .nav-logo .logo-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.2rem;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(16, 45, 26, 0.15);
    }
    .nav-logo .logo-text {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-dark);
        letter-spacing: 0.06em;
        line-height: 1;
        white-space: nowrap;
    }
    .nav-logo .logo-text em {
        font-style: normal;
        color: var(--primary);
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        flex: 1;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    .nav-links li a {
        display: inline-block;
        padding: 10px 14px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--text-main);
        border-radius: var(--radius-sm);
        position: relative;
        transition: all var(--transition);
        white-space: nowrap;
    }
    .nav-links li a:hover {
        color: var(--primary);
        background: var(--bg-light-green);
    }
    .nav-links li a.active {
        color: var(--primary);
        font-weight: 600;
        background: var(--bg-light-green);
    }
    .nav-links li a.active::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--primary);
        border-radius: 1px;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }
    .nav-icon-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        background: var(--bg-warm);
        border: 1px solid var(--border);
        transition: all var(--transition);
        font-size: 0.95rem;
    }
    .nav-icon-btn:hover,
    .nav-icon-btn:focus {
        color: var(--primary);
        background: var(--bg-light-green);
        border-color: var(--primary);
    }
    .nav-search-box {
        display: flex;
        align-items: center;
        background: var(--bg-warm);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 6px 12px;
        gap: 8px;
        min-width: 200px;
    }
    .nav-search-box i {
        color: var(--text-weak);
        font-size: 0.85rem;
    }
    .nav-search-box input {
        border: none;
        background: transparent;
        outline: none;
        font-size: 0.85rem;
        color: var(--text-main);
        width: 100%;
        padding: 4px 0;
    }
    .nav-search-box input::placeholder {
        color: var(--text-weak);
    }
    .nav-cta {
        display: inline-block;
        padding: 10px 20px;
        background: var(--primary);
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
        transition: all var(--transition);
        white-space: nowrap;
        border: 1px solid var(--primary);
    }
    .nav-cta:hover,
    .nav-cta:focus {
        background: var(--primary-dark);
        color: #fff;
        border-color: var(--primary-dark);
    }
    .hamburger-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        background: var(--bg-warm);
        transition: all var(--transition);
    }
    .hamburger-btn span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text-main);
        border-radius: 1px;
        transition: all var(--transition);
    }
    .hamburger-btn:hover,
    .hamburger-btn:focus {
        border-color: var(--primary);
        background: var(--bg-light-green);
    }
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 200;
    }
    .mobile-drawer {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        z-index: 210;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        padding: 24px 20px;
        overflow-y: auto;
    }
    .mobile-drawer.open {
        right: 0;
    }
    .mobile-drawer .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .mobile-drawer .drawer-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--primary-dark);
    }
    .mobile-drawer .drawer-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--bg-warm);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        font-size: 1rem;
        transition: all var(--transition);
    }
    .mobile-drawer .drawer-close:hover {
        color: var(--primary);
        border-color: var(--primary);
    }
    .mobile-drawer .drawer-search {
        display: flex;
        align-items: center;
        background: var(--bg-warm);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 8px 14px;
        gap: 8px;
        margin-bottom: 20px;
    }
    .mobile-drawer .drawer-search input {
        border: none;
        background: transparent;
        outline: none;
        flex: 1;
        font-size: 0.9rem;
    }
    .mobile-drawer .drawer-nav {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
    }
    .mobile-drawer .drawer-nav li a {
        display: block;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        font-weight: 500;
        color: var(--text-main);
        transition: all var(--transition);
    }
    .mobile-drawer .drawer-nav li a:hover,
    .mobile-drawer .drawer-nav li a.active {
        background: var(--bg-light-green);
        color: var(--primary);
    }
    .mobile-drawer .drawer-cta {
        display: block;
        width: 100%;
        padding: 12px;
        background: var(--primary);
        color: #fff;
        text-align: center;
        border-radius: var(--radius-sm);
        font-weight: 600;
        transition: all var(--transition);
    }
    .mobile-drawer .drawer-cta:hover {
        background: var(--primary-dark);
        color: #fff;
    }

    /* 页面通用 */
    .breadcrumb {
        padding: 16px 24px;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        font-size: 0.85rem;
        color: var(--text-secondary);
    }
    .breadcrumb .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .breadcrumb a {
        color: var(--primary);
        font-weight: 500;
    }
    .breadcrumb a:hover {
        text-decoration: underline;
    }
    .breadcrumb span {
        margin: 0 6px;
    }
    .section-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--primary-darker);
        line-height: 1.3;
        margin-bottom: 8px;
        position: relative;
        padding-left: 16px;
    }
    .section-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 8px;
        width: 4px;
        background: var(--primary);
        border-radius: 2px;
    }
    .section-subtitle {
        font-size: 0.95rem;
        color: var(--text-secondary);
        max-width: 680px;
        line-height: 1.7;
        margin-bottom: 28px;
    }
    .section-heading {
        margin-bottom: 32px;
    }
    .card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-card);
        transition: all var(--transition);
        overflow: hidden;
    }
    .card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
        transform: translateY(-2px);
    }
    .card-body {
        padding: 20px;
    }
    .card-title {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--primary-darker);
        line-height: 1.35;
        margin-bottom: 8px;
    }
    .card-text {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 12px;
    }
    .card-tag {
        display: inline-block;
        padding: 3px 10px;
        background: var(--bg-light-green);
        color: var(--primary);
        font-size: 0.8rem;
        font-weight: 500;
        border-radius: 6px;
        margin-right: 6px;
    }
    .badge-accent {
        display: inline-block;
        padding: 3px 10px;
        background: var(--accent);
        color: var(--primary-darker);
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 6px;
        margin-right: 6px;
    }
    .btn {
        display: inline-block;
        padding: 10px 22px;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 0.9rem;
        transition: all var(--transition);
        text-align: center;
        cursor: pointer;
    }
    .btn-primary {
        background: var(--primary);
        color: #fff;
        border: 1px solid var(--primary);
    }
    .btn-primary:hover,
    .btn-primary:focus {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
    }
    .btn-secondary {
        background: #fff;
        color: var(--primary);
        border: 1px solid var(--primary);
    }
    .btn-secondary:hover,
    .btn-secondary:focus {
        background: var(--bg-light-green);
        border-color: var(--primary);
        color: var(--primary);
    }
    .btn-accent {
        background: var(--accent);
        color: var(--primary-darker);
        border: 1px solid var(--accent);
    }
    .btn-accent:hover,
    .btn-accent:focus {
        background: #d9f05e;
        border-color: #d9f05e;
        color: var(--primary-darker);
    }
    .btn-sm {
        padding: 7px 14px;
        font-size: 0.82rem;
    }

    /* 分类首屏 */
    .category-hero {
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        padding: 48px 24px;
    }
    .category-hero .container {
        display: flex;
        align-items: stretch;
        gap: 32px;
    }
    .category-hero-left {
        flex: 1.3;
    }
    .category-hero-right {
        flex: 0.7;
        background: var(--bg-light-green);
        border-radius: var(--radius-lg);
        padding: 28px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 1px solid var(--border);
    }
    .category-hero h1 {
        font-size: 2.3rem;
        font-weight: 700;
        color: var(--primary-darker);
        line-height: 1.25;
        margin-bottom: 16px;
    }
    .category-hero .hero-desc {
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.8;
        max-width: 620px;
        margin-bottom: 20px;
    }
    .category-hero .hero-stats {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .category-hero .hero-stat {
        text-align: center;
    }
    .category-hero .hero-stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1.2;
    }
    .category-hero .hero-stat-label {
        font-size: 0.8rem;
        color: var(--text-weak);
    }
    .category-hero-right h3 {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--primary-darker);
        margin-bottom: 12px;
    }
    .category-hero-right ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .category-hero-right ul li {
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.9rem;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .category-hero-right ul li:last-child {
        border-bottom: none;
    }
    .category-hero-right ul li i {
        color: var(--primary);
        font-size: 0.85rem;
        width: 16px;
    }

    /* 数据快报条 */
    .data-strip {
        background: var(--primary-darker);
        padding: 32px 24px;
    }
    .data-strip .container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }
    .data-strip .data-item {
        color: #fff;
    }
    .data-strip .data-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent);
        line-height: 1.2;
    }
    .data-strip .data-label {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.75);
        margin-top: 4px;
    }

    /* 球队卡片网格 */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .team-card .team-cover {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/9;
        background: var(--bg-light-green);
    }
    .team-card .team-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition);
    }
    .team-card:hover .team-cover img {
        transform: scale(1.05);
    }
    .team-card .team-cover .team-badge-overlay {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(16,45,26,0.85);
        color: #fff;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: 0.78rem;
        font-weight: 500;
    }
    .team-card .team-info {
        padding: 16px 20px 20px;
    }
    .team-card .team-name {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--primary-darker);
        margin-bottom: 6px;
    }
    .team-card .team-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.8rem;
        color: var(--text-weak);
        margin-bottom: 10px;
    }
    .team-card .team-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .team-card .team-desc {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* 球员数据表格 */
    .player-table-section {
        background: var(--bg-white);
    }
    .player-table-wrapper {
        overflow-x: auto;
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
    }
    .player-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
        min-width: 700px;
    }
    .player-table th {
        background: var(--primary-darker);
        color: #fff;
        padding: 14px 16px;
        text-align: left;
        font-weight: 600;
        white-space: nowrap;
    }
    .player-table td {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        color: var(--text-secondary);
        white-space: nowrap;
    }
    .player-table tr:nth-child(even) {
        background: var(--bg-warm);
    }
    .player-table tr:hover td {
        background: var(--bg-light-green);
    }
    .player-table .player-name {
        font-weight: 600;
        color: var(--primary-darker);
    }
    .player-table .player-pos {
        display: inline-block;
        padding: 2px 8px;
        background: var(--bg-light-green);
        color: var(--primary);
        border-radius: 4px;
        font-size: 0.78rem;
        font-weight: 500;
    }
    .player-table .player-rating {
        font-weight: 600;
        color: var(--primary);
    }

    /* 时间线 */
    .timeline-section {
        background: var(--bg-warm);
    }
    .timeline {
        position: relative;
        padding-left: 28px;
    }
    .timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 4px;
        bottom: 4px;
        width: 2px;
        background: var(--border-hover);
        border-radius: 1px;
    }
    .timeline-item {
        position: relative;
        margin-bottom: 24px;
        padding-left: 20px;
    }
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -28px;
        top: 12px;
        width: 12px;
        height: 12px;
        background: var(--primary);
        border-radius: 50%;
        border: 3px solid var(--accent);
    }
    .timeline-item .timeline-year {
        font-weight: 700;
        color: var(--primary);
        font-size: 1.05rem;
        margin-bottom: 4px;
    }
    .timeline-item .timeline-title {
        font-weight: 600;
        color: var(--primary-darker);
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .timeline-item .timeline-desc {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* 工具介绍 */
    .tool-section {
        background: var(--primary-darker);
        padding: 56px 24px;
        border-radius: 0;
        color: #fff;
    }
    .tool-section .section-title {
        color: #fff;
    }
    .tool-section .section-title::before {
        background: var(--accent);
    }
    .tool-section .section-subtitle {
        color: rgba(255,255,255,0.7);
    }
    .tool-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 24px;
    }
    .tool-card {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: var(--radius-md);
        padding: 24px;
        transition: all var(--transition);
    }
    .tool-card:hover {
        background: rgba(255,255,255,0.12);
        border-color: var(--accent);
    }
    .tool-card .tool-icon {
        width: 48px;
        height: 48px;
        background: var(--accent);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-darker);
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .tool-card h4 {
        font-size: 1.05rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 8px;
    }
    .tool-card p {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
        margin: 0;
    }

    /* 精选深读 */
    .featured-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: all var(--transition);
    }
    .featured-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
    }
    .featured-card .featured-img {
        aspect-ratio: 16/9;
        overflow: hidden;
    }
    .featured-card .featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition);
    }
    .featured-card:hover .featured-img img {
        transform: scale(1.04);
    }
    .featured-card .featured-content {
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .featured-card .featured-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-darker);
        margin-bottom: 10px;
        line-height: 1.4;
    }
    .featured-card .featured-desc {
        font-size: 0.92rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 16px;
    }

    /* 相关资讯入口 */
    .related-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .related-card {
        display: flex;
        gap: 16px;
        padding: 16px;
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        transition: all var(--transition);
        align-items: center;
    }
    .related-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
    }
    .related-card .related-icon {
        width: 48px;
        height: 48px;
        background: var(--bg-light-green);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    .related-card .related-content h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-darker);
        margin-bottom: 4px;
    }
    .related-card .related-content p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.5;
    }

    /* 页脚 */
    .site-footer {
        background: var(--primary-darker);
        color: rgba(255,255,255,0.85);
        padding: 56px 24px 24px;
    }
    .site-footer .footer-grid {
        max-width: var(--container-max);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand .footer-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }
    .footer-brand .footer-logo .logo-dot {
        width: 10px;
        height: 10px;
        background: var(--accent);
        border-radius: 50%;
        display: inline-block;
    }
    .footer-brand p {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.65);
        line-height: 1.7;
        max-width: 360px;
    }
    .footer-col h4 {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 14px;
    }
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-col ul li {
        margin-bottom: 8px;
    }
    .footer-col ul li a {
        color: rgba(255,255,255,0.65);
        font-size: 0.88rem;
        transition: color var(--transition);
    }
    .footer-col ul li a:hover {
        color: var(--accent);
    }
    .footer-bottom {
        max-width: var(--container-max);
        margin: 0 auto;
        padding-top: 20px;
        text-align: center;
        font-size: 0.82rem;
        color: rgba(255,255,255,0.5);
    }

    /* 响应式 */
    @media (max-width: 1024px) {
        .nav-links li a {
            padding: 8px 10px;
            font-size: 0.85rem;
        }
        .nav-search-box {
            min-width: 160px;
        }
        .team-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .tool-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .category-hero .container {
            flex-direction: column;
        }
        .category-hero-right {
            flex: 1;
        }
        .data-strip .container {
            grid-template-columns: repeat(2, 1fr);
        }
        .site-footer .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .featured-card {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        .nav-search-box {
            display: none;
        }
        .hidden-mobile {
            display: none;
        }
        .hamburger-btn {
            display: flex;
        }
        .nav-cta {
            display: none;
        }
        .container {
            padding-left: 16px;
            padding-right: 16px;
        }
        .section-pad {
            padding: var(--section-pad-mobile);
        }
        .section-pad-sm {
            padding: 40px 16px;
        }
        .team-grid {
            grid-template-columns: 1fr;
        }
        .tool-grid {
            grid-template-columns: 1fr;
        }
        .related-grid {
            grid-template-columns: 1fr;
        }
        .category-hero {
            padding: 32px 16px;
        }
        .category-hero h1 {
            font-size: 1.8rem;
        }
        .data-strip .container {
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .data-strip .data-number {
            font-size: 1.4rem;
        }
        .breadcrumb {
            padding: 12px 16px;
        }
        .breadcrumb .container {
            padding-left: 16px;
            padding-right: 16px;
        }
        .site-footer {
            padding: 40px 16px 20px;
        }
        .site-footer .footer-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .player-table-wrapper {
            border-radius: var(--radius-sm);
        }
        .timeline {
            padding-left: 20px;
        }
        .timeline-item {
            padding-left: 12px;
        }
    }
    @media (max-width: 520px) {
        .category-hero h1 {
            font-size: 1.6rem;
        }
        .section-title {
            font-size: 1.4rem;
        }
        .data-strip .container {
            grid-template-columns: 1fr;
        }
        .featured-card .featured-content {
            padding: 20px;
        }
        .tool-card {
            padding: 18px;
        }
    }

/* roulang page: category4 */
:root {
      --primary: #1E6B3E;
      --primary-dark: #174F2D;
      --primary-darker: #102D1A;
      --accent: #C9E84C;
      --bg-warm: #F5F7F0;
      --bg-white: #FFFFFF;
      --bg-light-green: #EDF3E9;
      --border: #E0E8DC;
      --border-hover: #A6C6A0;
      --text-main: #1C2A20;
      --text-secondary: #5A6B5D;
      --text-weak: #8B9A8D;
      --radius-lg: 12px;
      --radius-md: 10px;
      --radius-sm: 8px;
      --shadow-card: 0 2px 10px rgba(16, 45, 26, 0.06);
      --shadow-hover: 0 8px 24px rgba(16, 45, 26, 0.12);
      --transition: 0.25s ease;
      --font-stack: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
      --container-max: 1200px;
      --section-pad: 72px 24px;
      --section-pad-mobile: 40px 16px;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-stack);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-main);
      background-color: var(--bg-warm);
      overflow-x: hidden;
      margin: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition);
    }

    a:hover,
    a:focus {
      color: var(--primary);
      outline: none;
    }

    a:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
      border-radius: 4px;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      border: 0;
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
    }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    .section-pad {
      padding: var(--section-pad);
    }

    .section-pad-sm {
      padding: 48px 24px;
    }

    .promo-bar {
      background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary) 55%, #3a8b54 100%);
      color: #fff;
      min-height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      padding: 0 16px;
    }

    .promo-bar .promo-highlight {
      color: var(--accent);
      font-weight: 600;
      margin-right: 6px;
    }

    .main-nav-wrapper {
      background: var(--bg-white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 6px rgba(16, 45, 26, 0.04);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 68px;
      gap: 16px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-logo .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.2rem;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(16, 45, 26, 0.15);
    }

    .nav-logo .logo-text {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary-dark);
      letter-spacing: 0.06em;
      line-height: 1;
      white-space: nowrap;
    }

    .nav-logo .logo-text em {
      font-style: normal;
      color: var(--primary);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      flex: 1;
      justify-content: center;
      margin: 0;
    }

    .nav-links li a {
      display: inline-block;
      padding: 10px 14px;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-main);
      border-radius: var(--radius-sm);
      position: relative;
      transition: all var(--transition);
      white-space: nowrap;
    }

    .nav-links li a:hover {
      color: var(--primary);
      background: var(--bg-light-green);
    }

    .nav-links li a.active {
      color: var(--primary);
      font-weight: 600;
      background: var(--bg-light-green);
    }

    .nav-links li a.active::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--primary);
      border-radius: 1px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-icon-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      background: var(--bg-warm);
      border: 1px solid var(--border);
      transition: all var(--transition);
      font-size: 0.95rem;
    }

    .nav-icon-btn:hover,
    .nav-icon-btn:focus {
      color: var(--primary);
      background: var(--bg-light-green);
      border-color: var(--primary);
    }

    .nav-search-box {
      display: flex;
      align-items: center;
      background: var(--bg-warm);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 6px 12px;
      gap: 8px;
      min-width: 220px;
      color: var(--text-weak);
    }

    .nav-search-box input {
      border: none;
      background: transparent;
      outline: none;
      width: 100%;
      font-size: 0.85rem;
      color: var(--text-main);
    }

    .nav-search-box input::placeholder {
      color: var(--text-weak);
    }

    .nav-cta {
      background: var(--primary);
      color: #fff;
      padding: 9px 18px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.9rem;
      white-space: nowrap;
      transition: background var(--transition), box-shadow var(--transition);
    }

    .nav-cta:hover,
    .nav-cta:focus {
      background: var(--primary-dark);
      color: #fff;
      box-shadow: 0 4px 12px rgba(30, 107, 62, 0.2);
    }

    .hamburger-btn {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      background: var(--bg-warm);
      border: 1px solid var(--border);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .hamburger-btn span {
      width: 18px;
      height: 2px;
      background: var(--text-main);
      border-radius: 1px;
      transition: all var(--transition);
      display: block;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100vh;
      background: var(--bg-white);
      z-index: 200;
      box-shadow: -8px 0 30px rgba(16, 45, 26, 0.15);
      transition: right 0.3s ease;
      padding: 24px 18px;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .mobile-drawer.open {
      right: 0;
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 199;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .drawer-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .drawer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 18px;
    }

    .drawer-logo i {
      color: var(--primary);
    }

    .drawer-nav {
      list-style: none;
      padding: 0;
      margin: 0 0 16px;
    }

    .drawer-nav li a {
      display: block;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-weight: 500;
      color: var(--text-main);
    }

    .drawer-nav li a.active {
      color: var(--primary);
      font-weight: 600;
    }

    .drawer-cta {
      margin-top: auto;
      background: var(--primary);
      color: #fff;
      text-align: center;
      padding: 11px 16px;
      border-radius: var(--radius-sm);
      font-weight: 600;
    }

    .category-hero {
      background: linear-gradient(135deg, #F5F7F0 0%, #EDF3E9 100%);
      border-bottom: 1px solid var(--border);
      padding: 40px 0 48px;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-weak);
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .breadcrumb a {
      color: var(--text-weak);
    }

    .breadcrumb a:hover {
      color: var(--primary);
    }

    .category-hero h1 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .category-hero .hero-lead {
      font-size: 1rem;
      color: var(--text-secondary);
      max-width: 640px;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .category-hero .stat-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      padding: 20px;
    }

    .stat-card img {
      border-radius: var(--radius-sm);
      margin-bottom: 12px;
      height: 140px;
      object-fit: cover;
      width: 100%;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .stat-item .stat-num {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
    }

    .stat-item .stat-label {
      font-size: 0.8rem;
      color: var(--text-weak);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 28px;
      gap: 12px;
      flex-wrap: wrap;
    }

    .section-head h2 {
      font-size: 1.6rem;
      font-weight: 650;
      color: var(--text-main);
      margin: 0;
      position: relative;
      padding-left: 14px;
    }

    .section-head h2::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 4px;
      width: 4px;
      background: var(--primary);
      border-radius: 2px;
    }

    .section-head p {
      margin: 0;
      color: var(--text-secondary);
      max-width: 600px;
      font-size: 0.95rem;
    }

    .link-more {
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .review-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: all var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .review-card:hover {
      box-shadow: var(--shadow-hover);
      border-color: var(--border-hover);
      transform: translateY(-4px);
    }

    .review-card img {
      width: 100%;
      height: 170px;
      object-fit: cover;
    }

    .review-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .review-category {
      display: inline-flex;
      align-self: flex-start;
      background: var(--bg-light-green);
      color: var(--primary);
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 999px;
      margin-bottom: 8px;
    }

    .review-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.4;
      margin-bottom: 6px;
    }

    .review-summary {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .review-meta {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border);
      padding-top: 10px;
      font-size: 0.8rem;
      color: var(--text-weak);
      gap: 6px;
      flex-wrap: wrap;
    }

    .rating-stars {
      color: #f2b01e;
      letter-spacing: 1px;
      font-size: 0.82rem;
    }

    .rating-score {
      font-weight: 700;
      color: var(--text-main);
      margin-left: 4px;
    }

    .recommend {
      font-weight: 600;
      color: var(--primary);
    }

    .guide-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px;
      box-shadow: var(--shadow-card);
      transition: all var(--transition);
      height: 100%;
    }

    .guide-card:hover {
      border-color: var(--border-hover);
      box-shadow: var(--shadow-hover);
      transform: translateY(-3px);
    }

    .guide-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg-light-green);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .guide-card h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .guide-card p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin: 0;
    }

    .ranking-list {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .ranking-item {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      gap: 10px;
    }

    .ranking-item:last-child {
      border-bottom: none;
    }

    .ranking-rank {
      width: 30px;
      height: 30px;
      border-radius: var(--radius-sm);
      background: var(--bg-warm);
      color: var(--text-secondary);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ranking-item:nth-child(1) .ranking-rank {
      background: var(--accent);
      color: var(--primary-darker);
    }

    .ranking-item:nth-child(2) .ranking-rank {
      background: #d9e8c7;
      color: var(--primary-darker);
    }

    .ranking-item:nth-child(3) .ranking-rank {
      background: #efd9a7;
      color: #5c4a10;
    }

    .ranking-name {
      flex: 1;
      font-weight: 500;
      color: var(--text-main);
      font-size: 0.95rem;
    }

    .ranking-tag {
      font-size: 0.75rem;
      color: var(--text-weak);
      margin-right: 10px;
      white-space: nowrap;
    }

    .ranking-score {
      font-weight: 700;
      color: var(--primary);
      white-space: nowrap;
    }

    .compare-wrap {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-card);
    }

    .compare-wrap .compare-intro {
      margin-bottom: 18px;
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 16px;
    }

    .compare-item {
      padding: 16px;
      background: var(--bg-warm);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
    }

    .compare-item .compare-dimension {
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .compare-item p {
      font-size: 0.82rem;
      color: var(--text-secondary);
      margin: 0;
    }

    .related-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: all var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .related-card:hover {
      box-shadow: var(--shadow-hover);
      border-color: var(--border-hover);
      transform: translateY(-3px);
    }

    .related-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .related-body {
      padding: 14px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .related-body h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .related-body p {
      font-size: 0.82rem;
      color: var(--text-secondary);
      margin-bottom: 12px;
    }

    .related-link {
      margin-top: auto;
      font-weight: 600;
      color: var(--primary);
      font-size: 0.85rem;
    }

    .cta-section {
      background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
      padding: 48px 24px;
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: center;
      max-width: var(--container-max);
      margin: 0 auto;
    }

    .cta-text h2 {
      color: #fff;
      font-size: 1.7rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cta-text p {
      color: rgba(255, 255, 255, 0.85);
      margin: 0;
    }

    .cta-form {
      display: flex;
      gap: 8px;
    }

    .cta-form input {
      flex: 1;
      height: 44px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      padding: 0 12px;
      outline: none;
    }

    .cta-form input::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .cta-form input:focus {
      border-color: var(--accent);
    }

    .cta-form button {
      height: 44px;
      background: var(--accent);
      color: var(--primary-darker);
      font-weight: 700;
      border-radius: var(--radius-sm);
      padding: 0 22px;
      transition: background var(--transition);
      white-space: nowrap;
    }

    .cta-form button:hover {
      background: #d7f05a;
    }

    .site-footer {
      background: var(--primary-darker);
      color: #fff;
      padding: 48px 24px 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.9rem;
    }

    .footer-logo {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-logo .logo-dot {
      width: 10px;
      height: 10px;
      background: var(--accent);
      border-radius: 50%;
      display: inline-block;
    }

    .footer-col h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--accent);
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col li a {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.9rem;
      line-height: 2;
    }

    .footer-col li a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 24px auto 0;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
    }

    @media (max-width: 991px) {
      .nav-links,
      .nav-search-box,
      .hidden-mobile {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      .category-hero .grid-x {
        flex-direction: column;
      }

      .category-hero .cell {
        width: 100%;
      }

      .stat-card {
        margin-top: 20px;
      }

      .cta-inner {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767px) {
      .section-pad {
        padding: var(--section-pad-mobile);
      }

      .section-pad-sm {
        padding: 40px 16px;
      }

      .category-hero h1 {
        font-size: 1.6rem;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-form {
        flex-direction: column;
      }

      .cta-form button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .compare-grid {
        grid-template-columns: 1fr;
      }

      .promo-bar {
        font-size: 0.72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }

    @media (max-width: 480px) {
      .category-hero {
        padding: 32px 0 36px;
      }

      .category-hero h1 {
        font-size: 1.4rem;
      }

      .section-head h2 {
        font-size: 1.4rem;
      }

      .review-card img {
        height: 150px;
      }

      .cta-text h2 {
        font-size: 1.4rem;
      }
    }

/* roulang page: category5 */
:root {
        --primary: #1E6B3E;
        --primary-dark: #174F2D;
        --primary-darker: #102D1A;
        --accent: #C9E84C;
        --bg-warm: #F5F7F0;
        --bg-white: #FFFFFF;
        --bg-light-green: #EDF3E9;
        --border: #E0E8DC;
        --border-hover: #A6C6A0;
        --text-main: #1C2A20;
        --text-secondary: #5A6B5D;
        --text-weak: #8B9A8D;
        --radius-lg: 12px;
        --radius-md: 10px;
        --radius-sm: 8px;
        --shadow-card: 0 2px 10px rgba(16, 45, 26, 0.06);
        --shadow-hover: 0 8px 24px rgba(16, 45, 26, 0.12);
        --transition: 0.25s ease;
        --font-stack: 'PingFang SC', 'HarmonyOS Sans SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        --container-max: 1200px;
        --section-pad: 72px 24px;
        --section-pad-mobile: 40px 16px;
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        font-family: var(--font-stack);
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-main);
        background-color: var(--bg-warm);
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: color var(--transition);
    }

    a:hover,
    a:focus {
        color: var(--primary);
        outline: none;
    }

    a:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
        border-radius: 4px;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
        border: 0;
    }

    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
        line-height: inherit;
    }

    button {
        cursor: pointer;
        border: none;
        background: none;
    }

    ul,
    ol {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0;
        font-weight: 650;
        line-height: 1.3;
        color: var(--text-main);
    }

    p {
        margin: 0;
    }

    .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .section-pad {
        padding: var(--section-pad);
    }

    .section-pad-sm {
        padding: 48px 24px;
    }

    @media (max-width: 767px) {
        .container {
            padding-left: 16px;
            padding-right: 16px;
        }
        .section-pad {
            padding: var(--section-pad-mobile);
        }
        .section-pad-sm {
            padding: 40px 16px;
        }
    }

    /* Promotion Bar */
    .promo-bar {
        background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary) 60%, var(--primary-dark) 100%);
        color: #FFFFFF;
        text-align: center;
        font-size: 0.82rem;
        font-weight: 500;
        padding: 8px 16px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.02em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .promo-bar .promo-icon {
        color: var(--accent);
        margin-right: 8px;
        font-size: 0.9rem;
    }

    .promo-bar .promo-highlight {
        color: var(--accent);
        font-weight: 650;
        margin: 0 4px;
    }

    @media (max-width: 480px) {
        .promo-bar {
            font-size: 0.75rem;
            padding: 6px 10px;
        }
    }

    /* Main Nav */
    .main-nav-wrapper {
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 1px 6px rgba(16, 45, 26, 0.04);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 68px;
        gap: 16px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .nav-logo .logo-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.2rem;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(16, 45, 26, 0.15);
    }

    .nav-logo .logo-text {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-dark);
        letter-spacing: 0.06em;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-logo .logo-text em {
        font-style: normal;
        color: var(--primary);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
        flex: 1;
        justify-content: center;
    }

    .nav-links li a {
        display: inline-block;
        padding: 10px 14px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--text-main);
        border-radius: var(--radius-sm);
        position: relative;
        transition: all var(--transition);
        white-space: nowrap;
    }

    .nav-links li a:hover {
        color: var(--primary);
        background: var(--bg-light-green);
    }

    .nav-links li a.active {
        color: var(--primary);
        font-weight: 600;
        background: var(--bg-light-green);
    }

    .nav-links li a.active::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--primary);
        border-radius: 1px;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .nav-icon-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        background: var(--bg-warm);
        border: 1px solid var(--border);
        transition: all var(--transition);
        font-size: 0.95rem;
    }

    .nav-icon-btn:hover,
    .nav-icon-btn:focus {
        color: var(--primary);
        background: var(--bg-light-green);
        border-color: var(--primary);
    }

    .nav-search-box {
        display: flex;
        align-items: center;
        background: var(--bg-warm);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 6px 12px;
        gap: 8px;
        max-width: 200px;
        transition: border-color var(--transition);
    }

    .nav-search-box:focus-within {
        border-color: var(--primary);
    }

    .nav-search-box i {
        color: var(--text-weak);
        font-size: 0.85rem;
    }

    .nav-search-box input {
        border: none;
        background: transparent;
        font-size: 0.85rem;
        color: var(--text-main);
        outline: none;
        width: 100%;
        min-width: 0;
    }

    .nav-search-box input::placeholder {
        color: var(--text-weak);
    }

    .nav-cta {
        display: inline-block;
        padding: 10px 20px;
        background: var(--primary);
        color: #FFFFFF;
        border-radius: var(--radius-sm);
        font-size: 0.88rem;
        font-weight: 600;
        white-space: nowrap;
        transition: all var(--transition);
        letter-spacing: 0.01em;
    }

    .nav-cta:hover,
    .nav-cta:focus {
        background: var(--primary-dark);
        color: #FFFFFF;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(30, 107, 62, 0.25);
    }

    .hamburger-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
        border-radius: var(--radius-sm);
        background: transparent;
        transition: background var(--transition);
    }

    .hamburger-btn:hover {
        background: var(--bg-light-green);
    }

    .hamburger-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-main);
        border-radius: 1px;
        transition: all var(--transition);
        transform-origin: center;
    }

    .hamburger-btn[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-btn[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hidden-mobile {
        display: flex;
    }

    @media (max-width: 1024px) {
        .nav-search-box {
            max-width: 140px;
        }
        .nav-links li a {
            padding: 10px 8px;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 768px) {
        .hidden-mobile {
            display: none;
        }
        .nav-search-box {
            display: none;
        }
        .nav-links {
            display: none;
        }
        .nav-cta {
            display: none;
        }
        .hamburger-btn {
            display: flex;
        }
        .main-nav {
            min-height: 56px;
            padding: 8px 0;
        }
        .nav-logo .logo-icon {
            width: 34px;
            height: 34px;
            font-size: 1rem;
        }
        .nav-logo .logo-text {
            font-size: 1.2rem;
        }
    }

    /* Drawer Menu */
    .drawer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(16, 45, 26, 0.55);
        z-index: 199;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .drawer-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .drawer-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100%;
        background: var(--bg-white);
        z-index: 200;
        box-shadow: -8px 0 32px rgba(16, 45, 26, 0.18);
        transition: right 0.32s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .drawer-menu.open {
        right: 0;
    }

    .drawer-promo {
        background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary) 100%);
        color: #FFFFFF;
        font-size: 0.78rem;
        padding: 10px 16px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-shrink: 0;
    }

    .drawer-body {
        padding: 20px 16px;
        flex: 1;
        overflow-y: auto;
    }

    .drawer-body .drawer-nav {
        list-style: none;
        margin-bottom: 16px;
    }

    .drawer-body .drawer-nav li a {
        display: block;
        padding: 14px 12px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-main);
        border-radius: var(--radius-sm);
        transition: all var(--transition);
        border-bottom: 1px solid var(--border);
    }

    .drawer-body .drawer-nav li a:hover,
    .drawer-body .drawer-nav li a.active {
        color: var(--primary);
        background: var(--bg-light-green);
    }

    .drawer-body .drawer-nav li a.active {
        font-weight: 650;
    }

    .drawer-search {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--bg-warm);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 8px 14px;
        margin-bottom: 16px;
    }

    .drawer-search input {
        border: none;
        background: transparent;
        flex: 1;
        outline: none;
        color: var(--text-main);
        font-size: 0.9rem;
    }

    .drawer-search i {
        color: var(--text-weak);
    }

    .drawer-cta {
        display: block;
        text-align: center;
        padding: 14px 20px;
        background: var(--primary);
        color: #FFFFFF;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 0.95rem;
        transition: all var(--transition);
    }

    .drawer-cta:hover {
        background: var(--primary-dark);
        color: #FFFFFF;
    }

    /* Breadcrumb */
    .breadcrumb-wrapper {
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: var(--text-weak);
        flex-wrap: wrap;
    }

    .breadcrumb a {
        color: var(--text-secondary);
        transition: color var(--transition);
    }

    .breadcrumb a:hover {
        color: var(--primary);
    }

    .breadcrumb .separator {
        color: var(--border-hover);
        font-size: 0.7rem;
    }

    .breadcrumb .current {
        color: var(--primary);
        font-weight: 550;
    }

    /* Category Intro Section */
    .cat-intro {
        background: var(--bg-white);
        padding: 48px 0;
        border-bottom: 1px solid var(--border);
    }

    .cat-intro-grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .cat-intro-left h1 {
        font-size: 2.1rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
        color: var(--text-main);
        letter-spacing: 0.01em;
    }

    .cat-intro-left h1 .highlight {
        color: var(--primary);
    }

    .cat-intro-left .intro-desc {
        font-size: 1.02rem;
        color: var(--text-secondary);
        line-height: 1.75;
        margin-bottom: 20px;
    }

    .intro-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .intro-tags .tag {
        padding: 5px 12px;
        background: var(--bg-light-green);
        color: var(--primary-dark);
        border-radius: 20px;
        font-size: 0.78rem;
        font-weight: 550;
        border: 1px solid var(--border);
    }

    .cat-intro-right .stat-card {
        background: var(--bg-warm);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 24px;
        box-shadow: var(--shadow-card);
    }

    .stat-card h3 {
        font-size: 1.05rem;
        color: var(--primary-dark);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stat-card h3 i {
        color: var(--primary);
    }

    .stat-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px dashed var(--border);
        font-size: 0.88rem;
    }

    .stat-row:last-child {
        border-bottom: none;
    }

    .stat-row .stat-label {
        color: var(--text-secondary);
    }

    .stat-row .stat-value {
        font-weight: 650;
        color: var(--primary);
    }

    @media (max-width: 768px) {
        .cat-intro-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .cat-intro-left h1 {
            font-size: 1.6rem;
        }
        .cat-intro {
            padding: 32px 0;
        }
    }

    /* Section Titles */
    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 1.7rem;
        font-weight: 650;
        color: var(--text-main);
        line-height: 1.25;
        position: relative;
        padding-left: 16px;
        display: inline-block;
    }

    .section-title h2::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 28px;
        background: var(--primary);
        border-radius: 2px;
    }

    .section-title .section-sub {
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin-top: 8px;
        padding-left: 16px;
    }

    @media (max-width: 768px) {
        .section-title h2 {
            font-size: 1.35rem;
        }
        .section-title .section-sub {
            font-size: 0.88rem;
        }
    }

    /* Course Cards Grid */
    .course-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .course-card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
    }

    .course-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
        transform: translateY(-3px);
    }

    .course-card .card-img {
        position: relative;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .course-card .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .course-card:hover .card-img img {
        transform: scale(1.04);
    }

    .course-card .card-img .age-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--primary);
        color: #FFFFFF;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .course-card .card-body {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .course-card .card-body h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .course-card .card-body .card-desc {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.65;
        margin-bottom: 14px;
        flex: 1;
    }

    .course-card .card-body .card-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.78rem;
        color: var(--text-weak);
        border-top: 1px solid var(--border);
        padding-top: 12px;
    }

    .course-card .card-body .card-meta .meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .course-card .card-body .card-meta i {
        color: var(--primary);
    }

    @media (max-width: 1024px) {
        .course-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .course-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Coach List */
    .coach-list {
        background: var(--bg-light-green);
    }

    .coach-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .coach-card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 20px;
        text-align: center;
        box-shadow: var(--shadow-card);
        transition: all var(--transition);
    }

    .coach-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
        transform: translateY(-2px);
    }

    .coach-card .coach-avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(145deg, var(--primary) 0%, var(--primary-darker) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.5rem;
        margin: 0 auto 12px;
        box-shadow: 0 2px 8px rgba(16, 45, 26, 0.12);
    }

    .coach-card h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 4px;
    }

    .coach-card .coach-title {
        font-size: 0.82rem;
        color: var(--primary);
        font-weight: 550;
        margin-bottom: 10px;
    }

    .coach-card .coach-desc {
        font-size: 0.8rem;
        color: var(--text-secondary);
        line-height: 1.55;
    }

    @media (max-width: 1024px) {
        .coach-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .coach-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Camp Cards */
    .camp-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .camp-card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: all var(--transition);
    }

    .camp-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
        transform: translateY(-3px);
    }

    .camp-card .camp-img {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .camp-card .camp-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .camp-card:hover .camp-img img {
        transform: scale(1.03);
    }

    .camp-card .camp-body {
        padding: 20px;
    }

    .camp-card .camp-body h3 {
        font-size: 1.08rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-main);
    }

    .camp-card .camp-body .camp-info {
        font-size: 0.82rem;
        color: var(--text-secondary);
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .camp-card .camp-body .camp-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .camp-card .camp-body .camp-meta .meta-chip {
        padding: 4px 10px;
        background: var(--bg-light-green);
        color: var(--primary-dark);
        border-radius: 16px;
        font-size: 0.72rem;
        font-weight: 550;
    }

    @media (max-width: 1024px) {
        .camp-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .camp-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Growth Timeline */
    .timeline-section {
        background: var(--bg-white);
    }

    .timeline {
        position: relative;
        padding-left: 32px;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 4px;
        bottom: 4px;
        width: 3px;
        background: linear-gradient(180deg, var(--primary) 0%, var(--border-hover) 100%);
        border-radius: 2px;
    }

    .timeline-item {
        position: relative;
        padding: 0 0 28px 28px;
    }

    .timeline-item:last-child {
        padding-bottom: 0;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -28px;
        top: 6px;
        width: 14px;
        height: 14px;
        background: var(--primary);
        border-radius: 50%;
        border: 3px solid var(--accent);
    }

    .timeline-item h3 {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 6px;
    }

    .timeline-item .timeline-stage {
        font-size: 0.75rem;
        color: var(--primary);
        font-weight: 650;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 4px;
    }

    .timeline-item p {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.65;
    }

    /* Article List */
    .article-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .article-card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
    }

    .article-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
        transform: translateY(-2px);
    }

    .article-card .article-img {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .article-card .article-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .article-card .article-body {
        padding: 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .article-card .article-body h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.45;
    }

    .article-card .article-body .article-summary {
        font-size: 0.84rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 12px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-card .article-body .article-date {
        font-size: 0.75rem;
        color: var(--text-weak);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .article-card .article-body .article-date i {
        color: var(--primary);
        font-size: 0.7rem;
    }

    @media (max-width: 1024px) {
        .article-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .article-list {
            grid-template-columns: 1fr;
        }
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 40%, var(--primary) 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -40px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(201, 232, 76, 0.08);
        pointer-events: none;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -30px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        pointer-events: none;
    }

    .cta-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .cta-left h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .cta-left .cta-desc {
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .cta-left .cta-note {
        color: var(--accent);
        font-weight: 550;
        font-size: 0.88rem;
        margin-top: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .cta-right .cta-form {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        padding: 28px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    }

    .cta-form .form-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 6px;
        display: block;
    }

    .cta-form input[type="email"],
    .cta-form input[type="text"] {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
        color: var(--text-main);
        background: var(--bg-warm);
        outline: none;
        transition: all var(--transition);
        margin-bottom: 12px;
    }

    .cta-form input:focus {
        border-color: var(--primary);
        background: var(--bg-white);
        box-shadow: 0 0 0 3px rgba(30, 107, 62, 0.1);
    }

    .cta-form .form-btn {
        width: 100%;
        padding: 13px;
        background: var(--primary);
        color: #FFFFFF;
        border: none;
        border-radius: var(--radius-sm);
        font-size: 0.95rem;
        font-weight: 650;
        letter-spacing: 0.02em;
        transition: all var(--transition);
        cursor: pointer;
    }

    .cta-form .form-btn:hover {
        background: var(--primary-dark);
        box-shadow: 0 6px 18px rgba(30, 107, 62, 0.3);
    }

    .cta-form .form-note {
        font-size: 0.75rem;
        color: var(--text-weak);
        text-align: center;
        margin-top: 10px;
    }

    @media (max-width: 768px) {
        .cta-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .cta-left h2 {
            font-size: 1.4rem;
        }
        .cta-form {
            padding: 20px;
        }
    }

    /* Related Entry */
    .related-entry {
        background: var(--bg-light-green);
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        box-shadow: var(--shadow-card);
        transition: all var(--transition);
    }

    .related-card:hover {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
    }

    .related-card .related-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--bg-light-green);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .related-card h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 4px;
    }

    .related-card p {
        font-size: 0.82rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .related-card .related-link {
        font-size: 0.8rem;
        color: var(--primary);
        font-weight: 550;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 6px;
    }

    @media (max-width: 768px) {
        .related-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Footer */
    .site-footer {
        background: var(--primary-darker);
        color: rgba(255, 255, 255, 0.82);
        padding: 56px 24px 24px;
    }

    .footer-grid {
        max-width: var(--container-max);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-brand .footer-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 12px;
    }

    .footer-brand .footer-logo .logo-dot {
        width: 28px;
        height: 28px;
        background: var(--primary);
        border-radius: 50%;
        display: inline-block;
        position: relative;
    }

    .footer-brand .footer-logo .logo-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: var(--accent);
        border-radius: 50%;
    }

    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.65);
    }

    .footer-col h4 {
        font-size: 0.95rem;
        font-weight: 650;
        color: #FFFFFF;
        margin-bottom: 14px;
        letter-spacing: 0.02em;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.68);
        transition: color var(--transition);
    }

    .footer-col ul li a:hover {
        color: var(--accent);
    }

    .footer-bottom {
        max-width: var(--container-max);
        margin: 20px auto 0;
        text-align: center;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        padding-top: 16px;
    }

    @media (max-width: 768px) {
        .site-footer {
            padding: 40px 16px 20px;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .footer-brand {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
