/* roulang page: index */
:root {
            --primary: #0d7a3e;
            --primary-dark: #095c2f;
            --primary-light: #e6f4ec;
            --accent: #e8a817;
            --accent-dark: #c48f14;
            --bg: #f5f6f8;
            --bg-white: #ffffff;
            --bg-dark: #1a1d23;
            --bg-card: #ffffff;
            --text: #1a1d28;
            --text-secondary: #5a5f6e;
            --text-muted: #8b8f9a;
            --text-light: #aeb3bd;
            --border: #e2e5eb;
            --border-light: #eef0f4;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09), 0 4px 10px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.11), 0 6px 16px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.14), 0 8px 20px rgba(0, 0, 0, 0.07);
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1240px;
            --nav-height: 68px;
            --section-gap: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        .container-custom {
            width: 100%;
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ========== 导航栏 - 透明玻璃沉浸式 ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: var(--nav-height);
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(200, 205, 215, 0.35);
            box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
            transition: background var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
        }
        .site-navbar.scrolled {
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(180, 188, 200, 0.5);
        }
        .site-navbar .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
        }
        .nav-logo {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color var(--transition);
        }
        .nav-logo .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: var(--primary);
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: nowrap;
        }
        .nav-links-desktop li a {
            display: inline-block;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links-desktop li a:hover,
        .nav-links-desktop li a.active {
            color: var(--primary);
            background: var(--primary-light);
        }
        .nav-links-desktop li a.active {
            font-weight: 600;
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            background: var(--primary);
            color: #fff !important;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-cta-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        /* 移动端菜单按钮 */
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }
        .nav-mobile-toggle:hover {
            background: rgba(0, 0, 0, 0.04);
        }
        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1049;
            flex-direction: column;
            padding: 20px 24px;
            gap: 4px;
            overflow-y: auto;
        }
        .nav-mobile-menu.open {
            display: flex;
        }
        .nav-mobile-menu a {
            display: block;
            padding: 14px 18px;
            border-radius: var(--radius);
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
        }
        .nav-mobile-menu a:hover,
        .nav-mobile-menu a.active {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
        }
        .nav-mobile-menu .nav-cta-btn {
            margin-top: 12px;
            text-align: center;
            justify-content: center;
            font-size: 1rem;
            padding: 13px 24px;
        }

        @media (max-width: 992px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: block;
            }
        }
        @media (min-width: 993px) {
            .nav-mobile-menu {
                display: none !important;
            }
        }

        /* ========== Hero 首屏 ========== */
        .hero-section {
            position: relative;
            min-height: 82vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-attachment: fixed;
            margin-top: 0;
            padding-top: var(--nav-height);
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 15, 25, 0.72) 0%, rgba(10, 18, 30, 0.8) 40%, rgba(8, 14, 22, 0.88) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 720px;
            padding: 40px 24px;
        }
        .hero-badge {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.03em;
            margin-bottom: 12px;
            line-height: 1.2;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
        }
        .hero-title .highlight {
            color: var(--accent);
            position: relative;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
            line-height: 1.6;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-search-wrap {
            display: flex;
            max-width: 500px;
            margin: 0 auto 24px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: box-shadow var(--transition);
        }
        .hero-search-wrap:focus-within {
            box-shadow: var(--shadow-xl), 0 0 0 4px rgba(13, 122, 62, 0.25);
        }
        .hero-search-input {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: var(--text);
            min-width: 0;
        }
        .hero-search-input::placeholder {
            color: var(--text-muted);
        }
        .hero-search-btn {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 14px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            white-space: nowrap;
            font-size: 0.95rem;
            border-radius: 0 28px 28px 0;
        }
        .hero-search-btn:hover {
            background: var(--primary-dark);
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 18px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.22);
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }
        .hero-tag:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                background-attachment: scroll;
            }
            .hero-title {
                font-size: 2.1rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-search-wrap {
                max-width: 100%;
                border-radius: 24px;
            }
            .hero-search-btn {
                padding: 12px 18px;
                font-size: 0.85rem;
                border-radius: 0 24px 24px 0;
            }
            .hero-search-input {
                padding: 12px 16px;
            }
        }
        @media (max-width: 520px) {
            .hero-section {
                min-height: 62vh;
            }
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-badge {
                font-size: 0.75rem;
                padding: 5px 14px;
            }
            .hero-search-wrap {
                flex-direction: column;
                border-radius: var(--radius);
                background: transparent;
                box-shadow: none;
            }
            .hero-search-input {
                border-radius: var(--radius);
                padding: 13px 16px;
                margin-bottom: 8px;
                background: rgba(255, 255, 255, 0.95);
            }
            .hero-search-btn {
                border-radius: var(--radius);
                width: 100%;
                text-align: center;
                justify-content: center;
                padding: 13px;
            }
        }

        /* ========== 板块通用样式 ========== */
        .section-block {
            padding: var(--section-gap) 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 5px 14px;
            border-radius: 16px;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 48px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .section-desc {
                font-size: 0.9rem;
            }
        }

        /* ========== 分类入口卡片网格 ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .category-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid var(--border-light);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        .category-card-img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            display: block;
        }
        .category-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .category-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
        .category-card-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
        }
        .category-card-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
            margin-top: 10px;
            transition: gap var(--transition);
        }
        .category-card:hover .category-card-link {
            gap: 9px;
        }
        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 14px;
            }
            .category-card-img {
                height: 140px;
            }
            .category-card-body {
                padding: 14px 16px 16px;
            }
        }
        @media (max-width: 520px) {
            .category-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .category-card-img {
                height: 110px;
            }
            .category-card-title {
                font-size: 0.95rem;
            }
            .category-card-desc {
                font-size: 0.78rem;
            }
        }

        /* ========== 资讯列表 ========== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item {
            display: flex;
            gap: 20px;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            align-items: flex-start;
        }
        .news-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--border);
            transform: translateX(3px);
        }
        .news-item-img {
            width: 140px;
            height: 100px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }
        .news-item-content {
            flex: 1;
            min-width: 0;
        }
        .news-item-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .news-item-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item-title a {
            color: inherit;
        }
        .news-item-title a:hover {
            color: var(--primary);
        }
        .news-item-summary {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item-more {
            display: inline-block;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--primary);
            margin-top: 6px;
            transition: all var(--transition);
        }
        .news-item-more:hover {
            color: var(--primary-dark);
        }
        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
                gap: 12px;
                padding: 14px 16px;
            }
            .news-item-img {
                width: 100%;
                height: 180px;
            }
        }
        @media (max-width: 520px) {
            .news-item-img {
                height: 150px;
            }
            .news-item-title {
                font-size: 0.95rem;
            }
        }

        /* ========== 数据板块 ========== */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }
        .data-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .data-card:hover {
            box-shadow: var(--shadow-md);
        }
        .data-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary-light);
        }
        .data-card-league {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text);
        }
        .data-card-badge {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
        }
        .data-table {
            width: 100%;
            font-size: 0.88rem;
            border-collapse: collapse;
        }
        .data-table th {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 8px 6px;
            border-bottom: 1px solid var(--border-light);
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 7px 6px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
            vertical-align: middle;
        }
        .data-table .rank-col {
            font-weight: 700;
            color: var(--text);
            width: 40px;
        }
        .data-table .team-col {
            font-weight: 600;
            color: var(--text);
        }
        .data-table .pts-col {
            font-weight: 700;
            color: var(--primary);
            text-align: center;
        }
        @media (max-width: 768px) {
            .data-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 专题卡片 ========== */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 22px;
        }
        .topic-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .topic-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .topic-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .topic-card-body {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .topic-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }
        .topic-card-tag {
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            letter-spacing: 0.03em;
        }
        .topic-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .topic-card-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }
        .topic-card-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
            transition: gap var(--transition);
        }
        .topic-card:hover .topic-card-btn {
            gap: 10px;
        }
        @media (max-width: 768px) {
            .topic-grid {
                grid-template-columns: 1fr;
            }
            .topic-card-img {
                height: 170px;
            }
        }

        /* ========== 转会动态卡片 ========== */
        .transfer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 18px;
        }
        .transfer-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            border-left: 4px solid var(--accent);
        }
        .transfer-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .transfer-card-player {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text);
            margin-bottom: 4px;
        }
        .transfer-card-clubs {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .transfer-arrow {
            color: var(--accent);
            font-weight: 700;
        }
        .transfer-card-detail {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        @media (max-width: 520px) {
            .transfer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== FAQ 手风琴 ========== */
        .faq-accordion .accordion-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius) !important;
            margin-bottom: 10px;
            overflow: hidden;
            background: var(--bg-card);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .faq-accordion .accordion-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-accordion .accordion-button {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            background: transparent;
            padding: 18px 22px;
            border-radius: var(--radius) !important;
            transition: all var(--transition);
            box-shadow: none !important;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: var(--primary-light);
            border-radius: var(--radius) var(--radius) 0 0 !important;
        }
        .faq-accordion .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(13, 122, 62, 0.15) !important;
            border-color: var(--primary-light);
        }
        .faq-accordion .accordion-body {
            padding: 18px 22px 22px;
            font-size: 0.93rem;
            color: var(--text-secondary);
            line-height: 1.7;
            background: #fafbfc;
            border-radius: 0 0 var(--radius) var(--radius);
        }

        /* ========== CTA 区块 ========== */
        .cta-section {
            background: linear-gradient(135deg, #0d7a3e 0%, #095c2f 30%, #0a4a28 100%);
            border-radius: var(--radius-xl);
            padding: 52px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }
        .cta-section .cta-inner {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .cta-section p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btn-group {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-cta-primary {
            padding: 13px 30px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            background: #fff;
            color: var(--primary);
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            box-shadow: var(--shadow);
        }
        .btn-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            background: #f0f4f2;
        }
        .btn-cta-outline {
            padding: 13px 30px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all var(--transition);
        }
        .btn-cta-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .cta-section {
                padding: 36px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
        }

        /* ========== Footer ========== */
        .site-footer {
            background: var(--bg-dark);
            color: #c5c9d2;
            padding: 48px 0 28px;
            font-size: 0.9rem;
            line-height: 1.8;
            margin-top: var(--section-gap);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col a {
            display: block;
            color: #a8adb8;
            font-size: 0.88rem;
            margin-bottom: 6px;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            font-size: 0.82rem;
            color: #8b8f9a;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 10px;
        }
        .footer-bottom-links a {
            color: #8b8f9a;
            font-size: 0.82rem;
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }
        .footer-brand {
            font-weight: 700;
            color: #fff;
            font-size: 1.15rem;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 其他工具类 ========== */
        .text-primary-brand {
            color: var(--primary) !important;
        }
        .bg-light-brand {
            background: var(--primary-light) !important;
        }
        .fw-700 {
            font-weight: 700;
        }
        .gap-section {
            margin-top: var(--section-gap);
        }

/* roulang page: category3 */
:root {
            --color-primary: #0d9488;
            --color-primary-dark: #0f766e;
            --color-primary-light: #14b8a6;
            --color-accent: #f59e0b;
            --color-accent-dark: #d97706;
            --color-bg: #f8fafc;
            --color-bg-dark: #0f172a;
            --color-bg-card: #ffffff;
            --color-bg-section: #f1f5f9;
            --color-text: #1e293b;
            --color-text-secondary: #64748b;
            --color-text-light: #94a3b8;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --color-danger: #ef4444;
            --color-success: #10b981;
            --color-info: #3b82f6;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.4s ease;
            --navbar-height: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background-color: var(--color-bg);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 0;
        }
        p {
            margin-bottom: 0;
        }

        /* ========== 导航栏 - 透明玻璃沉浸 ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: var(--navbar-height);
            background: rgba(15, 23, 42, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
            transition: all var(--transition-base);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .site-navbar.scrolled {
            background: rgba(15, 23, 42, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
        }
        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 20px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.32rem;
            color: #ffffff;
            white-space: nowrap;
            letter-spacing: 0.5px;
            transition: color var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: var(--color-primary-light);
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            color: #fff;
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-links-desktop::-webkit-scrollbar {
            display: none;
        }
        .nav-links-desktop li a {
            display: inline-block;
            padding: 8px 13px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.82);
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .nav-links-desktop li a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-links-desktop li a.active {
            color: #ffffff;
            background: rgba(13, 148, 136, 0.35);
            font-weight: 600;
            box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.3) inset;
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 18px;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            color: #ffffff;
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.4px;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
        }
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(13, 148, 136, 0.45);
        }
        .nav-mobile-toggle {
            display: none;
            background: none;
            color: #ffffff;
            font-size: 1.5rem;
            padding: 8px;
            border-radius: 8px;
            transition: background var(--transition-fast);
        }
        .nav-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--navbar-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.97);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            flex-direction: column;
            padding: 20px 24px;
            gap: 6px;
            z-index: 1049;
            overflow-y: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .nav-mobile-menu.show {
            display: flex;
        }
        .nav-mobile-menu a {
            display: block;
            padding: 14px 18px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            transition: all var(--transition-fast);
        }
        .nav-mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #ffffff;
        }
        .nav-mobile-menu a.active {
            background: rgba(13, 148, 136, 0.3);
            color: #ffffff;
            font-weight: 600;
        }
        .nav-mobile-menu .nav-cta-btn {
            display: inline-flex;
            justify-content: center;
            margin-top: 8px;
            text-align: center;
            font-size: 1rem;
            padding: 14px 20px;
        }

        @media (max-width: 1024px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .navbar-inner {
                gap: 14px;
            }
        }
        @media (min-width: 1025px) {
            .nav-mobile-menu {
                display: none !important;
            }
        }

        /* ========== 页面主体偏移 ========== */
        .page-content {
            padding-top: var(--navbar-height);
        }

        /* ========== 内页 Banner ========== */
        .inner-banner {
            position: relative;
            min-height: 380px;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }
        .inner-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.88) 60%, rgba(15, 23, 42, 0.95) 100%);
            z-index: 1;
        }
        .inner-banner .banner-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
            width: 100%;
        }
        .inner-banner .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(13, 148, 136, 0.3);
            border: 1px solid rgba(13, 148, 136, 0.5);
            color: #5eead4;
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .inner-banner h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.8px;
            margin-bottom: 10px;
        }
        .inner-banner .banner-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 600px;
        }
        @media (max-width: 768px) {
            .inner-banner {
                min-height: 280px;
            }
            .inner-banner h1 {
                font-size: 1.8rem;
            }
            .inner-banner .banner-subtitle {
                font-size: 0.95rem;
            }
            .inner-banner .banner-content {
                padding: 40px 0;
            }
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: 60px 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 40px 0;
            }
        }
        .section-title-wrap {
            margin-bottom: 36px;
        }
        .section-title-wrap .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--color-primary);
            margin-bottom: 6px;
        }
        .section-title-wrap h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: 0.4px;
        }
        .section-title-wrap .section-desc {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin-top: 6px;
            max-width: 700px;
        }

        /* ========== 卡片样式 ========== */
        .data-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 24px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: all var(--transition-base);
            height: 100%;
        }
        .data-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }
        .data-card .card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .data-card .card-icon.teal {
            background: #e6fffa;
            color: var(--color-primary);
        }
        .data-card .card-icon.amber {
            background: #fffbeb;
            color: var(--color-accent);
        }
        .data-card .card-icon.blue {
            background: #eff6ff;
            color: var(--color-info);
        }
        .data-card .card-icon.green {
            background: #ecfdf5;
            color: var(--color-success);
        }
        .data-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 4px;
        }
        .data-card .card-desc {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            line-height: 1.5;
        }
        .data-card .card-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: 0.5px;
        }

        /* ========== 积分表格 ========== */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
            background: var(--color-bg-card);
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 0.9rem;
        }
        .standings-table thead th {
            background: var(--color-bg-dark);
            color: #ffffff;
            padding: 14px 16px;
            font-weight: 600;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            white-space: nowrap;
            text-align: center;
        }
        .standings-table thead th:first-child {
            text-align: left;
            border-radius: var(--radius-lg) 0 0 0;
        }
        .standings-table thead th:last-child {
            border-radius: 0 var(--radius-lg) 0 0;
        }
        .standings-table tbody td {
            padding: 12px 16px;
            text-align: center;
            border-bottom: 1px solid var(--color-border-light);
            font-weight: 500;
            color: var(--color-text);
            vertical-align: middle;
        }
        .standings-table tbody td:first-child {
            text-align: left;
            font-weight: 600;
        }
        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }
        .standings-table tbody tr:hover {
            background: #f8fafc;
        }
        .standings-table tbody tr:last-child td {
            border-bottom: none;
        }
        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.8rem;
            color: #ffffff;
        }
        .rank-badge.top1 {
            background: #f59e0b;
        }
        .rank-badge.top2 {
            background: #94a3b8;
        }
        .rank-badge.top3 {
            background: #b87351;
        }
        .rank-badge.normal {
            background: #e2e8f0;
            color: #64748b;
        }
        .team-name-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .team-dot {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            flex-shrink: 0;
        }

        /* ========== 数据面板 ========== */
        .stat-panel {
            background: var(--color-bg-dark);
            border-radius: var(--radius-xl);
            padding: 32px 28px;
            color: #ffffff;
            box-shadow: var(--shadow-lg);
        }
        .stat-panel .stat-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .stat-panel .stat-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 520px) {
            .stat-panel .stat-row {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
        }
        .stat-item {
            text-align: center;
            padding: 16px 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all var(--transition-fast);
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 255, 255, 0.16);
        }
        .stat-item .stat-num {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--color-primary-light);
            letter-spacing: 0.5px;
        }
        .stat-item .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
            letter-spacing: 0.4px;
        }

        /* ========== 射手榜卡片 ========== */
        .scorer-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-base);
            height: 100%;
        }
        .scorer-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: #cbd5e1;
        }
        .scorer-rank {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .scorer-rank.gold {
            background: #fef3c7;
            color: #b45309;
        }
        .scorer-rank.silver {
            background: #f1f5f9;
            color: #64748b;
        }
        .scorer-rank.bronze {
            background: #fef2f2;
            color: #b91c1c;
        }
        .scorer-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text);
        }
        .scorer-info .scorer-meta {
            font-size: 0.82rem;
            color: var(--color-text-secondary);
        }
        .scorer-goals {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-primary);
            margin-left: auto;
            flex-shrink: 0;
        }

        /* ========== CTA板块 ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2a3a 100%);
            border-radius: var(--radius-xl);
            padding: 48px 36px;
            text-align: center;
            color: #ffffff;
            box-shadow: var(--shadow-lg);
        }
        .cta-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            color: #ffffff;
            letter-spacing: 0.5px;
            transition: all var(--transition-fast);
            box-shadow: 0 6px 18px rgba(13, 148, 136, 0.4);
        }
        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(13, 148, 136, 0.55);
            color: #ffffff;
        }
        .btn-outline-light-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            background: transparent;
            letter-spacing: 0.5px;
            transition: all var(--transition-fast);
        }
        .btn-outline-light-custom:hover {
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }

        /* ========== 数据对比区块 ========== */
        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width: 768px) {
            .comparison-row {
                grid-template-columns: 1fr;
            }
        }
        .comparison-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
        }
        .comparison-card:hover {
            box-shadow: var(--shadow-md);
        }
        .comparison-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--color-text);
        }
        .comparison-bar-wrap {
            margin-bottom: 10px;
        }
        .comparison-bar-wrap .bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 4px;
        }
        .comparison-bar-wrap .bar-track {
            height: 8px;
            background: #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
        }
        .comparison-bar-wrap .bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.6s ease;
        }
        .bar-fill.teal {
            background: var(--color-primary);
        }
        .bar-fill.amber {
            background: var(--color-accent);
        }
        .bar-fill.blue {
            background: var(--color-info);
        }
        .bar-fill.green {
            background: var(--color-success);
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--color-bg-dark);
            color: #cbd5e1;
            padding: 48px 0 28px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-col h4 {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .footer-col a,
        .footer-col span {
            display: block;
            color: #a8adb8;
            font-size: 0.88rem;
            margin-bottom: 7px;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: #ffffff;
        }
        .footer-brand {
            color: #ffffff;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: #8b8f9a;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 12px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: #8b8f9a;
            font-size: 0.8rem;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .footer-bottom-links a {
            cursor: pointer;
        }
        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        /* ========== 辅助 ========== */
        .text-accent {
            color: var(--color-accent);
        }
        .text-teal {
            color: var(--color-primary);
        }
        .fw-800 {
            font-weight: 800;
        }
        .gap-3 {
            gap: 16px;
        }
        .gap-2 {
            gap: 10px;
        }
        .mt-1 {
            margin-top: 4px;
        }
        .mt-2 {
            margin-top: 8px;
        }
        .mt-3 {
            margin-top: 16px;
        }
        .mb-2 {
            margin-bottom: 8px;
        }
        .mb-3 {
            margin-bottom: 16px;
        }
        .mb-4 {
            margin-bottom: 24px;
        }

        /* ========== 响应式补充 ========== */
        @media (max-width: 768px) {
            .section-title-wrap h2 {
                font-size: 1.4rem;
            }
            .data-card .card-value {
                font-size: 1.5rem;
            }
            .scorer-goals {
                font-size: 1.3rem;
            }
            .cta-section {
                padding: 32px 20px;
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
            .stat-panel {
                padding: 20px 16px;
            }
            .stat-item .stat-num {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 520px) {
            .inner-banner h1 {
                font-size: 1.5rem;
            }
            .scorer-card {
                flex-wrap: wrap;
                gap: 10px;
            }
            .scorer-goals {
                margin-left: 0;
                width: 100%;
                text-align: right;
            }
        }

/* roulang page: category7 */
:root {
            --color-primary: #0d8a3e;
            --color-primary-dark: #076b2f;
            --color-primary-light: #10b34f;
            --color-accent: #e8a817;
            --color-accent-dark: #c48c0d;
            --color-bg: #f4f5f7;
            --color-bg-alt: #eef1f5;
            --color-surface: #ffffff;
            --color-surface-alt: #f9fafb;
            --color-text: #1a1d26;
            --color-text-secondary: #5a5f6b;
            --color-text-muted: #8b8f9a;
            --color-border: #e2e5ea;
            --color-border-light: #eef0f3;
            --color-danger: #d4353a;
            --color-info: #3b82f6;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.35s ease;
            --navbar-height: 68px;
            --container-max: 1260px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            line-height: 1.3;
            font-weight: 700;
            color: var(--color-text);
        }

        p {
            margin: 0;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ========== 导航栏 ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(200, 205, 215, 0.45);
            box-shadow: var(--shadow-xs);
            height: var(--navbar-height);
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }

        .site-navbar.scrolled {
            background: rgba(255, 255, 255, 0.96);
            box-shadow: var(--shadow-md);
            border-bottom-color: rgba(180, 188, 200, 0.55);
        }

        .navbar-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-weight: 800;
            font-size: 1.22rem;
            color: var(--color-text);
            white-space: nowrap;
            letter-spacing: 0.3px;
            transition: color var(--transition-fast);
        }

        .nav-logo:hover {
            color: var(--color-primary);
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(13, 138, 62, 0.3);
        }

        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }

        .nav-links-desktop li a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .nav-links-desktop li a:hover {
            color: var(--color-primary);
            background: rgba(13, 138, 62, 0.06);
        }

        .nav-links-desktop li a.active {
            color: #fff;
            background: var(--color-primary);
            font-weight: 600;
            box-shadow: 0 3px 12px rgba(13, 138, 62, 0.25);
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            background: var(--color-accent);
            color: #1a1d26;
            transition: all var(--transition-fast);
            box-shadow: 0 3px 12px rgba(232, 168, 23, 0.3);
            border: none;
            cursor: pointer;
        }

        .nav-cta-btn:hover {
            background: var(--color-accent-dark);
            color: #fff;
            box-shadow: 0 6px 20px rgba(232, 168, 23, 0.4);
            transform: translateY(-1px);
        }

        .nav-cta-desktop {
            display: inline-flex;
        }

        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-text);
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }

        .nav-mobile-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--navbar-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 1049;
            flex-direction: column;
            padding: 20px 24px;
            gap: 6px;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
        }

        .nav-mobile-menu.open {
            display: flex;
        }

        .nav-mobile-menu a {
            display: block;
            padding: 14px 18px;
            border-radius: var(--radius-md);
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
        }

        .nav-mobile-menu a:hover {
            background: rgba(13, 138, 62, 0.05);
            color: var(--color-primary);
        }

        .nav-mobile-menu a.active {
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
        }

        .nav-mobile-menu .nav-cta-btn {
            text-align: center;
            justify-content: center;
            margin-top: 8px;
            font-size: 1rem;
            padding: 13px 20px;
        }

        @media (max-width: 1024px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: block;
            }
        }

        @media (min-width: 1025px) {
            .nav-mobile-menu {
                display: none !important;
            }
        }

        /* ========== 页面主体 ========== */
        .page-main {
            flex: 1;
            margin-top: var(--navbar-height);
        }

        /* ========== 板块通用间距 ========== */
        .section-block {
            padding: 56px 0;
        }

        @media (max-width: 768px) {
            .section-block {
                padding: 36px 0;
            }
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--color-text);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .section-header {
            text-align: center;
            margin-bottom: 36px;
        }

        .section-header .section-title {
            display: inline-block;
            position: relative;
        }

        .section-header .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 3px;
            border-radius: 2px;
            background: var(--color-primary);
        }

        /* ========== Banner ========== */
        .page-banner {
            position: relative;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
        }

        .page-banner-content {
            position: relative;
            z-index: 2;
            color: #fff;
            padding: 40px 24px;
            max-width: 700px;
        }

        .page-banner-content h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 1px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
        }

        .page-banner-content .banner-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .page-banner-content .banner-meta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .page-banner-content .banner-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 16px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
        }

        @media (max-width: 768px) {
            .page-banner {
                min-height: 260px;
            }
            .page-banner-content h1 {
                font-size: 1.8rem;
            }
            .page-banner-content .banner-sub {
                font-size: 0.95rem;
            }
        }

        /* ========== 卡片组件 ========== */
        .card-topic {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card-topic:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }

        .card-topic-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .card-topic-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .card-topic-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 14px;
            background: rgba(13, 138, 62, 0.08);
            color: var(--color-primary);
            width: fit-content;
        }

        .card-topic-tag.hot {
            background: rgba(212, 53, 58, 0.08);
            color: var(--color-danger);
        }

        .card-topic-tag.new {
            background: rgba(59, 130, 246, 0.08);
            color: var(--color-info);
        }

        .card-topic-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-text);
            line-height: 1.4;
        }

        .card-topic-desc {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.55;
            flex: 1;
        }

        .card-topic-stats {
            display: flex;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            padding-top: 4px;
            border-top: 1px solid var(--color-border-light);
        }

        .card-topic-stats span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ========== 讨论区列表 ========== */
        .forum-list-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .forum-list-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--color-primary-light);
            background: #fafffc;
        }

        .forum-list-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .forum-list-icon.alt {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }

        .forum-list-icon.accent {
            background: linear-gradient(135deg, var(--color-accent), #f0c040);
        }

        .forum-list-info {
            flex: 1;
            min-width: 0;
        }

        .forum-list-info h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 2px;
        }

        .forum-list-info p {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .forum-list-meta {
            text-align: right;
            flex-shrink: 0;
        }

        .forum-list-meta .count {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-primary);
        }

        .forum-list-meta .label {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }

        /* ========== 预测卡片 ========== */
        .predict-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-xs);
            text-align: center;
            transition: all var(--transition-base);
            height: 100%;
        }

        .predict-card:hover {
            box-shadow: var(--shadow-md);
        }

        .predict-match {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .predict-match .vs {
            font-size: 1.4rem;
            color: var(--color-accent);
            font-weight: 900;
        }

        .predict-options {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .predict-btn {
            padding: 8px 20px;
            border-radius: 20px;
            border: 2px solid var(--color-border);
            background: #fff;
            font-weight: 600;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            color: var(--color-text);
        }

        .predict-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: rgba(13, 138, 62, 0.03);
        }

        .predict-btn.voted {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
            box-shadow: 0 3px 10px rgba(13, 138, 62, 0.25);
        }

        .predict-deadline {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            margin-top: 10px;
        }

        /* ========== 球迷声音 ========== */
        .voice-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-xs);
            position: relative;
            transition: all var(--transition-base);
            height: 100%;
        }

        .voice-card:hover {
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .voice-card .quote-icon {
            font-size: 2rem;
            color: var(--color-primary);
            opacity: 0.3;
            position: absolute;
            top: 16px;
            left: 18px;
        }

        .voice-card .voice-text {
            font-size: 0.93rem;
            color: var(--color-text);
            line-height: 1.7;
            margin-bottom: 14px;
            padding-top: 10px;
            font-style: italic;
        }

        .voice-card .voice-author {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .voice-card .voice-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e2e5ea, #c8cdd6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: #fff;
            font-weight: 700;
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--color-border);
        }

        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 0.98rem;
            color: var(--color-text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: rgba(13, 138, 62, 0.03);
        }

        .faq-question .faq-arrow {
            transition: transform var(--transition-base);
            color: var(--color-text-muted);
            font-size: 0.85rem;
        }

        .faq-item.open .faq-question .faq-arrow {
            transform: rotate(180deg);
            color: var(--color-primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 22px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        /* ========== CTA ========== */
        .cta-block {
            background: linear-gradient(135deg, #0d7a38 0%, #0a5e2a 40%, #084d22 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-block::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
        }

        .cta-block::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
        }

        .cta-block h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-block p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--color-accent);
            color: #1a1d26;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            box-shadow: 0 6px 22px rgba(232, 168, 23, 0.35);
            position: relative;
            z-index: 1;
        }

        .btn-cta-primary:hover {
            background: #f5c940;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(232, 168, 23, 0.45);
            color: #1a1d26;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #1a1d26;
            color: #c5c9d2;
            padding: 48px 0 28px;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #e8eaef;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 0.85rem;
            color: #a8adb8;
            margin-bottom: 6px;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: #fff;
        }

        .footer-brand {
            color: #fff;
            font-weight: 800;
            font-size: 1.1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.8rem;
            color: #8b8f9a;
        }

        .footer-bottom-links {
            display: flex;
            gap: 18px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 12px;
            font-size: 0.82rem;
        }

        .footer-bottom-links a,
        .footer-bottom-links span {
            color: #9da1ab;
            transition: color var(--transition-fast);
        }

        .footer-bottom-links a:hover {
            color: #fff;
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-bar {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            padding: 12px 0;
            font-size: 0.85rem;
            color: var(--color-text-muted);
        }

        .breadcrumb-bar a {
            color: var(--color-text-secondary);
            transition: color var(--transition-fast);
        }

        .breadcrumb-bar a:hover {
            color: var(--color-primary);
        }

        .breadcrumb-bar .separator {
            margin: 0 8px;
            color: var(--color-border);
        }

        .breadcrumb-bar .current {
            color: var(--color-primary);
            font-weight: 600;
        }

        /* ========== 标签行 ========== */
        .tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .tag-pill {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 500;
            background: var(--color-bg-alt);
            color: var(--color-text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }

        .tag-pill:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: rgba(13, 138, 62, 0.04);
        }

        /* ========== 响应式补充 ========== */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.4rem;
            }
            .card-topic-img {
                height: 150px;
            }
            .forum-list-item {
                flex-wrap: wrap;
                gap: 10px;
            }
            .forum-list-meta {
                text-align: left;
            }
            .predict-card {
                padding: 18px 14px;
            }
            .cta-block {
                padding: 32px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-block h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 520px) {
            .page-banner-content h1 {
                font-size: 1.5rem;
            }
            .card-topic-body {
                padding: 14px 16px;
            }
            .card-topic-title {
                font-size: 0.95rem;
            }
            .voice-card {
                padding: 18px;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 0.9rem;
            }
            .faq-answer {
                padding: 0 16px;
                font-size: 0.83rem;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }
        }

/* roulang page: category6 */
:root {
            --primary: #0d7c3f;
            --primary-dark: #095a2e;
            --primary-light: #e8f5ee;
            --accent: #e8a817;
            --accent-dark: #c78d12;
            --accent-light: #fef9ed;
            --bg: #f5f6f8;
            --bg-white: #ffffff;
            --bg-dark: #0f1923;
            --bg-dark-secondary: #141e2b;
            --text: #1a1a2e;
            --text-secondary: #5a5f6b;
            --text-muted: #8b8f9a;
            --text-light: #a8adb8;
            --border: #e2e5ea;
            --border-light: #eef0f3;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
            --transition-fast: 0.15s ease;
            --transition: 0.25s ease;
            --transition-slow: 0.35s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
            --section-gap: 72px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0;
            color: var(--text);
        }

        h1 {
            font-size: 2.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.85rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
        }

        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== 导航栏 - 透明玻璃沉浸 ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: var(--nav-height);
            background: rgba(15, 25, 35, 0.88);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
            transition: background var(--transition), box-shadow var(--transition);
        }

        .site-navbar.scrolled {
            background: rgba(15, 25, 35, 0.96);
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.28);
        }

        .navbar-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.3rem;
            color: #ffffff;
            white-space: nowrap;
            letter-spacing: -0.01em;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            opacity: 0.88;
            color: #ffffff;
        }
        .nav-logo .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--primary);
            color: #fff;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-links-desktop li a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 7px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8cdd5;
            white-space: nowrap;
            transition: color var(--transition-fast), background var(--transition-fast);
        }
        .nav-links-desktop li a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-links-desktop li a.active {
            color: #ffffff;
            background: var(--primary);
            font-weight: 600;
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            background: var(--accent);
            color: #1a1a1a;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .nav-cta-btn:hover {
            background: var(--accent-dark);
            color: #1a1a1a;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(232, 168, 23, 0.3);
        }
        .nav-cta-desktop {
            display: inline-flex;
        }

        .nav-mobile-toggle {
            display: none;
            background: transparent;
            color: #ffffff;
            font-size: 1.5rem;
            padding: 8px;
            border-radius: 8px;
            transition: background var(--transition-fast);
        }
        .nav-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 25, 35, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1040;
            flex-direction: column;
            padding: 20px 24px;
            gap: 4px;
            overflow-y: auto;
        }
        .nav-mobile-menu.open {
            display: flex;
        }
        .nav-mobile-menu a {
            display: block;
            padding: 13px 16px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 500;
            color: #c8cdd5;
            transition: color var(--transition-fast), background var(--transition-fast);
        }
        .nav-mobile-menu a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-mobile-menu a.active {
            color: #ffffff;
            background: var(--primary);
            font-weight: 600;
        }
        .nav-mobile-menu .nav-cta-btn {
            margin-top: 12px;
            justify-content: center;
            background: var(--accent);
            color: #1a1a1a;
            border-radius: 24px;
            font-weight: 600;
        }

        /* ========== 页面Banner ========== */
        .page-banner {
            position: relative;
            margin-top: var(--nav-height);
            min-height: 340px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(15, 25, 35, 0.92) 0%, rgba(20, 35, 50, 0.88) 100%), url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-blend-mode: overlay;
            overflow: hidden;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
            pointer-events: none;
            z-index: 1;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            padding: 60px 0 70px;
            max-width: 700px;
        }
        .page-banner .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            background: rgba(232, 168, 23, 0.2);
            color: var(--accent);
            border: 1px solid rgba(232, 168, 23, 0.35);
            margin-bottom: 16px;
        }
        .page-banner h1 {
            color: #ffffff;
            font-size: 2.6rem;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .page-banner .banner-desc {
            color: #c8cdd5;
            font-size: 1.08rem;
            line-height: 1.6;
            max-width: 560px;
        }

        /* ========== 区块通用 ========== */
        .section-block {
            padding: var(--section-gap) 0;
        }
        .section-block.bg-white-block {
            background: var(--bg-white);
        }
        .section-block.bg-dark-block {
            background: var(--bg-dark);
            color: #d8dce3;
        }
        .section-block.bg-dark-block h2,
        .section-block.bg-dark-block h3 {
            color: #ffffff;
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-header h2 {
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 48px;
            height: 3px;
            border-radius: 2px;
            background: var(--primary);
        }
        .section-header .section-subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 8px;
        }
        .bg-dark-block .section-header .section-subtitle {
            color: var(--text-light);
        }
        .bg-dark-block .section-header h2::after {
            background: var(--accent);
        }

        /* ========== 按钮系统 ========== */
        .btn-brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-brand-primary {
            background: var(--primary);
            color: #ffffff;
        }
        .btn-brand-primary:hover {
            background: var(--primary-dark);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(13, 124, 63, 0.3);
        }
        .btn-brand-accent {
            background: var(--accent);
            color: #1a1a1a;
        }
        .btn-brand-accent:hover {
            background: var(--accent-dark);
            color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 168, 23, 0.3);
        }
        .btn-brand-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-brand-outline:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-brand-outline-light {
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        .btn-brand-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .btn-brand-sm {
            padding: 7px 16px;
            font-size: 0.84rem;
            border-radius: 20px;
        }

        /* ========== 卡片系统 ========== */
        .card-brand {
            background: var(--bg-white);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .card-brand:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--border);
        }
        .card-brand .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #eef0f3;
        }
        .card-brand .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .card-brand:hover .card-img-wrap img {
            transform: scale(1.05);
        }
        .card-brand .card-body-custom {
            padding: 20px;
        }
        .card-brand .card-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 14px;
            font-size: 0.75rem;
            font-weight: 600;
            background: var(--primary-light);
            color: var(--primary);
            margin-bottom: 10px;
        }
        .card-brand .card-title-custom {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 6px;
            line-height: 1.4;
            color: var(--text);
        }
        .card-brand .card-text-custom {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 12px;
        }
        .card-brand .card-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* ========== 转会快讯列表 ========== */
        .transfer-news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            background: var(--bg-white);
            box-shadow: var(--shadow-sm);
        }
        .transfer-news-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 18px 22px;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition-fast);
            cursor: pointer;
        }
        .transfer-news-item:last-child {
            border-bottom: none;
        }
        .transfer-news-item:hover {
            background: #fafbfc;
        }
        .transfer-news-item .news-date-badge {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: var(--bg);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            min-width: 56px;
            text-align: center;
            border: 1px solid var(--border-light);
        }
        .news-date-badge .day {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .news-date-badge .month {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .transfer-news-item .news-body {
            flex: 1;
            min-width: 0;
        }
        .transfer-news-item .news-title {
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .transfer-news-item .news-summary {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .transfer-news-item .news-link {
            flex-shrink: 0;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            white-space: nowrap;
            padding: 6px 0;
            transition: color var(--transition-fast);
        }
        .transfer-news-item .news-link:hover {
            color: var(--primary-dark);
        }

        /* ========== 身价榜单 ========== */
        .value-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            background: var(--bg-white);
            box-shadow: var(--shadow-sm);
        }
        .value-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        .value-table thead th {
            background: var(--bg-dark);
            color: #ffffff;
            padding: 14px 16px;
            font-weight: 600;
            font-size: 0.88rem;
            text-align: left;
            white-space: nowrap;
        }
        .value-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.9rem;
            vertical-align: middle;
        }
        .value-table tbody tr {
            transition: background var(--transition-fast);
        }
        .value-table tbody tr:hover {
            background: #fafcfb;
        }
        .value-table .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
            background: var(--bg);
            color: var(--text-secondary);
        }
        .value-table .rank-badge.top3 {
            background: var(--accent);
            color: #1a1a1a;
        }
        .value-table .value-highlight {
            font-weight: 700;
            color: var(--primary);
            font-size: 0.95rem;
        }
        .value-table .trend-up {
            color: #0d7c3f;
            font-weight: 600;
        }
        .value-table .trend-down {
            color: #c0392b;
            font-weight: 600;
        }

        /* ========== 深度分析区 ========== */
        .analysis-card {
            display: flex;
            gap: 28px;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .analysis-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .analysis-card .analysis-img {
            flex-shrink: 0;
            width: 320px;
            min-height: 220px;
            object-fit: cover;
        }
        .analysis-card .analysis-body {
            padding: 24px 24px 24px 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .analysis-card .analysis-tag-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        .analysis-card .analysis-tag {
            padding: 4px 12px;
            border-radius: 14px;
            font-size: 0.75rem;
            font-weight: 600;
            background: var(--accent-light);
            color: var(--accent-dark);
        }
        .analysis-card h3 {
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .analysis-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ========== 数据统计区 ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            padding: 24px 20px;
            text-align: center;
            transition: all var(--transition);
        }
        .stat-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .stat-card .stat-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }
        .stat-card .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* ========== FAQ区 ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .faq-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 22px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            transition: transform var(--transition);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .faq-question[aria-expanded="true"] .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            padding: 0 22px 18px;
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.7;
            display: none;
        }
        .faq-answer.open {
            display: block;
        }

        /* ========== CTA区 ========== */
        .cta-block {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #141e2b 50%, var(--bg-dark-secondary) 100%);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(13, 124, 63, 0.15);
            pointer-events: none;
        }
        .cta-block h2 {
            color: #ffffff;
            font-size: 1.8rem;
            margin-bottom: 10px;
            position: relative;
        }
        .cta-block p {
            color: var(--text-light);
            margin-bottom: 24px;
            font-size: 0.98rem;
            position: relative;
        }
        .cta-block .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--bg-dark);
            color: #c8cdd5;
            padding: 48px 0 28px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: #ffffff;
            font-size: 0.95rem;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .footer-col a,
        .footer-col span {
            display: block;
            color: #a8adb8;
            font-size: 0.88rem;
            margin-bottom: 6px;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: #ffffff;
        }
        .footer-brand {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.15rem;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 22px;
            text-align: center;
            color: #8b8f9a;
            font-size: 0.82rem;
        }
        .footer-bottom-links {
            display: flex;
            gap: 18px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: #8b8f9a;
            font-size: 0.82rem;
        }
        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .analysis-card {
                flex-direction: column;
            }
            .analysis-card .analysis-img {
                width: 100%;
                max-height: 200px;
                min-height: auto;
                aspect-ratio: 16 / 9;
            }
            .analysis-card .analysis-body {
                padding: 18px 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .page-banner h1 {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.55rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: block;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .section-block {
                padding: 48px 0;
            }
            :root {
                --section-gap: 48px;
            }
            .page-banner {
                min-height: 260px;
            }
            .page-banner h1 {
                font-size: 1.8rem;
            }
            .page-banner .banner-desc {
                font-size: 0.95rem;
            }
            .transfer-news-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 14px 16px;
            }
            .transfer-news-item .news-date-badge {
                flex-direction: row;
                gap: 6px;
                padding: 6px 10px;
                min-width: auto;
                font-size: 0.8rem;
            }
            .news-date-badge .day {
                font-size: 1rem;
            }
            .transfer-news-item .news-link {
                width: 100%;
                text-align: right;
            }
            .cta-block {
                padding: 32px 20px;
            }
            .cta-block h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .value-table-wrap {
                border-radius: var(--radius);
            }
            .card-brand .card-body-custom {
                padding: 14px;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-value {
                font-size: 1.5rem;
            }
            .stat-card .stat-icon {
                font-size: 1.5rem;
            }
            .page-banner {
                min-height: 220px;
            }
            .page-banner h1 {
                font-size: 1.5rem;
            }
            .page-banner .banner-content {
                padding: 40px 0 50px;
            }
            .btn-brand {
                padding: 9px 18px;
                font-size: 0.88rem;
            }
            .cta-block h2 {
                font-size: 1.2rem;
            }
            .footer-bottom-links {
                gap: 10px;
            }
            .container-custom {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .analysis-card .analysis-body {
                padding: 14px;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #0d7c3d;
            --primary-dark: #0a5e2e;
            --primary-light: #10a34e;
            --accent: #e8a817;
            --accent-light: #f5c94d;
            --bg-dark: #0f1419;
            --bg-card: #1a1f2b;
            --bg-section: #f6f7f9;
            --bg-white: #ffffff;
            --text-main: #1c1e23;
            --text-soft: #5a5e68;
            --text-light: #8b8f9a;
            --text-on-dark: #e0e2e8;
            --border-light: #e2e4e9;
            --border-soft: #dce0e6;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --nav-height: 72px;
        }

        *,
        *::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-body);
            color: var(--text-main);
            background-color: var(--bg-white);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            background: transparent;
            font-family: inherit;
        }
        ul,
        ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* ===== 容器 ===== */
        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 玻璃导航 ===== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: var(--nav-height);
            background: rgba(15, 20, 25, 0.78);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
            transition: background var(--transition-smooth), box-shadow var(--transition-smooth), height var(--transition-smooth);
        }
        .site-navbar.scrolled {
            background: rgba(10, 14, 18, 0.94);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
            height: 62px;
        }
        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
            gap: 20px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.28rem;
            color: #ffffff;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.5px;
            transition: color var(--transition-fast);
        }
        .nav-logo:hover {
            color: var(--accent-light);
        }
        .logo-icon {
            font-size: 1.35rem;
            color: var(--accent);
            display: flex;
            align-items: center;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links-desktop li a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 22px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #d0d4db;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .nav-links-desktop li a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-links-desktop li a.active {
            color: #ffffff;
            background: var(--primary);
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(13, 124, 61, 0.45);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.88rem;
            font-weight: 600;
            background: var(--accent);
            color: #1c1e23;
            white-space: nowrap;
            flex-shrink: 0;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .nav-cta-btn:hover {
            background: var(--accent-light);
            color: #1c1e23;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(232, 168, 23, 0.5);
        }
        .nav-cta-desktop {
            display: inline-flex;
        }
        .nav-mobile-toggle {
            display: none;
            font-size: 1.4rem;
            color: #ffffff;
            padding: 8px;
            border-radius: 8px;
            transition: background var(--transition-fast);
        }
        .nav-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.10);
        }
        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 14, 18, 0.96);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            flex-direction: column;
            padding: 28px 24px;
            gap: 8px;
            z-index: 1049;
            overflow-y: auto;
        }
        .nav-mobile-menu.active {
            display: flex;
        }
        .nav-mobile-menu a {
            display: block;
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 500;
            color: #d0d4db;
            transition: all var(--transition-fast);
        }
        .nav-mobile-menu a:hover,
        .nav-mobile-menu a.active {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.07);
        }
        .nav-mobile-menu a.active {
            background: var(--primary);
            font-weight: 600;
        }
        .nav-mobile-menu .nav-cta-btn {
            margin-top: 12px;
            display: inline-flex;
            justify-content: center;
            text-align: center;
            background: var(--accent);
            color: #1c1e23;
            font-weight: 600;
        }

        /* ===== Hero Banner ===== */
        .page-hero {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            padding-top: var(--nav-height);
            background: linear-gradient(135deg, #0a1a12 0%, #0f1f18 30%, #16281d 60%, #0d1611 100%);
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.32;
            z-index: 1;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 20, 14, 0.55) 0%, rgba(10, 16, 12, 0.82) 70%, rgba(8, 14, 10, 0.94) 100%);
            z-index: 2;
        }
        .page-hero-content {
            position: relative;
            z-index: 3;
            color: #ffffff;
            padding: 60px 0 50px;
        }
        .page-hero-content .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #bcc3cd;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb-nav a {
            color: #c5cdd8;
            transition: color var(--transition-fast);
        }
        .breadcrumb-nav a:hover {
            color: var(--accent-light);
        }
        .breadcrumb-nav .sep {
            color: #6b7280;
        }
        .breadcrumb-nav .current {
            color: var(--accent-light);
            font-weight: 500;
        }
        .page-hero-content h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 12px;
            color: #ffffff;
            line-height: 1.25;
        }
        .page-hero-content .hero-subtitle {
            font-size: 1.1rem;
            color: #c5cdd8;
            max-width: 600px;
            line-height: 1.65;
            margin-bottom: 0;
        }

        /* ===== 板块通用 ===== */
        .section-block {
            padding: 60px 0;
        }
        .section-block.bg-gray {
            background-color: var(--bg-section);
        }
        .section-block.bg-dark-block {
            background-color: var(--bg-dark);
            color: #e0e2e8;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .section-heading {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-main);
            letter-spacing: 0.5px;
        }
        .bg-dark-block .section-heading {
            color: #ffffff;
        }
        .section-desc {
            font-size: 0.95rem;
            color: var(--text-soft);
            max-width: 640px;
            margin-bottom: 32px;
            line-height: 1.6;
        }
        .bg-dark-block .section-desc {
            color: #bcc3cd;
        }

        /* ===== 文章卡片网格 ===== */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }
        .article-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .article-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: #cfd4dc;
        }
        .article-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: #e8eaef;
        }
        .article-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .article-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .article-card .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 11px;
            border-radius: 20px;
            letter-spacing: 0.4px;
            z-index: 2;
        }
        .article-card .card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-card .card-body h3 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
            color: var(--text-main);
        }
        .article-card .card-body h3 a {
            color: inherit;
            transition: color var(--transition-fast);
        }
        .article-card .card-body h3 a:hover {
            color: var(--primary);
        }
        .article-card .card-body .card-excerpt {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.6;
            margin-bottom: 14px;
            flex: 1;
        }
        .article-card .card-body .card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.78rem;
            color: var(--text-light);
            padding-top: 10px;
            border-top: 1px solid var(--border-light);
        }
        .article-card .card-body .card-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ===== 阵型卡片 ===== */
        .formation-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .formation-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 28px 20px 22px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .formation-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .formation-card .fm-icon {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .formation-card h4 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-main);
        }
        .formation-card p {
            font-size: 0.82rem;
            color: var(--text-soft);
            line-height: 1.5;
            margin: 0;
        }

        /* ===== 教练风格横向卡片 ===== */
        .coach-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .coach-item {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
        }
        .coach-item:hover {
            box-shadow: var(--shadow-md);
            border-color: #cfd4dc;
            transform: translateX(3px);
        }
        .coach-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #1a5e34);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            flex-shrink: 0;
            font-weight: 700;
        }
        .coach-info {
            flex: 1;
            min-width: 0;
        }
        .coach-info h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-main);
        }
        .coach-info .coach-style-tag {
            display: inline-block;
            background: #eef5f0;
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 14px;
            margin-bottom: 4px;
            letter-spacing: 0.3px;
        }
        .coach-info p {
            font-size: 0.84rem;
            color: var(--text-soft);
            margin: 0;
            line-height: 1.5;
        }

        /* ===== 经典回顾列表 ===== */
        .classic-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .classic-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
        }
        .classic-item:hover {
            box-shadow: var(--shadow-md);
            border-color: #cfd4dc;
        }
        .classic-num {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
            flex-shrink: 0;
            min-width: 36px;
            text-align: center;
            line-height: 1;
            padding-top: 2px;
        }
        .classic-content h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-main);
        }
        .classic-content p {
            font-size: 0.84rem;
            color: var(--text-soft);
            margin: 0;
            line-height: 1.55;
        }

        /* ===== FAQ手风琴 ===== */
        .faq-accordion-wrap .accordion-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md) !important;
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            background: var(--bg-white);
        }
        .faq-accordion-wrap .accordion-button {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-main);
            background: #fafbfc;
            border-radius: var(--radius-md) !important;
            padding: 16px 20px;
            transition: all var(--transition-fast);
            box-shadow: none;
        }
        .faq-accordion-wrap .accordion-button:not(.collapsed) {
            background: #eef7f1;
            color: var(--primary-dark);
            border-bottom: 1px solid var(--border-light);
            box-shadow: none;
        }
        .faq-accordion-wrap .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(13, 124, 61, 0.15);
            outline: none;
        }
        .faq-accordion-wrap .accordion-body {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.7;
            padding: 18px 20px;
        }

        /* ===== CTA板块 ===== */
        .cta-block {
            background: linear-gradient(135deg, #0a1a12 0%, #0f2418 50%, #0c1b13 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }
        .cta-block>* {
            position: relative;
            z-index: 2;
        }
        .cta-block h2 {
            font-family: var(--font-heading);
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .cta-block p {
            font-size: 0.95rem;
            color: #c5cdd8;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 0.95rem;
            background: var(--accent);
            color: #1c1e23;
            transition: all var(--transition-smooth);
            letter-spacing: 0.4px;
        }
        .btn-cta-primary:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(232, 168, 23, 0.55);
            color: #1c1e23;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #0d1117;
            color: #c5cdd8;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: 0.4px;
        }
        .footer-brand {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.05rem;
        }
        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 0.85rem;
            color: #a8adb8;
            margin-bottom: 6px;
            transition: color var(--transition-fast);
            line-height: 1.5;
        }
        .footer-col a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            text-align: center;
            font-size: 0.8rem;
            color: #8b8f9a;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 10px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            font-size: 0.8rem;
            color: #8b8f9a;
            white-space: nowrap;
        }
        .footer-bottom-links a:hover {
            color: #d0d4db;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1100px) {
            .nav-links-desktop {
                gap: 2px;
            }
            .nav-links-desktop li a {
                padding: 7px 10px;
                font-size: 0.82rem;
            }
            .nav-cta-desktop {
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .formation-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .articles-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .page-hero-content h1 {
                font-size: 2.1rem;
            }
        }
        @media (max-width: 900px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .articles-grid {
                grid-template-columns: 1fr;
            }
            .coach-item {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            .page-hero {
                min-height: 320px;
            }
            .page-hero-content h1 {
                font-size: 1.75rem;
            }
            .section-heading {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 600px) {
            .container-custom {
                padding: 0 16px;
            }
            .navbar-inner {
                padding: 0 16px;
            }
            .section-block {
                padding: 40px 0;
            }
            .formation-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .formation-card {
                padding: 20px 14px 16px;
            }
            .page-hero-content h1 {
                font-size: 1.5rem;
            }
            .page-hero-content .hero-subtitle {
                font-size: 0.9rem;
            }
            .cta-block {
                padding: 32px 20px;
            }
            .cta-block h2 {
                font-size: 1.3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom-links {
                gap: 10px;
                font-size: 0.75rem;
            }
            .article-card .card-body {
                padding: 14px 14px 16px;
            }
            .classic-item {
                flex-direction: column;
                gap: 8px;
            }
        }

/* roulang page: category4 */
:root {
            --color-primary: #00a651;
            --color-primary-dark: #008c44;
            --color-primary-light: #00c261;
            --color-accent: #f5a623;
            --color-accent-dark: #e0950f;
            --color-bg: #0a0e14;
            --color-bg-card: #11161e;
            --color-bg-card-hover: #161d28;
            --color-bg-elevated: #181f2a;
            --color-bg-glass: rgba(10, 14, 20, 0.82);
            --color-bg-glass-solid: rgba(14, 19, 28, 0.94);
            --color-text: #e6edf3;
            --color-text-secondary: #9ba3b0;
            --color-text-muted: #6b7382;
            --color-border: #1e2a38;
            --color-border-light: #253140;
            --color-live-red: #e53935;
            --color-live-pulse: #ff5252;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.45);
            --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.55);
            --shadow-glow-green: 0 0 20px rgba(0, 166, 81, 0.3);
            --shadow-glow-accent: 0 0 18px rgba(245, 166, 35, 0.28);
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --navbar-height: 68px;
            --container-max: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            font-family: inherit;
            cursor: pointer;
        }
        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container-custom {
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ========== 导航栏 ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: var(--navbar-height);
            background: var(--color-bg-glass);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }
        .site-navbar.scrolled {
            background: var(--color-bg-glass-solid);
            box-shadow: 0 4px 22px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .navbar-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-family: var(--font-heading);
            font-size: 1.28rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.04em;
            white-space: nowrap;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            color: #fff;
            opacity: 0.88;
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--color-primary);
            border-radius: 50%;
            font-size: 1rem;
            color: #fff;
            box-shadow: var(--shadow-glow-green);
        }
        .nav-links-desktop {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 6px;
            align-items: center;
        }
        .nav-links-desktop li a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links-desktop li a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-links-desktop li a.active {
            color: #fff;
            background: var(--color-primary);
            font-weight: 600;
            box-shadow: var(--shadow-glow-green);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 18px;
            border-radius: 22px;
            font-size: 0.9rem;
            font-weight: 600;
            background: var(--color-accent);
            color: #1a1a1a;
            transition: all var(--transition-base);
            white-space: nowrap;
            box-shadow: var(--shadow-glow-accent);
        }
        .nav-cta-btn:hover {
            background: #ffb838;
            color: #111;
            transform: translateY(-1px);
            box-shadow: 0 0 24px rgba(245, 166, 35, 0.45);
        }
        .nav-cta-desktop {
            display: inline-flex;
        }
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.4rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .nav-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--navbar-height);
            left: 0;
            right: 0;
            background: var(--color-bg-glass-solid);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-direction: column;
            padding: 16px 20px;
            gap: 6px;
            z-index: 1045;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile-menu.active {
            display: flex;
        }
        .nav-mobile-menu a {
            display: block;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
        }
        .nav-mobile-menu a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-mobile-menu a.active {
            color: #fff;
            background: var(--color-primary);
            font-weight: 600;
        }
        .nav-mobile-menu .nav-cta-btn {
            text-align: center;
            justify-content: center;
            margin-top: 6px;
            color: #1a1a1a;
            border-radius: 22px;
        }

        /* ========== 页面Banner ========== */
        .page-banner {
            position: relative;
            min-height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(180deg, rgba(10, 14, 20, 0.55) 0%, rgba(10, 14, 20, 0.9) 100%), url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            padding: 120px 20px 60px;
            margin-top: 0;
            border-bottom: 1px solid var(--color-border);
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(0, 166, 81, 0.12) 0%, transparent 68%);
            pointer-events: none;
        }
        .page-banner-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }
        .page-banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--color-live-red);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            animation: livePulse 2s infinite;
            margin-bottom: 16px;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 8px rgba(229, 57, 53, 0.5);
            }
            50% {
                box-shadow: 0 0 22px rgba(229, 57, 53, 0.85);
            }
        }
        .page-banner-badge .live-dot {
            width: 9px;
            height: 9px;
            background: #fff;
            border-radius: 50%;
            animation: dotBlink 0.8s infinite;
        }
        @keyframes dotBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.25;
            }
        }
        .page-banner h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 12px;
            letter-spacing: 0.03em;
        }
        .page-banner .banner-subtitle {
            font-size: 1.08rem;
            color: var(--color-text-secondary);
            margin: 0 0 24px;
            line-height: 1.6;
        }
        .banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .btn-banner-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 26px;
            font-weight: 600;
            font-size: 0.95rem;
            background: var(--color-primary);
            color: #fff;
            border: none;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-glow-green);
        }
        .btn-banner-primary:hover {
            background: var(--color-primary-light);
            transform: translateY(-2px);
            box-shadow: 0 0 28px rgba(0, 166, 81, 0.5);
            color: #fff;
        }
        .btn-banner-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 26px;
            font-weight: 600;
            font-size: 0.95rem;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.35);
            transition: all var(--transition-base);
        }
        .btn-banner-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ========== 板块通用样式 ========== */
        .section-block {
            padding: 60px 0;
        }
        .section-block-dark {
            background: var(--color-bg-card);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }
        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--color-primary);
            margin-bottom: 8px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 10px;
            letter-spacing: 0.02em;
        }
        .section-desc {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin: 0 0 32px;
            line-height: 1.6;
            max-width: 600px;
        }
        .section-header {
            margin-bottom: 36px;
        }
        .section-header-center {
            text-align: center;
        }
        .section-header-center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== 直播赛事卡片 ========== */
        .live-match-card {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .live-match-card:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-md), 0 0 16px rgba(0, 166, 81, 0.15);
            transform: translateY(-2px);
            background: var(--color-bg-card-hover);
        }
        .live-match-card .live-tag {
            position: absolute;
            top: 12px;
            right: 14px;
            background: var(--color-live-red);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 10px;
            letter-spacing: 0.04em;
            animation: livePulse 2s infinite;
        }
        .live-match-card .match-league {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 0.03em;
        }
        .live-match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }
        .live-match-card .team-name {
            font-weight: 700;
            font-size: 1.05rem;
            color: #fff;
            text-align: center;
            flex: 1;
        }
        .live-match-card .match-score {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--color-accent);
            text-align: center;
            min-width: 50px;
        }
        .live-match-card .match-vs {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text-muted);
            text-align: center;
            min-width: 36px;
        }
        .live-match-card .match-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: 8px;
            padding-top: 10px;
            border-top: 1px solid var(--color-border-light);
        }
        .live-match-card .match-minute {
            color: var(--color-live-red);
            font-weight: 600;
            font-size: 0.82rem;
        }
        .live-match-card .btn-watch-sm {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 14px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 600;
            background: var(--color-primary);
            color: #fff;
            border: none;
            transition: all var(--transition-fast);
        }
        .live-match-card .btn-watch-sm:hover {
            background: var(--color-primary-light);
            color: #fff;
            box-shadow: var(--shadow-glow-green);
        }

        /* 即将直播卡片 */
        .upcoming-match-card {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .upcoming-match-card:hover {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-md);
            background: var(--color-bg-card-hover);
        }
        .upcoming-match-card .upcoming-time {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-accent);
            white-space: nowrap;
            min-width: 60px;
            text-align: center;
        }
        .upcoming-match-card .upcoming-date-tag {
            font-size: 0.72rem;
            color: var(--color-text-muted);
            text-align: center;
            white-space: nowrap;
        }
        .upcoming-match-card .upcoming-teams {
            flex: 1;
            min-width: 180px;
            font-weight: 600;
            color: #fff;
            font-size: 0.95rem;
        }
        .upcoming-match-card .upcoming-league {
            font-size: 0.75rem;
            color: var(--color-text-secondary);
            white-space: nowrap;
        }
        .upcoming-match-card .btn-remind {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 7px 14px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 500;
            background: transparent;
            color: var(--color-accent);
            border: 1px solid var(--color-accent);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .upcoming-match-card .btn-remind:hover {
            background: var(--color-accent);
            color: #1a1a1a;
        }

        /* ========== 联赛入口卡片 ========== */
        .league-entry-card {
            display: block;
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 24px 18px;
            text-align: center;
            transition: all var(--transition-smooth);
            height: 100%;
        }
        .league-entry-card:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            color: inherit;
            background: var(--color-bg-card-hover);
        }
        .league-entry-card .league-icon-wrap {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: rgba(0, 166, 81, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 1.3rem;
            color: var(--color-primary);
            transition: all var(--transition-base);
        }
        .league-entry-card:hover .league-icon-wrap {
            background: var(--color-primary);
            color: #fff;
            box-shadow: var(--shadow-glow-green);
        }
        .league-entry-card .league-name {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 4px;
        }
        .league-entry-card .league-count {
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }

        /* ========== 数据统计面板 ========== */
        .stat-panel {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 26px 20px;
            text-align: center;
            transition: all var(--transition-smooth);
            height: 100%;
        }
        .stat-panel:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-panel .stat-icon {
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 10px;
        }
        .stat-panel .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.03em;
        }
        .stat-panel .stat-label {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin-top: 4px;
        }

        /* ========== FAQ区域 ========== */
        .faq-item {
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--color-border-light);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 18px 20px;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background var(--transition-fast);
            letter-spacing: 0.02em;
        }
        .faq-question:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        .faq-question .faq-chevron {
            transition: transform var(--transition-base);
            font-size: 0.85rem;
            color: var(--color-text-muted);
            flex-shrink: 0;
            margin-left: 12px;
        }
        .faq-question[aria-expanded="true"] .faq-chevron {
            transform: rotate(180deg);
            color: var(--color-primary);
        }
        .faq-answer {
            padding: 0 20px 18px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            display: none;
        }
        .faq-answer.show {
            display: block;
        }

        /* ========== CTA区域 ========== */
        .cta-block {
            background: linear-gradient(135deg, #0f1a15 0%, #111d1a 40%, #0d1814 100%);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-xl);
            padding: 44px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 166, 81, 0.2) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .cta-block .cta-title {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-block .cta-desc {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }
        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            border-radius: 26px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--color-primary);
            color: #fff;
            border: none;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-glow-green);
            position: relative;
            z-index: 1;
        }
        .btn-cta-large:hover {
            background: var(--color-primary-light);
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 166, 81, 0.55);
            color: #fff;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #080c12;
            border-top: 1px solid var(--color-border);
            padding: 48px 0 28px;
            color: var(--color-text-secondary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin-bottom: 6px;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--color-primary-light);
        }
        .footer-brand {
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--color-border);
            padding-top: 20px;
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 12px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom-links a:hover {
            color: var(--color-primary-light);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .nav-links-desktop {
                gap: 2px;
            }
            .nav-links-desktop li a {
                padding: 7px 10px;
                font-size: 0.82rem;
            }
            .nav-cta-desktop {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            .page-banner h1 {
                font-size: 2.2rem;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: block;
            }
            .page-banner {
                min-height: 320px;
                padding: 100px 16px 40px;
            }
            .page-banner h1 {
                font-size: 1.8rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.9rem;
            }
            .section-block {
                padding: 40px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .live-match-card .match-teams {
                gap: 8px;
            }
            .live-match-card .team-name {
                font-size: 0.9rem;
            }
            .live-match-card .match-score {
                font-size: 1.2rem;
                min-width: 36px;
            }
            .upcoming-match-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .upcoming-match-card .upcoming-time {
                min-width: auto;
                text-align: left;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .stat-panel .stat-value {
                font-size: 1.5rem;
            }
            .cta-block {
                padding: 30px 18px;
            }
            .cta-block .cta-title {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 520px) {
            .page-banner h1 {
                font-size: 1.45rem;
            }
            .page-banner {
                min-height: 280px;
                padding: 90px 12px 32px;
            }
            .banner-actions {
                flex-direction: column;
                align-items: center;
            }
            .btn-banner-primary,
            .btn-banner-outline {
                width: 100%;
                justify-content: center;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                text-align: center;
            }
            .footer-bottom-links {
                gap: 10px;
            }
            .live-match-card {
                padding: 14px 12px;
            }
            .live-match-card .team-name {
                font-size: 0.8rem;
            }
            .live-match-card .match-score {
                font-size: 1rem;
                min-width: 28px;
            }
            .league-entry-card {
                padding: 16px 10px;
            }
            .league-entry-card .league-name {
                font-size: 0.85rem;
            }
            .stat-panel .stat-value {
                font-size: 1.3rem;
            }
            .container-custom {
                padding-left: 12px;
                padding-right: 12px;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: #0d8c3e;
            --color-primary-hover: #0a6e30;
            --color-primary-light: #e6f5eb;
            --color-accent: #e8b830;
            --color-accent-hover: #c99a20;
            --color-bg-body: #f5f6f8;
            --color-bg-dark: #0f1419;
            --color-bg-card: #ffffff;
            --color-bg-card-alt: #1a1f2b;
            --color-text: #1c1e24;
            --color-text-light: #5a5e68;
            --color-text-muted: #9aa0ab;
            --color-text-on-dark: #e8eaed;
            --color-border: #e2e5ea;
            --color-border-light: #eef0f4;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.11);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.13);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --nav-height: 68px;
            --container-max: 1200px;
        }

        *,
        *::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-body);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg-body);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== NAVIGATION ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            background: rgba(15, 20, 25, 0.78);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
            transition: background var(--transition-normal), box-shadow var(--transition-normal);
            height: var(--nav-height);
        }
        .site-navbar.scrolled {
            background: rgba(10, 14, 18, 0.94);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.30);
        }
        .navbar-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            font-family: var(--font-heading);
            letter-spacing: 0.02em;
            white-space: nowrap;
            transition: opacity var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: #ffffff;
            opacity: 0.88;
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: var(--color-primary);
            border-radius: 10px;
            font-size: 1.05rem;
            color: #fff;
            flex-shrink: 0;
        }
        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }
        .nav-links-desktop li a {
            display: block;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.93rem;
            font-weight: 500;
            color: #c8ccd2;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .nav-links-desktop li a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.07);
        }
        .nav-links-desktop li a.active {
            color: #ffffff;
            background: var(--color-primary);
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(13, 140, 62, 0.35);
        }
        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            background: var(--color-accent);
            color: #1c1e24;
            border: none;
            transition: all var(--transition-fast);
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: 0.02em;
        }
        .nav-cta-btn:hover {
            background: var(--color-accent-hover);
            color: #1c1e24;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(232, 184, 48, 0.35);
        }
        .nav-cta-desktop {
            display: inline-flex;
        }
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.4rem;
            padding: 8px 12px;
            border-radius: 8px;
            transition: background var(--transition-fast);
        }
        .nav-mobile-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            width: 100%;
            background: rgba(10, 14, 18, 0.97);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 12px 24px 20px;
            z-index: 1049;
            flex-direction: column;
            gap: 4px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
        }
        .nav-mobile-menu.show {
            display: flex;
        }
        .nav-mobile-menu a {
            display: block;
            padding: 11px 16px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c8ccd2;
            transition: all var(--transition-fast);
        }
        .nav-mobile-menu a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-mobile-menu a.active {
            color: #ffffff;
            background: var(--color-primary);
            font-weight: 600;
        }
        .nav-mobile-menu .nav-cta-btn {
            display: inline-flex;
            margin-top: 6px;
            text-align: center;
            justify-content: center;
        }

        @media (max-width: 1024px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: block;
            }
        }
        @media (min-width: 1025px) {
            .nav-mobile-menu {
                display: none !important;
            }
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-position: center 30%;
            margin-top: var(--nav-height);
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 14, 18, 0.72) 0%, rgba(10, 14, 18, 0.82) 60%, rgba(10, 14, 18, 0.94) 100%);
            z-index: 1;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 40% 50%, rgba(13, 140, 62, 0.28) 0%, transparent 70%);
            z-index: 2;
        }
        .page-banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 50px 24px;
            max-width: 700px;
        }
        .page-banner-content .banner-badge {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            background: rgba(232, 184, 48, 0.18);
            color: var(--color-accent);
            border: 1px solid rgba(232, 184, 48, 0.3);
            letter-spacing: 0.04em;
            margin-bottom: 16px;
        }
        .page-banner-content h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.03em;
            line-height: 1.25;
        }
        .page-banner-content .banner-desc {
            font-size: 1.08rem;
            color: #bcc0c8;
            line-height: 1.6;
            max-width: 560px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .page-banner {
                min-height: 260px;
            }
            .page-banner-content h1 {
                font-size: 1.8rem;
            }
            .page-banner-content .banner-desc {
                font-size: 0.95rem;
            }
        }

        /* ========== SECTIONS ========== */
        .section-block {
            padding: 60px 0;
        }
        .section-block-alt {
            background: #ffffff;
            border-top: 1px solid var(--color-border-light);
            border-bottom: 1px solid var(--color-border-light);
        }
        .section-block-dark {
            background: var(--color-bg-dark);
            color: var(--color-text-on-dark);
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 1.85rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .section-block-dark .section-header h2 {
            color: #ffffff;
        }
        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-light);
            max-width: 500px;
            margin: 0 auto;
        }
        .section-block-dark .section-header .section-subtitle {
            color: var(--color-text-muted);
        }

        /* ========== NEWS LIST ========== */
        .news-list-item {
            display: flex;
            gap: 20px;
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 18px;
            margin-bottom: 16px;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            align-items: flex-start;
        }
        .news-list-item:hover {
            box-shadow: var(--shadow-md);
            border-color: #d8dce3;
            transform: translateY(-1px);
        }
        .news-list-thumb {
            width: 180px;
            min-width: 180px;
            height: 120px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
        }
        .news-list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-normal);
        }
        .news-list-item:hover .news-list-thumb img {
            transform: scale(1.06);
        }
        .news-list-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-width: 0;
        }
        .news-list-body .news-date {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 6px;
            letter-spacing: 0.02em;
        }
        .news-list-body h3 {
            font-size: 1.12rem;
            font-weight: 650;
            color: var(--color-text);
            margin-bottom: 8px;
            line-height: 1.4;
            font-family: var(--font-heading);
        }
        .news-list-body h3 a {
            color: inherit;
            transition: color var(--transition-fast);
        }
        .news-list-body h3 a:hover {
            color: var(--color-primary);
        }
        .news-list-body .news-excerpt {
            font-size: 0.9rem;
            color: var(--color-text-light);
            line-height: 1.55;
            margin-bottom: 10px;
            flex: 1;
        }
        .news-list-body .news-readmore {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-primary);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap var(--transition-fast);
            align-self: flex-start;
        }
        .news-list-body .news-readmore:hover {
            gap: 9px;
            color: var(--color-primary-hover);
        }
        @media (max-width: 640px) {
            .news-list-item {
                flex-direction: column;
                gap: 14px;
                padding: 14px;
            }
            .news-list-thumb {
                width: 100%;
                min-width: 100%;
                height: 180px;
            }
            .news-list-body h3 {
                font-size: 1.02rem;
            }
        }

        /* ========== FIXTURE CARDS ========== */
        .fixture-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            text-align: center;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .fixture-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: #d0d5dd;
        }
        .fixture-league {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: var(--color-primary-light);
            padding: 3px 12px;
            border-radius: 14px;
        }
        .fixture-teams {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-text);
            font-family: var(--font-heading);
            letter-spacing: 0.02em;
        }
        .fixture-info {
            font-size: 0.85rem;
            color: var(--color-text-light);
        }
        .fixture-time {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-accent);
            background: rgba(232, 184, 48, 0.08);
            padding: 4px 14px;
            border-radius: 14px;
            display: inline-block;
        }
        .section-block-dark .fixture-card {
            background: var(--color-bg-card-alt);
            border-color: rgba(255, 255, 255, 0.08);
        }
        .section-block-dark .fixture-card .fixture-teams {
            color: #ffffff;
        }
        .section-block-dark .fixture-card .fixture-info {
            color: var(--color-text-muted);
        }

        /* ========== HIGHLIGHT CARDS ========== */
        .highlight-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .highlight-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .highlight-card-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .highlight-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-normal);
        }
        .highlight-card:hover .highlight-card-img img {
            transform: scale(1.07);
        }
        .highlight-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .highlight-card-body .highlight-tag {
            font-size: 0.76rem;
            font-weight: 600;
            color: var(--color-accent);
            background: rgba(232, 184, 48, 0.1);
            padding: 2px 10px;
            border-radius: 10px;
            display: inline-block;
            align-self: flex-start;
            margin-bottom: 8px;
            letter-spacing: 0.03em;
        }
        .highlight-card-body h3 {
            font-size: 1.05rem;
            font-weight: 650;
            color: var(--color-text);
            margin-bottom: 6px;
            line-height: 1.4;
            font-family: var(--font-heading);
        }
        .highlight-card-body p {
            font-size: 0.88rem;
            color: var(--color-text-light);
            line-height: 1.5;
            flex: 1;
        }

        /* ========== STATS BAR ========== */
        .stats-row-custom {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-item-custom {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            transition: all var(--transition-normal);
        }
        .stat-item-custom:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
        }
        .stat-icon-wrap {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .stat-icon-wrap.icon-green {
            background: rgba(13, 140, 62, 0.22);
            color: #2ecc71;
        }
        .stat-icon-wrap.icon-gold {
            background: rgba(232, 184, 48, 0.22);
            color: #f0c040;
        }
        .stat-icon-wrap.icon-blue {
            background: rgba(56, 140, 220, 0.22);
            color: #5baeff;
        }
        .stat-icon-wrap.icon-rose {
            background: rgba(220, 70, 100, 0.22);
            color: #f07080;
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            font-family: var(--font-heading);
            letter-spacing: 0.02em;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            letter-spacing: 0.03em;
        }
        @media (max-width: 768px) {
            .stats-row-custom {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .stat-value {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .stats-row-custom {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-item-custom {
                padding: 20px 14px;
            }
        }

        /* ========== FAQ ========== */
        .faq-list-custom .faq-item {
            background: var(--color-bg-card);
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-list-custom .faq-item:hover {
            border-color: #d0d5dd;
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 16px 20px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            font-family: var(--font-body);
            letter-spacing: 0.01em;
            transition: color var(--transition-fast);
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-question .faq-icon {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--color-primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-normal), padding var(--transition-normal);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 0.92rem;
            color: var(--color-text-light);
            line-height: 1.65;
        }

        /* ========== CTA ========== */
        .cta-block {
            background: linear-gradient(135deg, #0d8c3e 0%, #0a6e30 40%, #0b5828 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            color: #ffffff;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-block::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 140px;
            height: 140px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-block h2 {
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.03em;
        }
        .cta-block p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            border-radius: 28px;
            font-size: 1rem;
            font-weight: 650;
            background: var(--color-accent);
            color: #1c1e24;
            border: none;
            transition: all var(--transition-fast);
            position: relative;
            z-index: 1;
            letter-spacing: 0.02em;
        }
        .btn-cta-large:hover {
            background: #f5d060;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
            color: #1c1e24;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0d1117;
            color: #c8ccd2;
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 650;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
            font-family: var(--font-heading);
        }
        .footer-col a,
        .footer-col span {
            display: block;
            margin-bottom: 7px;
            font-size: 0.88rem;
            color: #a8adb8;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: #ffffff;
        }
        .footer-brand {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.02em;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 22px;
            text-align: center;
            font-size: 0.82rem;
            color: #8b8f9a;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 14px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            font-size: 0.82rem;
            color: #8b8f9a;
            transition: color var(--transition-fast);
        }
        .footer-bottom-links a:hover {
            color: #ffffff;
        }
        .footer-bottom p {
            margin: 0;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom-links {
                gap: 10px;
            }
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            padding: 14px 0 0;
            flex-wrap: wrap;
        }
        .breadcrumb-custom a {
            color: var(--color-text-light);
            transition: color var(--transition-fast);
        }
        .breadcrumb-custom a:hover {
            color: var(--color-primary);
        }
        .breadcrumb-custom .sep {
            color: #c0c5ce;
            font-size: 0.7rem;
        }
        .breadcrumb-custom .current {
            color: var(--color-primary);
            font-weight: 600;
        }

        /* ========== OVERRIDE BOOTSTRAP ========== */
        .btn {
            border-radius: 8px;
            font-weight: 600;
            transition: all var(--transition-fast);
            letter-spacing: 0.01em;
        }
        .btn-primary {
            background-color: var(--color-primary);
            border-color: var(--color-primary);
        }
        .btn-primary:hover {
            background-color: var(--color-primary-hover);
            border-color: var(--color-primary-hover);
        }
        .row.g-4 {
            --bs-gutter-y: 1.5rem;
        }

/* roulang page: category2 */
:root {
            --primary: #0d7c3d;
            --primary-dark: #095a2c;
            --primary-light: #10a34e;
            --accent: #e8a817;
            --accent-hover: #c98f14;
            --bg: #f5f6f8;
            --surface: #ffffff;
            --text: #1a1d23;
            --text-secondary: #5a5f6b;
            --text-muted: #8b8f9a;
            --border: #e2e5ea;
            --border-light: #eef0f4;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --nav-height: 68px;
            --container-max: 1200px;
            --container-padding: 20px;
        }

        *,
        *::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);
            background-color: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            width: 100%;
        }

        /* ========== 导航栏 - 玻璃沉浸 ========== */
        .site-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            height: var(--nav-height);
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(200, 205, 215, 0.45);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
        }

        .site-navbar.scrolled {
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
            border-bottom: 1px solid rgba(180, 188, 200, 0.55);
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            height: 100%;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
            letter-spacing: -0.01em;
            transition: color var(--transition);
        }
        .nav-logo:hover {
            color: var(--primary);
        }
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .nav-links-desktop {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 6px;
            margin: 0;
            padding: 0;
            flex-wrap: nowrap;
        }
        .nav-links-desktop li a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .nav-links-desktop li a:hover {
            color: var(--primary);
            background: rgba(13, 124, 61, 0.06);
        }
        .nav-links-desktop li a.active {
            color: var(--primary);
            background: rgba(13, 124, 61, 0.10);
            font-weight: 600;
        }

        .nav-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            background: var(--primary);
            color: #fff !important;
            white-space: nowrap;
            transition: all var(--transition);
            box-shadow: 0 4px 14px rgba(13, 124, 61, 0.30);
            letter-spacing: 0.02em;
        }
        .nav-cta-btn:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 20px rgba(13, 124, 61, 0.40);
            transform: translateY(-1px);
            color: #fff !important;
        }
        .nav-cta-desktop {
            display: inline-flex;
        }

        .nav-mobile-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            font-size: 1.3rem;
            color: var(--text);
            background: rgba(0, 0, 0, 0.03);
            transition: all var(--transition);
            border: 1px solid transparent;
        }
        .nav-mobile-toggle:hover {
            background: rgba(0, 0, 0, 0.06);
            border-color: var(--border);
        }

        .nav-mobile-menu {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1040;
            flex-direction: column;
            padding: 20px var(--container-padding);
            gap: 6px;
            overflow-y: auto;
            border-top: 1px solid var(--border-light);
        }
        .nav-mobile-menu.open {
            display: flex;
        }
        .nav-mobile-menu a {
            display: block;
            padding: 13px 16px;
            border-radius: 10px;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
        }
        .nav-mobile-menu a:hover {
            background: rgba(13, 124, 61, 0.06);
            color: var(--primary);
        }
        .nav-mobile-menu a.active {
            background: rgba(13, 124, 61, 0.10);
            color: var(--primary);
            font-weight: 600;
        }
        .nav-mobile-menu .nav-cta-btn {
            margin-top: 10px;
            text-align: center;
            justify-content: center;
            border-radius: 12px;
            padding: 14px 20px;
            font-size: 1rem;
        }

        /* ========== 页面主体 ========== */
        .page-main {
            flex: 1;
            padding-top: var(--nav-height);
        }

        /* ========== 内页 Banner ========== */
        .page-banner {
            position: relative;
            padding: 70px 0 60px;
            background: linear-gradient(160deg, #0a1a0e 0%, #0f2d1a 35%, #1a3d25 65%, #0d2b17 100%);
            overflow: hidden;
            text-align: center;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 0;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(13, 124, 61, 0.30) 0%, transparent 70%);
            z-index: 0;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
        .page-banner .banner-badge {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.12);
            color: #c8f0d2;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 16px;
            letter-spacing: 0.04em;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }
        .page-banner .banner-subtitle {
            font-size: 1.08rem;
            color: rgba(220, 235, 225, 0.85);
            margin-bottom: 28px;
            line-height: 1.6;
            max-width: 540px;
            margin-left: auto;
            margin-right: auto;
        }
        .banner-search-wrap {
            display: flex;
            max-width: 460px;
            margin: 0 auto;
            gap: 0;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
        }
        .banner-search-wrap input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            outline: none;
            font-size: 0.95rem;
            background: #fff;
            color: var(--text);
            font-family: inherit;
        }
        .banner-search-wrap input::placeholder {
            color: var(--text-muted);
        }
        .banner-search-wrap button {
            padding: 14px 22px;
            background: var(--accent);
            color: #1a1d23;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            font-family: inherit;
            letter-spacing: 0.02em;
        }
        .banner-search-wrap button:hover {
            background: var(--accent-hover);
        }

        /* ========== 通用板块 ========== */
        .section-block {
            padding: 56px 0;
        }
        .section-block.bg-white {
            background: var(--surface);
        }
        .section-block.bg-light {
            background: var(--bg);
        }
        .section-header {
            text-align: center;
            margin-bottom: 36px;
        }
        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .section-header .section-lead {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .section-header.text-start {
            text-align: left;
        }
        .section-header.text-start .section-lead {
            margin: 0;
        }

        /* ========== 录像卡片网格 ========== */
        .video-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .video-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid var(--border-light);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .video-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--border);
        }
        .video-card .card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #e8ecef;
        }
        .video-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .video-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .video-card .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.25);
            transition: background var(--transition);
        }
        .video-card:hover .play-overlay {
            background: rgba(0, 0, 0, 0.40);
        }
        .play-overlay .play-icon {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            transition: all var(--transition);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        }
        .video-card:hover .play-icon {
            background: #fff;
            transform: scale(1.08);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
        }
        .video-card .card-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.72);
            color: #fff;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        .video-card .card-body-custom {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .video-card .card-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(13, 124, 61, 0.10);
            color: var(--primary);
            margin-bottom: 8px;
            align-self: flex-start;
        }
        .video-card .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .video-card .card-meta {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: auto;
            display: flex;
            gap: 14px;
        }

        /* ========== 列表样式 ========== */
        .video-list-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
            align-items: flex-start;
            transition: all var(--transition);
            cursor: pointer;
        }
        .video-list-item:hover {
            background: rgba(13, 124, 61, 0.02);
            padding-left: 8px;
            border-radius: 8px;
        }
        .video-list-item .list-thumb {
            width: 160px;
            flex-shrink: 0;
            aspect-ratio: 16 / 9;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: #e8ecef;
            position: relative;
        }
        .video-list-item .list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-list-item .list-duration-sm {
            position: absolute;
            bottom: 6px;
            right: 6px;
            background: rgba(0, 0, 0, 0.70);
            color: #fff;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 500;
        }
        .video-list-item .list-info {
            flex: 1;
            min-width: 0;
        }
        .video-list-item .list-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .video-list-item .list-info .list-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 6px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .video-list-item .list-info .list-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ========== 联赛分类标签 ========== */
        .league-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 28px;
        }
        .league-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .league-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(13, 124, 61, 0.04);
            box-shadow: var(--shadow-sm);
        }
        .league-tag.active-tag {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            font-weight: 600;
        }

        /* ========== 经典回顾区 ========== */
        .classic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .classic-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
        }
        .classic-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .classic-card .classic-img {
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #e8ecef;
            position: relative;
        }
        .classic-card .classic-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .classic-card:hover .classic-img img {
            transform: scale(1.05);
        }
        .classic-card .classic-year {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--accent);
            color: #1a1d23;
            padding: 4px 10px;
            border-radius: 5px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .classic-card .classic-info {
            padding: 14px;
        }
        .classic-card .classic-info h5 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
        }
        .classic-card .classic-info .classic-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ========== 统计区 ========== */
        .stats-row-custom {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .stat-item-custom {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .stat-item-custom:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .stat-item-custom .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 4px;
        }
        .stat-item-custom .stat-label {
            font-size: 0.88rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ========== FAQ ========== */
        .faq-list-custom .accordion-button {
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--text);
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md) !important;
            padding: 16px 20px;
            box-shadow: none;
            transition: all var(--transition);
        }
        .faq-list-custom .accordion-button:not(.collapsed) {
            background: rgba(13, 124, 61, 0.04);
            color: var(--primary);
            border-color: rgba(13, 124, 61, 0.25);
            box-shadow: none;
        }
        .faq-list-custom .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(13, 124, 61, 0.12);
            border-color: var(--primary);
        }
        .faq-list-custom .accordion-item {
            border: none;
            margin-bottom: 10px;
            background: transparent;
        }
        .faq-list-custom .accordion-body {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.7;
            padding: 10px 20px 18px;
        }

        /* ========== CTA ========== */
        .cta-section-inner {
            background: linear-gradient(135deg, #0d2b17 0%, #0f3d22 40%, #0a5c2e 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }
        .cta-section-inner>* {
            position: relative;
            z-index: 1;
        }
        .cta-section-inner h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-section-inner p {
            color: rgba(210, 230, 218, 0.85);
            margin-bottom: 24px;
            font-size: 0.98rem;
        }
        .btn-cta-primary {
            display: inline-block;
            padding: 13px 32px;
            border-radius: 28px;
            background: var(--accent);
            color: #1a1d23;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all var(--transition);
            box-shadow: 0 6px 22px rgba(232, 168, 23, 0.35);
        }
        .btn-cta-primary:hover {
            background: #f0b828;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(232, 168, 23, 0.45);
            color: #1a1d23;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #11161d;
            color: #c5cad3;
            padding: 44px 0 0;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #e8eaef;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col a,
        .footer-col span {
            display: block;
            font-size: 0.86rem;
            color: #a8adb8;
            margin-bottom: 6px;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-brand {
            color: #e8eaef;
            font-weight: 700;
            font-size: 1.15rem;
        }
        .footer-bottom {
            text-align: center;
            padding: 20px 0 28px;
            font-size: 0.8rem;
            color: #8b8f9a;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 10px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            font-size: 0.8rem;
            color: #8b8f9a;
            transition: color var(--transition);
        }
        .footer-bottom-links a:hover {
            color: #d0d4db;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .video-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .classic-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-row-custom {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .page-banner h1 {
                font-size: 2.1rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-cta-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: flex;
            }
            .video-card-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .classic-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .video-list-item {
                flex-direction: column;
                gap: 10px;
            }
            .video-list-item .list-thumb {
                width: 100%;
            }
            .page-banner {
                padding: 50px 0 40px;
            }
            .page-banner h1 {
                font-size: 1.7rem;
            }
            .section-block {
                padding: 36px 0;
            }
            .cta-section-inner {
                padding: 32px 20px;
            }
            .cta-section-inner h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 520px) {
            .video-card-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .classic-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .stats-row-custom {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-item-custom {
                padding: 16px 12px;
            }
            .stat-item-custom .stat-number {
                font-size: 1.6rem;
            }
            .league-tags {
                gap: 6px;
            }
            .league-tag {
                padding: 7px 13px;
                font-size: 0.8rem;
            }
            .page-banner h1 {
                font-size: 1.4rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.9rem;
            }
            .banner-search-wrap input {
                padding: 12px 14px;
                font-size: 0.85rem;
            }
            .banner-search-wrap button {
                padding: 12px 16px;
                font-size: 0.85rem;
            }
            .section-header h2 {
                font-size: 1.35rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .footer-bottom-links {
                gap: 10px;
            }
        }
