/* roulang page: index */
:root {
            --primary: #0d7a2e;
            --primary-dark: #095a22;
            --primary-light: #e8f5e9;
            --accent: #c8943e;
            --accent-light: #fdf3e0;
            --bg-dark: #111d13;
            --bg-darker: #0a130c;
            --bg-light: #f7f8f5;
            --bg-white: #ffffff;
            --text-primary: #1a1a1a;
            --text-secondary: #5a5a5a;
            --text-light: #8a8a8a;
            --text-on-dark: #e8e8e3;
            --border: #e0e0d8;
            --border-light: #eef0ea;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
            --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.18);
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.4s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-primary);
            background-color: var(--bg-light);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            outline: none;
            font-family: inherit;
        }
        input {
            font-family: inherit;
        }
        ul,
        ol {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Top Info Bar */
        .top-info-bar {
            background-color: var(--bg-darker);
            color: #b0b8b1;
            font-size: 0.8rem;
            padding: 6px 0;
            letter-spacing: 0.3px;
        }
        .top-info-bar .container-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .top-info-bar .info-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .top-info-bar .info-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .top-info-bar .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #ff3b3b;
            animation: livePulse 1.6s ease-in-out infinite;
            margin-right: 6px;
            vertical-align: middle;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
            }
            50% {
                opacity: 0.5;
                box-shadow: 0 0 0 8px rgba(255, 59, 59, 0);
            }
        }
        .top-info-bar a {
            color: #b0b8b1;
            transition: color var(--transition-fast);
        }
        .top-info-bar a:hover {
            color: #ffffff;
        }

        /* Main Nav */
        .main-nav-wrap {
            background-color: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--shadow-sm);
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            gap: 16px;
        }
        .nav-brand {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }
        .nav-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-links a {
            display: inline-block;
            padding: 9px 16px;
            border-radius: 22px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: all var(--transition-base);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            background-color: var(--primary-light);
        }
        .nav-links a.active {
            color: #fff;
            background-color: var(--primary);
            font-weight: 600;
            box-shadow: 0 2px 12px rgba(13, 122, 46, 0.3);
        }
        .nav-links a.active:hover {
            background-color: var(--primary-dark);
            color: #fff;
        }
        .nav-search-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--bg-light);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all var(--transition-base);
            cursor: pointer;
            flex-shrink: 0;
        }
        .nav-search-btn:hover {
            background-color: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            padding: 8px;
            cursor: pointer;
        }

        /* Hero */
        .hero-section {
            position: relative;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 560px;
            display: flex;
            align-items: center;
            color: #fff;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(10, 19, 12, 0.88) 20%, rgba(13, 122, 46, 0.65) 70%, rgba(10, 19, 12, 0.82) 100%);
            z-index: 1;
        }
        .hero-section .container-custom {
            position: relative;
            z-index: 2;
            padding-top: 60px;
            padding-bottom: 60px;
        }
        .hero-content {
            max-width: 680px;
        }
        .hero-badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.6px;
            margin-bottom: 20px;
        }
        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: 1px;
            text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
        }
        .hero-content h1 .highlight {
            color: #ffd166;
            position: relative;
        }
        .hero-content .hero-desc {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
            max-width: 560px;
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--accent);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 30px;
            transition: all var(--transition-base);
            box-shadow: 0 6px 28px rgba(200, 148, 62, 0.4);
            letter-spacing: 0.5px;
        }
        .btn-hero-primary:hover {
            background: #d9a845;
            transform: translateY(-3px);
            box-shadow: 0 10px 36px rgba(200, 148, 62, 0.5);
            color: #1a1a1a;
        }
        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.55);
            transition: all var(--transition-base);
            letter-spacing: 0.5px;
        }
        .btn-hero-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        /* Section */
        .section-pad {
            padding: 70px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            background: var(--primary-light);
            padding: 5px 16px;
            border-radius: 16px;
            margin-bottom: 12px;
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .section-header .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 520px;
            margin: 0 auto;
        }

        /* Data Dashboard */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .data-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-base);
        }
        .data-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: transparent;
        }
        .data-card .data-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .data-icon.green {
            background: #e8f5e9;
            color: #0d7a2e;
        }
        .data-icon.amber {
            background: #fff8e1;
            color: #c8943e;
        }
        .data-icon.blue {
            background: #e3f2fd;
            color: #1976d2;
        }
        .data-icon.red {
            background: #ffebee;
            color: #d32f2f;
        }
        .data-card .data-info .data-value {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }
        .data-card .data-info .data-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        .data-card .data-trend {
            font-size: 0.78rem;
            font-weight: 600;
            margin-top: 2px;
        }
        .data-trend.up {
            color: #0d7a2e;
        }
        .data-trend.down {
            color: #d32f2f;
        }

        /* Category Cards */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .category-grid .cat-card-large {
            grid-column: span 2;
        }
        .cat-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-base);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            position: relative;
        }
        .cat-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: transparent;
        }
        .cat-card .cat-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }
        .cat-card .cat-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .cat-card:hover .cat-img-wrap img {
            transform: scale(1.06);
        }
        .cat-card .cat-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
        }
        .cat-card .cat-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .cat-card .cat-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            align-self: flex-start;
            margin-bottom: 8px;
        }
        .cat-card .cat-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .cat-card .cat-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
        }
        .cat-card .cat-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            margin-top: 10px;
            transition: gap var(--transition-fast);
        }
        .cat-card:hover .cat-link {
            gap: 8px;
        }
        .cat-card-large .cat-img-wrap {
            aspect-ratio: 16 / 8;
        }

        /* News List */
        .news-list-wrap {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition-fast);
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item:hover {
            background: #fafbf7;
        }
        .news-item .news-img {
            width: 160px;
            height: 108px;
            border-radius: var(--radius-md);
            overflow: hidden;
            flex-shrink: 0;
            object-fit: cover;
        }
        .news-item .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-item .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-item .news-date {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-bottom: 4px;
        }
        .news-item .news-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .news-item .news-summary {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item .news-readmore {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.88rem;
            margin-top: 8px;
            transition: gap var(--transition-fast);
        }
        .news-item .news-readmore:hover {
            gap: 8px;
            color: var(--primary-dark);
        }

        /* Topics */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .topic-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-base);
        }
        .topic-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }
        .topic-card .topic-img-wrap {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }
        .topic-card .topic-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .topic-card:hover .topic-img-wrap img {
            transform: scale(1.05);
        }
        .topic-card .topic-body {
            padding: 20px 22px 22px;
        }
        .topic-card .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }
        .topic-card .topic-tag {
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            background: #f0f4ef;
            color: #3d6b45;
        }
        .topic-card .topic-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .topic-card .topic-excerpt {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }
        .topic-card .topic-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            margin-top: 12px;
            transition: gap var(--transition-fast);
        }
        .topic-card:hover .topic-link {
            gap: 8px;
        }

        /* Deep Content */
        .deep-content-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }
        .deep-article {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 28px 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
        }
        .deep-article:hover {
            box-shadow: var(--shadow-md);
        }
        .deep-article .deep-label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            display: inline-block;
        }
        .deep-article h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .deep-article p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 10px;
        }
        .deep-article .deep-readmore {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            transition: gap var(--transition-fast);
        }
        .deep-article .deep-readmore:hover {
            gap: 8px;
            color: var(--primary-dark);
        }

        /* FAQ */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-base);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 18px 24px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            user-select: none;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: #fafbf7;
        }
        .faq-question .faq-arrow {
            flex-shrink: 0;
            transition: transform var(--transition-base);
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .faq-item.open .faq-question .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 24px;
        }
        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 0 24px 20px;
        }
        .faq-answer p {
            font-size: 0.93rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(150deg, var(--bg-dark) 0%, #0d2a15 50%, var(--bg-darker) 100%);
            color: #fff;
            text-align: center;
            padding: 70px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.025);
            pointer-events: none;
        }
        .cta-section .container-custom {
            position: relative;
            z-index: 1;
        }
        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .cta-section p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: var(--accent);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 1.05rem;
            border-radius: 30px;
            transition: all var(--transition-base);
            box-shadow: 0 6px 28px rgba(200, 148, 62, 0.5);
            letter-spacing: 0.5px;
        }
        .btn-cta:hover {
            background: #d9a845;
            transform: translateY(-3px);
            box-shadow: 0 12px 38px rgba(200, 148, 62, 0.6);
            color: #1a1a1a;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-darker);
            color: #b0b8b1;
            padding: 50px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 24px;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: #e8e8e3;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .footer-col p {
            font-size: 0.88rem;
            line-height: 1.6;
            color: #8a908b;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.88rem;
            color: #8a908b;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #e8e8e3;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.8rem;
            color: #6a706b;
            line-height: 2;
        }
        .footer-bottom .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            margin-bottom: 10px;
        }
        .footer-bottom .footer-links-row a,
        .footer-bottom .footer-links-row span {
            font-size: 0.8rem;
            color: #8a908b;
        }
        .footer-bottom .footer-links-row a:hover {
            color: #e8e8e3;
        }
        .footer-bottom .beian-info {
            color: #6a706b;
            font-size: 0.78rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .category-grid .cat-card-large {
                grid-column: span 2;
            }
            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .deep-content-block {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .hero-section {
                min-height: 460px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-white);
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                padding: 12px 20px;
                box-shadow: var(--shadow-lg);
                border-radius: 0 0 var(--radius-md) var(--radius-md);
                z-index: 1040;
            }
            .nav-links.show {
                display: flex;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .category-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .category-grid .cat-card-large {
                grid-column: span 2;
            }
            .topic-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .news-item {
                flex-direction: column;
                gap: 12px;
                padding: 16px;
            }
            .news-item .news-img {
                width: 100%;
                height: 160px;
            }
            .hero-content h1 {
                font-size: 1.9rem;
            }
            .hero-section {
                min-height: 400px;
            }
            .section-pad {
                padding: 44px 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .top-info-bar .container-custom {
                flex-direction: column;
                text-align: center;
                gap: 4px;
            }
            .data-card {
                padding: 16px 14px;
                gap: 10px;
            }
            .data-card .data-info .data-value {
                font-size: 1.4rem;
            }
            .data-card .data-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                border-radius: 10px;
            }
        }
        @media (max-width: 520px) {
            .data-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .category-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .category-grid .cat-card-large {
                grid-column: span 1;
            }
            .hero-content h1 {
                font-size: 1.55rem;
            }
            .hero-content .hero-desc {
                font-size: 0.95rem;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 12px 22px;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }
            .hero-btns {
                flex-direction: column;
            }
            .hero-section {
                min-height: 350px;
            }
            .container-custom {
                padding-left: 14px;
                padding-right: 14px;
            }
            .nav-brand {
                font-size: 1.2rem;
            }
            .nav-brand .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
            .news-item .news-img {
                height: 130px;
            }
            .deep-article {
                padding: 18px 16px;
            }
            .deep-article h3 {
                font-size: 1.1rem;
            }
            .faq-question {
                padding: 14px 16px;
                font-size: 0.9rem;
            }
            .faq-answer {
                padding: 0 16px;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 16px;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .cat-card-large .cat-img-wrap {
                aspect-ratio: 16 / 10;
            }
        }

/* roulang page: category1 */
:root {
            --brand-primary: #0f2b46;
            --brand-accent: #00c26e;
            --brand-accent-hover: #00a85d;
            --brand-surface: #ffffff;
            --brand-bg: #f3f5f9;
            --brand-text: #1a1f2e;
            --brand-text-soft: #5e6677;
            --brand-border: #e2e6ee;
            --brand-shadow-sm: 0 1px 3px rgba(15, 43, 70, 0.06);
            --brand-shadow-md: 0 4px 16px rgba(15, 43, 70, 0.08);
            --brand-shadow-lg: 0 12px 32px rgba(15, 43, 70, 0.1);
            --brand-radius-sm: 8px;
            --brand-radius: 12px;
            --brand-radius-lg: 16px;
            --brand-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: var(--brand-bg);
            color: var(--brand-text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--brand-transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* 容器 */
        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== Header / 导航 ========== */
        .main-nav-wrap {
            background: var(--brand-surface);
            border-bottom: 1px solid var(--brand-border);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--brand-shadow-sm);
        }

        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 12px 0;
            flex-wrap: nowrap;
            min-height: 60px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--brand-primary);
            white-space: nowrap;
            letter-spacing: 0.02em;
            flex-shrink: 0;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--brand-accent), #00d977);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--brand-text-soft);
            transition: all var(--brand-transition);
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--brand-primary);
            background: rgba(0, 194, 110, 0.06);
        }

        .nav-links a.active {
            color: var(--brand-accent);
            background: rgba(0, 194, 110, 0.1);
            font-weight: 600;
        }

        .nav-search-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-text-soft);
            font-size: 1.05rem;
            transition: all var(--brand-transition);
            flex-shrink: 0;
            background: var(--brand-bg);
        }

        .nav-search-btn:hover {
            color: var(--brand-accent);
            background: rgba(0, 194, 110, 0.1);
        }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--brand-primary);
            background: var(--brand-bg);
        }

        /* ========== 内页 Banner ========== */
        .inner-banner {
            position: relative;
            background: var(--brand-primary) url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 60px 0;
            color: #fff;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            align-items: center;
        }

        .inner-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 43, 70, 0.88) 0%, rgba(15, 43, 70, 0.7) 100%);
            z-index: 1;
        }

        .inner-banner .container-custom {
            position: relative;
            z-index: 2;
        }

        .inner-banner h1 {
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            margin-bottom: 12px;
        }

        .inner-banner .banner-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            line-height: 1.7;
        }

        .breadcrumb-custom {
            display: flex;
            gap: 8px;
            font-size: 0.85rem;
            opacity: 0.75;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .breadcrumb-custom a {
            color: #fff;
            opacity: 0.8;
        }

        .breadcrumb-custom a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        /* ========== 板块通用 ========== */
        .section-padding {
            padding: 48px 0;
        }

        .section-header {
            margin-bottom: 32px;
        }

        .section-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--brand-primary);
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--brand-accent);
            border-radius: 2px;
        }

        .section-header .section-desc {
            color: var(--brand-text-soft);
            font-size: 0.95rem;
            margin-top: 6px;
        }

        /* ========== 比分数据卡片 ========== */
        .score-card {
            background: var(--brand-surface);
            border-radius: var(--brand-radius);
            padding: 18px 20px;
            border: 1px solid var(--brand-border);
            transition: all var(--brand-transition);
            box-shadow: var(--brand-shadow-sm);
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .score-card:hover {
            box-shadow: var(--brand-shadow-md);
            border-color: #cdd4e0;
            transform: translateY(-2px);
        }

        .score-card .match-status {
            flex-shrink: 0;
            min-width: 62px;
            text-align: center;
        }

        .status-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .status-live {
            background: #ffefef;
            color: #d92d20;
            animation: pulse-dot 1.5s infinite;
        }

        .status-finished {
            background: #f0f2f5;
            color: #5e6677;
        }

        .status-upcoming {
            background: #effaf6;
            color: #00a85d;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .score-card .match-info {
            flex: 1;
            min-width: 200px;
        }

        .score-card .match-teams {
            font-size: 1rem;
            font-weight: 600;
            color: var(--brand-primary);
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .score-card .match-score {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brand-primary);
            background: var(--brand-bg);
            padding: 6px 16px;
            border-radius: 8px;
            text-align: center;
            min-width: 72px;
            flex-shrink: 0;
        }

        .score-card .match-meta {
            font-size: 0.8rem;
            color: var(--brand-text-soft);
            margin-top: 2px;
        }

        .score-card .match-league {
            flex-shrink: 0;
            text-align: right;
            min-width: 70px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--brand-text-soft);
        }

        /* ========== 联赛筛选标签 ========== */
        .league-filter-bar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .league-filter-btn {
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            background: var(--brand-surface);
            border: 1px solid var(--brand-border);
            color: var(--brand-text-soft);
            transition: all var(--brand-transition);
            white-space: nowrap;
        }

        .league-filter-btn:hover {
            border-color: var(--brand-accent);
            color: var(--brand-accent);
            background: rgba(0, 194, 110, 0.04);
        }

        .league-filter-btn.active-filter {
            background: var(--brand-accent);
            border-color: var(--brand-accent);
            color: #fff;
            font-weight: 600;
        }

        /* ========== 资讯卡片 ========== */
        .news-card {
            background: var(--brand-surface);
            border-radius: var(--brand-radius);
            overflow: hidden;
            border: 1px solid var(--brand-border);
            transition: all var(--brand-transition);
            box-shadow: var(--brand-shadow-sm);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .news-card:hover {
            box-shadow: var(--brand-shadow-lg);
            transform: translateY(-4px);
        }

        .news-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
        }

        .news-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }

        .news-card .card-body-custom {
            padding: 18px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card .card-tag {
            font-size: 0.75rem;
            color: var(--brand-accent);
            font-weight: 600;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .news-card h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--brand-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .news-card .card-desc {
            font-size: 0.85rem;
            color: var(--brand-text-soft);
            line-height: 1.5;
            flex: 1;
        }

        .news-card .card-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
            font-size: 0.78rem;
            color: var(--brand-text-soft);
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--brand-primary), #1a4a72);
            color: #fff;
            padding: 48px 0;
            text-align: center;
            border-radius: var(--brand-radius-lg);
            margin: 48px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }

        .cta-section .container-custom {
            position: relative;
            z-index: 1;
        }

        .cta-section h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-section p {
            opacity: 0.9;
            margin-bottom: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            display: inline-block;
            padding: 12px 28px;
            background: var(--brand-accent);
            color: #fff;
            border-radius: 28px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--brand-transition);
            border: none;
        }

        .btn-cta:hover {
            background: var(--brand-accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 194, 110, 0.35);
            color: #fff;
        }

        /* ========== FAQ ========== */
        .faq-item {
            background: var(--brand-surface);
            border-radius: var(--brand-radius);
            padding: 20px 22px;
            border: 1px solid var(--brand-border);
            margin-bottom: 12px;
            transition: all var(--brand-transition);
            box-shadow: var(--brand-shadow-sm);
        }

        .faq-item:hover {
            box-shadow: var(--brand-shadow-md);
        }

        .faq-item h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--brand-primary);
            margin-bottom: 8px;
        }

        .faq-item p {
            color: var(--brand-text-soft);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #0b1f33;
            color: #c5cdd8;
            padding: 48px 0 24px;
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 48px;
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }

        .site-footer h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 14px;
        }

        .site-footer ul li {
            margin-bottom: 8px;
        }

        .site-footer ul li a,
        .site-footer ul li span {
            color: #c5cdd8;
            font-size: 0.88rem;
            transition: color var(--brand-transition);
            cursor: pointer;
        }

        .site-footer ul li a:hover {
            color: var(--brand-accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.82rem;
            color: #8895a7;
        }

        .footer-links-row {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 12px;
            font-size: 0.82rem;
        }

        .footer-links-row a,
        .footer-links-row span {
            color: #8895a7;
            cursor: pointer;
        }

        .footer-links-row a:hover {
            color: var(--brand-accent);
        }

        .beian-info {
            margin: 4px 0;
            font-size: 0.78rem;
            color: #6b7a8d;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .site-footer .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .inner-banner h1 {
                font-size: 2rem;
            }
            .score-card {
                flex-wrap: wrap;
                gap: 10px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--brand-surface);
                flex-direction: column;
                padding: 12px;
                gap: 2px;
                border-bottom: 2px solid var(--brand-border);
                box-shadow: var(--brand-shadow-md);
                z-index: 1040;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
                font-size: 0.95rem;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .main-nav {
                flex-wrap: wrap;
            }
            .inner-banner {
                padding: 40px 0;
                min-height: 220px;
            }
            .inner-banner h1 {
                font-size: 1.6rem;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .score-card {
                flex-direction: column;
                align-items: flex-start;
            }
            .score-card .match-league {
                text-align: left;
            }
            .cta-section {
                padding: 36px 16px;
                margin: 32px 0;
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 520px) {
            .container-custom {
                padding: 0 14px;
            }
            .inner-banner h1 {
                font-size: 1.4rem;
            }
            .inner-banner .banner-subtitle {
                font-size: 0.9rem;
            }
            .score-card .match-score {
                font-size: 1.2rem;
                padding: 4px 12px;
                min-width: 56px;
            }
            .score-card .match-teams {
                font-size: 0.9rem;
            }
            .league-filter-btn {
                padding: 7px 14px;
                font-size: 0.8rem;
            }
            .news-card h4 {
                font-size: 0.95rem;
            }
        }

        /* 覆盖 Bootstrap 默认 */
        .btn:focus,
        a:focus-visible {
            outline: 2px solid var(--brand-accent);
            outline-offset: 2px;
        }

/* roulang page: category5 */
:root {
            --primary: #0d6b2e;
            --primary-dark: #094f21;
            --primary-light: #e8f5e9;
            --accent: #d4a017;
            --accent-light: #fef9e7;
            --bg: #f8faf8;
            --surface: #ffffff;
            --text: #1a2e1a;
            --text-secondary: #4a5c4a;
            --text-muted: #7a8a7a;
            --border: #e0e8e0;
            --border-light: #eef3ee;
            --shadow-sm: 0 1px 3px rgba(10, 50, 20, 0.06);
            --shadow-md: 0 4px 16px rgba(10, 50, 20, 0.10);
            --shadow-lg: 0 8px 32px rgba(10, 50, 20, 0.14);
            --shadow-xl: 0 16px 48px rgba(10, 50, 20, 0.18);
            --radius-sm: 0.5rem;
            --radius: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --transition: 0.25s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --nav-height: 64px;
            --topbar-height: 36px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input,
        select,
        textarea {
            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: 0;
        }

        .container-custom {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 1rem;
            }
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            background: var(--primary-dark);
            color: #c8e6c9;
            font-size: 0.8rem;
            height: var(--topbar-height);
            display: flex;
            align-items: center;
            z-index: 1050;
            position: relative;
        }
        .top-bar .container-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left span {
            margin-right: 1.25rem;
        }
        .top-bar-left i {
            margin-right: 0.3rem;
            color: var(--accent);
            font-size: 0.7rem;
        }
        .top-bar-right a,
        .top-bar-right span {
            color: #c8e6c9;
            margin-left: 1rem;
            font-size: 0.78rem;
            cursor: pointer;
            transition: color var(--transition);
        }
        .top-bar-right a:hover,
        .top-bar-right span:hover {
            color: #ffffff;
        }
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
        }

        /* ========== HEADER / NAV ========== */
        .main-nav-wrap {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1040;
            box-shadow: var(--shadow-sm);
            height: var(--nav-height);
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 1.5rem;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: -0.02em;
            transition: color var(--transition);
        }
        .nav-brand:hover {
            color: var(--primary-dark);
        }
        .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), #1b8a3d);
            color: #fff;
            border-radius: var(--radius-sm);
            font-size: 1.05rem;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.15rem;
            flex-wrap: nowrap;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.85rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .nav-links a.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 700;
            box-shadow: inset 0 -2px 0 0 var(--primary);
        }
        .nav-search-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border: 1px solid var(--border);
            border-radius: 50%;
            background: var(--surface);
            color: var(--text-secondary);
            font-size: 0.95rem;
            transition: all var(--transition);
            flex-shrink: 0;
        }
        .nav-search-btn:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--primary);
        }
        .mobile-menu-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--surface);
            color: var(--text);
            font-size: 1.2rem;
            transition: all var(--transition);
            flex-shrink: 0;
        }
        .mobile-menu-toggle:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        @media (max-width: 1024px) {
            .nav-links {
                gap: 0;
            }
            .nav-links a {
                padding: 0.4rem 0.55rem;
                font-size: 0.82rem;
            }
            .nav-brand {
                font-size: 1.15rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--surface);
                flex-direction: column;
                padding: 0.75rem 1rem;
                gap: 0.25rem;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
                z-index: 1030;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 0.7rem 1rem;
                font-size: 0.95rem;
                border-radius: var(--radius-sm);
            }
            .nav-search-btn {
                margin-left: auto;
                margin-right: 0.5rem;
            }
            .main-nav {
                gap: 0.5rem;
            }
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            background: linear-gradient(135deg, #0a3d1a 0%, #0d5e28 30%, #0a4a1f 60%, #073315 100%);
            padding: 3.5rem 0;
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .page-banner .container-custom {
            position: relative;
            z-index: 1;
        }
        .banner-content {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }
        .banner-text {
            flex: 1;
        }
        .banner-breadcrumb {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.75rem;
        }
        .banner-breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: color var(--transition);
        }
        .banner-breadcrumb a:hover {
            color: #fff;
        }
        .banner-breadcrumb span {
            margin: 0 0.4rem;
        }
        .banner-text h1 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }
        .banner-text .banner-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            line-height: 1.6;
        }
        .banner-image {
            flex-shrink: 0;
            width: 280px;
            height: 200px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        .banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .page-banner {
                padding: 2.5rem 0;
            }
            .banner-content {
                flex-direction: column;
                gap: 1.5rem;
            }
            .banner-text h1 {
                font-size: 1.8rem;
            }
            .banner-text .banner-desc {
                font-size: 0.95rem;
            }
            .banner-image {
                width: 100%;
                height: 180px;
            }
        }

        /* ========== MAIN CONTENT ========== */
        main {
            flex: 1;
            padding: 3rem 0;
        }
        .section {
            margin-bottom: 3.5rem;
        }
        .section:last-child {
            margin-bottom: 0;
        }
        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 1.75rem;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .section-title {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--text);
            position: relative;
            padding-left: 1rem;
            letter-spacing: -0.01em;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.25rem;
            bottom: 0.25rem;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        .section-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ========== TRANSFER NEWS CARDS ========== */
        .transfer-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 1.5rem;
        }
        .transfer-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }
        .transfer-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border);
        }
        .transfer-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        .transfer-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .transfer-card:hover .transfer-card-image img {
            transform: scale(1.04);
        }
        .transfer-card-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            padding: 0.3rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            z-index: 2;
        }
        .badge-official {
            background: #0d6b2e;
            color: #fff;
        }
        .badge-rumor {
            background: #d4a017;
            color: #1a1a1a;
        }
        .badge-breaking {
            background: #d43030;
            color: #fff;
            animation: pulse-badge 2s infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.75;
            }
        }
        .transfer-card-body {
            padding: 1.25rem 1.25rem 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .transfer-card-date {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }
        .transfer-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .transfer-card-excerpt {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.75rem;
        }
        .transfer-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1.25rem;
            border-top: 1px solid var(--border-light);
            font-size: 0.82rem;
        }
        .transfer-card-source {
            color: var(--text-muted);
        }
        .transfer-card-link {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            transition: color var(--transition);
        }
        .transfer-card-link:hover {
            color: var(--primary-dark);
        }
        .transfer-card-link i {
            margin-left: 0.25rem;
            font-size: 0.7rem;
            transition: transform var(--transition);
        }
        .transfer-card-link:hover i {
            transform: translateX(3px);
        }
        @media (max-width: 520px) {
            .transfer-news-grid {
                grid-template-columns: 1fr;
            }
            .transfer-card-image {
                height: 170px;
            }
        }

        /* ========== HOT TRANSFERS TABLE ========== */
        .hot-transfers-table-wrap {
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
        .hot-transfers-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .hot-transfers-table thead {
            background: var(--primary-light);
        }
        .hot-transfers-table th {
            padding: 0.85rem 1rem;
            text-align: left;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .hot-transfers-table td {
            padding: 0.85rem 1rem;
            border-bottom: 1px solid var(--border-light);
            color: var(--text);
            vertical-align: middle;
        }
        .hot-transfers-table tbody tr {
            transition: background var(--transition);
        }
        .hot-transfers-table tbody tr:hover {
            background: #f9fcf9;
        }
        .hot-transfers-table tbody tr:last-child td {
            border-bottom: none;
        }
        .player-name-cell {
            font-weight: 600;
            color: var(--text);
        }
        .transfer-fee {
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
        }
        .transfer-direction {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.82rem;
            color: var(--text-secondary);
        }
        .transfer-direction i {
            color: var(--accent);
            font-size: 0.65rem;
        }
        .transfer-tag {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.72rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .tag-done {
            background: #e8f5e9;
            color: #0d6b2e;
        }
        .tag-pending {
            background: #fef9e7;
            color: #8a6d14;
        }
        .table-responsive-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        @media (max-width: 768px) {
            .hot-transfers-table {
                font-size: 0.8rem;
            }
            .hot-transfers-table th,
            .hot-transfers-table td {
                padding: 0.6rem 0.7rem;
            }
        }

        /* ========== TRANSFER RUMORS LIST ========== */
        .rumor-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rumor-item {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .rumor-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--border);
        }
        .rumor-icon {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.1rem;
        }
        .rumor-content {
            flex: 1;
            min-width: 0;
        }
        .rumor-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 0.25rem;
        }
        .rumor-detail {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .rumor-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
        }
        .rumor-action {
            flex-shrink: 0;
        }
        .rumor-action .btn-sm {
            font-size: 0.8rem;
            padding: 0.4rem 1rem;
            border-radius: 20px;
        }
        @media (max-width: 520px) {
            .rumor-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                padding: 1rem;
            }
            .rumor-action {
                align-self: flex-end;
            }
        }

        /* ========== BUTTONS ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            padding: 0.65rem 1.5rem;
            font-size: 0.9rem;
            transition: all var(--transition);
            border: none;
            cursor: pointer;
            letter-spacing: 0.01em;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-1px);
        }
        .btn-accent {
            background: var(--accent);
            color: #1a1a1a;
        }
        .btn-accent:hover {
            background: #c09114;
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
        .btn-sm {
            padding: 0.4rem 0.9rem;
            font-size: 0.8rem;
        }
        .btn-lg {
            padding: 0.85rem 2rem;
            font-size: 1rem;
            border-radius: var(--radius);
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, #0a3d1a 0%, #0d5e28 40%, #0a4a1f 100%);
            border-radius: var(--radius-xl);
            padding: 3rem 2.5rem;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -15%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
        .cta-section p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        @media (max-width: 520px) {
            .cta-section {
                padding: 2rem 1.25rem;
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0f1f0f;
            color: #c0c8c0;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }
        .footer-col p {
            font-size: 0.85rem;
            line-height: 1.7;
            color: #a0a8a0;
            margin: 0;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.5rem;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.85rem;
            color: #a0a8a0;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
        }
        .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-size: 0.8rem;
        }
        .footer-links-row a,
        .footer-links-row span {
            color: #a0a8a0;
            transition: color var(--transition);
        }
        .footer-links-row a:hover {
            color: #fff;
        }
        .beian-info {
            font-size: 0.75rem;
            color: #7a887a;
            margin: 0.25rem 0;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }
            .footer-links-row {
                font-size: 0.75rem;
                gap: 0.3rem;
            }
        }

        /* ========== MISC ========== */
        .text-muted {
            color: var(--text-muted);
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mt-3 {
            margin-top: 1.5rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .mb-3 {
            margin-bottom: 1.5rem;
        }
        .text-center {
            text-align: center;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

/* roulang page: category6 */
:root {
            --primary: #00a65a;
            --primary-dark: #00804a;
            --secondary: #1e3a5f;
            --accent: #f5a623;
            --light-bg: #f4f7f6;
            --white: #ffffff;
            --text: #222;
            --text-muted: #6c757d;
            --border: #e0e0e0;
            --radius: 12px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow: 0 8px 24px rgba(0,0,0,0.08);
            --transition: 0.25s ease;
        }
        * { box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text);
            background: #f9fafb;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container-custom { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* 导航 */
        .main-nav-wrap {
            background: var(--secondary);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1024;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 20px;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            white-space: nowrap;
            transition: var(--transition);
        }
        .nav-brand:hover { color: var(--accent); }
        .brand-icon { font-size: 1.6rem; color: var(--accent); }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: rgba(255,255,255,0.85);
            padding: 8px 14px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(255,255,255,0.15);
            color: #fff;
        }
        .nav-links a.active { background: var(--primary); color: #fff; font-weight: 600; }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
        }
        .nav-search-btn {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.5);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-search-btn:hover { background: rgba(255,255,255,0.15); }
        @media (max-width: 992px) {
            .mobile-menu-toggle { display: block; }
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: var(--secondary);
                flex-direction: column;
                padding: 16px 20px;
                gap: 4px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.2);
                z-index: 1000;
            }
            .nav-links.show { display: flex; }
            .nav-links a { width: 100%; text-align: center; padding: 12px; }
        }

        /* 页面 Hero */
        .page-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.75)), url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 80px 20px;
            color: #fff;
        }
        .hero-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 12px; }
        .hero-subtitle { font-size: 1.2rem; opacity: 0.9; }
        .hero-search {
            max-width: 520px;
            margin: 24px auto 0;
            position: relative;
        }
        .hero-search-input {
            padding-right: 60px;
            border-radius: 30px;
            border: none;
            height: 52px;
            font-size: 1rem;
            padding-left: 20px;
            box-shadow: var(--shadow);
        }
        .btn-hero-search {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            width: 48px;
            border-radius: 50%;
            background: var(--primary);
            border: none;
            color: #fff;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .btn-hero-search:hover { background: var(--primary-dark); }

        /* 通用标题 */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            position: relative;
            padding-bottom: 12px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .section-subtitle {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        /* 视频分类标签 */
        .video-tabs .nav-link {
            color: var(--text);
            border-radius: 30px;
            padding: 10px 24px;
            font-weight: 500;
            margin: 0 4px;
            transition: var(--transition);
        }
        .video-tabs .nav-link.active {
            background: var(--primary);
            color: #fff;
        }
        .video-tabs .nav-link:hover:not(.active) {
            background: #e9ecef;
        }

        /* 视频卡片 */
        .video-card {
            border: none;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            background: #fff;
        }
        .video-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .card-img-wrap {
            position: relative;
            overflow: hidden;
        }
        .card-img-wrap img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .video-card:hover .card-img-wrap img { transform: scale(1.05); }
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: rgba(255,255,255,0.9);
            text-shadow: 0 4px 12px rgba(0,0,0,0.5);
            pointer-events: none;
        }
        .card-body { padding: 16px; }
        .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-text {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .badge-success { background: var(--primary); font-weight: 500; }

        /* 热门排行 */
        .hot-video-list .list-group-item {
            border: none;
            border-bottom: 1px solid var(--border);
            padding: 14px 0;
            background: transparent;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .hot-rank {
            width: 36px;
            height: 36px;
            background: var(--secondary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        .hot-thumb {
            width: 70px;
            height: 50px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }
        .hot-info { flex: 1; }
        .hot-title { font-weight: 600; margin-bottom: 2px; }
        .hot-views { font-size: 0.85rem; color: var(--text-muted); }

        /* FAQ */
        .faq-accordion .accordion-button {
            font-weight: 600;
            background: #fff;
            box-shadow: none;
            border: 1px solid var(--border);
            border-radius: 8px !important;
            margin-bottom: 8px;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: #f0faf4;
        }
        .faq-accordion .accordion-body {
            background: #fff;
            border: 1px solid var(--border);
            border-top: none;
            border-radius: 0 0 8px 8px;
            padding: 16px 20px;
        }

        /* CTA */
        .cta-section h2 { font-weight: 700; }

        /* 页脚 */
        .site-footer {
            background: var(--secondary);
            color: rgba(255,255,255,0.8);
            padding: 50px 20px 20px;
            font-size: 0.95rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 16px;
            font-size: 1.15rem;
            font-weight: 600;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col a, .footer-col span {
            color: rgba(255,255,255,0.75);
            transition: var(--transition);
            cursor: default;
        }
        .footer-col a:hover { color: #fff; text-decoration: underline; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            text-align: center;
        }
        .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px 12px;
            margin-bottom: 12px;
        }
        .footer-links-row a, .footer-links-row span {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        .beian-info {
            margin: 4px 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2rem; }
            .video-tabs .nav-link { padding: 8px 16px; margin: 3px; }
            .card-img-wrap img { height: 160px; }
        }

/* roulang page: category7 */
:root {
            --primary: #0d6b3d;
            --primary-dark: #094f2d;
            --primary-light: #e8f5e9;
            --accent: #c8a45c;
            --accent-dark: #a8873a;
            --accent-light: #fdf7ed;
            --bg-body: #f7f8f9;
            --bg-white: #ffffff;
            --bg-dark: #1a1d23;
            --bg-card: #ffffff;
            --text-main: #1a1a1a;
            --text-secondary: #555555;
            --text-muted: #888888;
            --text-light: #999999;
            --border: #e0e4e8;
            --border-light: #eef0f2;
            --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.10);
            --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.12);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition-fast: 0.18s ease;
            --transition-base: 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;
        }

        *,
        *::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: 16px;
            line-height: 1.7;
            color: var(--text-main);
            background-color: var(--bg-body);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input:focus,
        button:focus,
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .container-custom {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
        }

        /* ===== 顶部信息条 ===== */
        .top-info-bar {
            background: var(--bg-dark);
            color: #cccccc;
            font-size: 13px;
            padding: 6px 0;
            letter-spacing: 0.3px;
        }
        .top-info-bar .container-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .top-info-bar .info-left span {
            margin-right: 16px;
        }
        .top-info-bar .info-left i {
            color: var(--accent);
            margin-right: 5px;
        }
        .top-info-bar .info-right a {
            color: #cccccc;
            font-size: 13px;
            margin-left: 14px;
            transition: color var(--transition-fast);
        }
        .top-info-bar .info-right a:hover {
            color: var(--accent);
        }
        @media (max-width: 576px) {
            .top-info-bar {
                font-size: 11px;
                padding: 5px 0;
            }
            .top-info-bar .info-left span {
                margin-right: 8px;
            }
            .top-info-bar .info-right a {
                margin-left: 8px;
                font-size: 11px;
            }
        }

        /* ===== 主导航 ===== */
        .main-nav-wrap {
            background: var(--bg-white);
            border-bottom: 2px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 20px;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-dark);
            font-family: var(--font-heading);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-brand:hover {
            color: var(--primary);
        }
        .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            font-size: 18px;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
            letter-spacing: 0.2px;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .nav-links a.active {
            color: var(--primary);
            font-weight: 700;
            background: var(--primary-light);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        .nav-search-btn {
            background: none;
            border: none;
            font-size: 18px;
            color: var(--text-secondary);
            padding: 8px 12px;
            border-radius: 50%;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-search-btn:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            color: var(--text-main);
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        @media (max-width: 1024px) {
            .nav-links a {
                padding: 6px 10px;
                font-size: 14px;
            }
            .nav-brand {
                font-size: 20px;
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: 16px 20px;
                gap: 2px;
                border-bottom: 3px solid var(--primary);
                box-shadow: var(--shadow-lg);
                z-index: 999;
                border-radius: 0 0 var(--radius-md) var(--radius-md);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                font-size: 15px;
                border-radius: var(--radius-sm);
                text-align: left;
            }
            .nav-links a.active::after {
                display: none;
            }
            .main-nav {
                position: relative;
                padding: 10px 0;
            }
            .nav-search-btn {
                margin-left: auto;
            }
        }
        @media (max-width: 520px) {
            .nav-brand {
                font-size: 18px;
                gap: 6px;
            }
        }

        /* ===== 板块通用 ===== */
        .section-block {
            padding: 60px 0;
        }
        .section-block-sm {
            padding: 40px 0;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
            font-family: var(--font-heading);
            letter-spacing: 0.3px;
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 36px;
            line-height: 1.6;
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header .section-title {
            margin-bottom: 10px;
        }
        .section-header .divider {
            width: 48px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            margin: 0 auto 16px;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 40px 0;
            }
            .section-title {
                font-size: 23px;
            }
            .section-subtitle {
                font-size: 14px;
                margin-bottom: 24px;
            }
        }

        /* ===== Banner ===== */
        .page-banner {
            position: relative;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            min-height: 420px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(9, 47, 29, 0.88) 0%, rgba(13, 107, 61, 0.75) 50%, rgba(9, 47, 29, 0.82) 100%);
            z-index: 1;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            padding: 60px 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .page-banner .banner-badge {
            display: inline-block;
            background: var(--accent);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 13px;
            padding: 6px 18px;
            border-radius: 30px;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .page-banner h1 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 16px;
            font-family: var(--font-heading);
            letter-spacing: 0.5px;
            line-height: 1.3;
        }
        .page-banner .banner-desc {
            font-size: 17px;
            opacity: 0.9;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }
        .page-banner .banner-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 28px;
            flex-wrap: wrap;
        }
        .page-banner .banner-stat-item {
            text-align: center;
        }
        .page-banner .banner-stat-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 0.5px;
        }
        .page-banner .banner-stat-label {
            font-size: 13px;
            opacity: 0.8;
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .page-banner {
                min-height: 320px;
            }
            .page-banner h1 {
                font-size: 28px;
            }
            .page-banner .banner-desc {
                font-size: 15px;
            }
            .page-banner .banner-stats {
                gap: 20px;
            }
            .page-banner .banner-stat-num {
                font-size: 28px;
            }
        }

        /* ===== 卡片 ===== */
        .card-custom {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .card-custom:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: #d5dbe2;
        }
        .card-custom .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }
        .card-custom .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .card-custom:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .card-custom .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        .card-custom .card-body-custom {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-custom .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
            line-height: 1.45;
            font-family: var(--font-heading);
        }
        .card-custom .card-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 14px;
            flex: 1;
        }
        .card-custom .card-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .card-custom .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 14px;
            color: var(--primary);
            transition: gap var(--transition-fast);
        }
        .card-custom .card-link:hover {
            gap: 10px;
            color: var(--primary-dark);
        }

        /* ===== 专家卡片 ===== */
        .expert-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            overflow: hidden;
            text-align: center;
            padding: 30px 20px 24px;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
            height: 100%;
        }
        .expert-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .expert-card .expert-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 16px;
            border: 3px solid var(--primary-light);
            transition: border-color var(--transition-fast);
        }
        .expert-card:hover .expert-avatar {
            border-color: var(--primary);
        }
        .expert-card .expert-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .expert-card .expert-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
            font-family: var(--font-heading);
        }
        .expert-card .expert-role {
            font-size: 13px;
            color: var(--accent-dark);
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .expert-card .expert-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .expert-card .expert-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: center;
            margin-top: 12px;
        }
        .expert-card .expert-tag {
            font-size: 11px;
            background: var(--primary-light);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 500;
        }

        /* ===== 标签/徽章 ===== */
        .tag-custom {
            display: inline-block;
            font-size: 12px;
            padding: 5px 14px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.4px;
            transition: all var(--transition-fast);
        }
        .tag-primary {
            background: var(--primary-light);
            color: var(--primary);
        }
        .tag-accent {
            background: var(--accent-light);
            color: var(--accent-dark);
        }
        .tag-outline {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-secondary);
        }
        .tag-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ===== 按钮 ===== */
        .btn-custom {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 30px;
            border: none;
            transition: all var(--transition-base);
            letter-spacing: 0.3px;
            cursor: pointer;
            font-family: var(--font-body);
        }
        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 14px rgba(13, 107, 61, 0.3);
        }
        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: 0 6px 20px rgba(13, 107, 61, 0.4);
            transform: translateY(-2px);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-accent-custom {
            background: var(--accent);
            color: #1a1a1a;
            box-shadow: 0 4px 14px rgba(200, 164, 92, 0.35);
        }
        .btn-accent-custom:hover {
            background: var(--accent-dark);
            color: #1a1a1a;
            box-shadow: 0 6px 20px rgba(200, 164, 92, 0.45);
            transform: translateY(-2px);
        }
        @media (max-width: 576px) {
            .btn-custom {
                padding: 10px 22px;
                font-size: 14px;
            }
        }

        /* ===== FAQ ===== */
        .faq-wrap .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-wrap .faq-item:hover {
            border-color: #d0d6dc;
            box-shadow: var(--shadow-sm);
        }
        .faq-wrap .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 16px;
            color: var(--text-main);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            user-select: none;
            transition: color var(--transition-fast);
            font-family: var(--font-heading);
        }
        .faq-wrap .faq-question:hover {
            color: var(--primary);
        }
        .faq-wrap .faq-question i {
            color: var(--text-muted);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }
        .faq-wrap .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-wrap .faq-answer {
            padding: 0 22px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }
        .faq-wrap .faq-item.open .faq-answer {
            display: block;
        }

        /* ===== 数据分析区块 ===== */
        .insight-block {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-light);
            padding: 36px 32px;
            box-shadow: var(--shadow-sm);
        }
        .insight-block .insight-row {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .insight-block .insight-visual {
            flex: 0 0 280px;
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 4/3;
        }
        .insight-block .insight-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-md);
        }
        .insight-block .insight-detail {
            flex: 1;
            min-width: 260px;
        }
        .insight-block .insight-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-main);
            font-family: var(--font-heading);
        }
        .insight-block .insight-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .insight-block .insight-metrics {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .insight-block .metric-item {
            text-align: center;
            padding: 12px 18px;
            background: var(--primary-light);
            border-radius: var(--radius-sm);
            min-width: 80px;
        }
        .insight-block .metric-num {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
        }
        .insight-block .metric-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        @media (max-width: 768px) {
            .insight-block {
                padding: 24px 18px;
            }
            .insight-block .insight-visual {
                flex: 0 0 100%;
                max-width: 100%;
            }
            .insight-block .insight-title {
                font-size: 19px;
            }
        }

        /* ===== CTA区块 ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0a5c35 100%);
            color: #fff;
            text-align: center;
            padding: 56px 20px;
            border-radius: var(--radius-xl);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            pointer-events: none;
        }
        .cta-section h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            font-family: var(--font-heading);
        }
        .cta-section p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }
        .cta-section .btn-custom {
            position: relative;
            z-index: 1;
        }
        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 23px;
            }
            .cta-section p {
                font-size: 14px;
            }
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-dark);
            color: #bbbbbb;
            padding: 50px 0 30px;
            font-size: 14px;
            line-height: 1.8;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .site-footer h4 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
            font-family: var(--font-heading);
            letter-spacing: 0.3px;
        }
        .site-footer p {
            font-size: 13px;
            color: #aaaaaa;
            line-height: 1.8;
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer ul li {
            margin-bottom: 7px;
        }
        .site-footer ul li a,
        .site-footer ul li span {
            color: #bbbbbb;
            font-size: 13px;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .site-footer ul li a {
            cursor: pointer;
        }
        .site-footer ul li a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 22px;
            text-align: center;
        }
        .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px;
            align-items: center;
            margin-bottom: 14px;
            font-size: 13px;
            color: #999;
        }
        .footer-links-row a,
        .footer-links-row span {
            color: #999;
            font-size: 13px;
            cursor: default;
        }
        .footer-links-row a {
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .footer-links-row a:hover {
            color: var(--accent);
        }
        .beian-info {
            font-size: 12px;
            color: #777;
            margin: 0 0 4px;
            text-align: center;
        }
        @media (max-width: 768px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* ===== Bootstrap覆盖 ===== */
        .row-custom {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -12px;
            gap: 0;
        }
        .row-custom>[class*='col-'] {
            padding: 12px;
        }
        .col-third {
            flex: 0 0 33.333%;
            max-width: 33.333%;
        }
        .col-half {
            flex: 0 0 50%;
            max-width: 50%;
        }
        .col-quarter {
            flex: 0 0 25%;
            max-width: 25%;
        }
        @media (max-width: 1024px) {
            .col-third {
                flex: 0 0 50%;
                max-width: 50%;
            }
            .col-quarter {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        @media (max-width: 576px) {
            .col-third,
            .col-half,
            .col-quarter {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* ===== 分隔线 ===== */
        .divider-custom {
            width: 48px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            margin: 0 auto 16px;
        }

        /* ===== 深色背景区块 ===== */
        .bg-dark-section {
            background: var(--bg-dark);
            color: #e0e0e0;
            border-radius: var(--radius-xl);
            padding: 48px 32px;
            position: relative;
            overflow: hidden;
        }
        .bg-dark-section .section-title {
            color: #ffffff;
        }
        .bg-dark-section .section-subtitle {
            color: #b0b0b0;
        }
        .bg-dark-section .divider-custom {
            margin-left: 0;
        }

/* roulang page: category4 */
:root {
            --brand-primary: #0a7e3d;
            --brand-primary-dark: #065c2b;
            --brand-primary-light: #e8f5ee;
            --brand-accent: #e8590c;
            --brand-accent-hover: #cc4f0a;
            --brand-gold: #d4a017;
            --text-heading: #1a1a2e;
            --text-body: #2d2d3f;
            --text-muted: #6b6b7b;
            --text-light: #9494a5;
            --bg-page: #f7f8fa;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --bg-dark-section: #1a1a2e;
            --border-color: #e6e8ef;
            --border-light: #f0f1f5;
            --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.12);
            --shadow-card-hover: 0 12px 36px rgba(0, 0, 0, 0.14);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
            --top-bar-height: 36px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-body);
            background-color: var(--bg-page);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        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;
            margin: 0;
            padding: 0;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            color: var(--text-heading);
            line-height: 1.3;
            margin: 0 0 0.5em;
        }

        .container-custom {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: #111827;
            color: #c0c5ce;
            font-size: 0.8rem;
            height: var(--top-bar-height);
            line-height: var(--top-bar-height);
            display: flex;
            align-items: center;
            border-bottom: 1px solid #1f2937;
        }
        .top-bar .container-custom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .top-bar-right {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        .top-bar a {
            color: #c0c5ce;
            font-size: 0.8rem;
            transition: color var(--transition-fast);
        }
        .top-bar a:hover {
            color: #fff;
        }
        .top-bar-divider {
            color: #4b5563;
        }

        @media (max-width: 576px) {
            .top-bar {
                display: none;
            }
        }

        /* ===== MAIN NAV ===== */
        .main-nav-wrap {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
            flex-wrap: nowrap;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text-heading);
            white-space: nowrap;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }
        .nav-brand:hover {
            color: var(--brand-primary);
        }
        .brand-icon {
            font-size: 1.4rem;
            color: var(--brand-primary);
            transition: transform var(--transition-slow);
        }
        .nav-brand:hover .brand-icon {
            transform: rotate(-15deg) scale(1.1);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
            overflow-x: auto;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-body);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--brand-primary);
            background: var(--brand-primary-light);
        }
        .nav-links a.active {
            color: #fff;
            background: var(--brand-primary);
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(10, 126, 61, 0.3);
        }
        .nav-links a.active:hover {
            background: var(--brand-primary-dark);
            color: #fff;
        }
        .nav-search-btn {
            background: none;
            border: none;
            font-size: 1.1rem;
            color: var(--text-body);
            padding: 8px 10px;
            border-radius: 50%;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }
        .nav-search-btn:hover {
            color: var(--brand-primary);
            background: var(--brand-primary-light);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--text-heading);
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: var(--brand-primary-light);
            color: var(--brand-primary);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 7px 10px;
                font-size: 0.82rem;
                border-radius: 20px;
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: 12px 20px;
                gap: 4px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: var(--shadow-md);
                z-index: 999;
                max-height: 70vh;
                overflow-y: auto;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                display: block;
                width: 100%;
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
                text-align: left;
            }
            .main-nav {
                height: 60px;
            }
            :root {
                --nav-height: 60px;
            }
        }

        /* ===== PAGE BANNER ===== */
        .page-banner {
            background: linear-gradient(135deg, #0a3d1f 0%, #0a5c30 30%, #0a7e3d 60%, #0d3b1a 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 0 48px;
            min-height: 240px;
            display: flex;
            align-items: center;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
        }
        .page-banner .container-custom {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .page-banner .banner-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .page-banner .banner-eyebrow i {
            color: var(--brand-gold);
            font-size: 0.75rem;
        }
        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            margin: 0;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }
        .page-banner .banner-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 580px;
            line-height: 1.6;
        }
        .banner-stats-row {
            display: flex;
            gap: 32px;
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .banner-stat-item {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        .banner-stat-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--brand-gold);
            line-height: 1;
        }
        .banner-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0 36px;
                min-height: auto;
            }
            .page-banner h1 {
                font-size: 1.8rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.95rem;
            }
            .banner-stats-row {
                gap: 20px;
            }
            .banner-stat-num {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 520px) {
            .page-banner h1 {
                font-size: 1.5rem;
            }
            .banner-stats-row {
                gap: 14px;
            }
        }

        /* ===== SECTION TITLES ===== */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand-primary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 6px;
        }
        .section-label .label-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-accent);
            display: inline-block;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-heading);
            margin: 0 0 8px;
            line-height: 1.3;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 620px;
            line-height: 1.6;
            margin: 0 0 24px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.4rem;
            }
            .section-desc {
                font-size: 0.9rem;
            }
        }

        /* ===== MAIN CONTENT SECTIONS ===== */
        .content-section {
            padding: 52px 0;
        }
        .content-section-alt {
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        /* ===== HEADLINE TRANSFER CARD ===== */
        .headline-transfer-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: box-shadow var(--transition-normal);
        }
        .headline-transfer-card:hover {
            box-shadow: var(--shadow-card-hover);
        }
        .headline-transfer-img {
            position: relative;
            min-height: 320px;
            overflow: hidden;
        }
        .headline-transfer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .headline-transfer-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--brand-accent);
            color: #fff;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 3;
            letter-spacing: 0.03em;
        }
        .headline-transfer-body {
            padding: 28px 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }
        .headline-transfer-body .transfer-date {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }
        .headline-transfer-body h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-heading);
            margin: 0;
            line-height: 1.35;
        }
        .headline-transfer-body p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.65;
        }
        .transfer-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .transfer-tag {
            display: inline-block;
            padding: 4px 12px;
            background: var(--brand-primary-light);
            color: var(--brand-primary-dark);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .btn-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            transition: all var(--transition-fast);
            align-self: flex-start;
        }
        .btn-read-more:hover {
            background: var(--brand-primary-dark);
            color: #fff;
            box-shadow: 0 4px 16px rgba(10, 126, 61, 0.35);
            transform: translateY(-1px);
        }
        .btn-read-more i {
            transition: transform var(--transition-fast);
        }
        .btn-read-more:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .headline-transfer-card {
                grid-template-columns: 1fr;
            }
            .headline-transfer-img {
                min-height: 200px;
                max-height: 260px;
            }
            .headline-transfer-body h2 {
                font-size: 1.25rem;
            }
            .headline-transfer-body {
                padding: 20px 18px;
            }
        }

        /* ===== TRANSFER NEWS LIST ===== */
        .transfer-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .transfer-list-item {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            gap: 20px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            align-items: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
        }
        .transfer-list-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--border-color);
            transform: translateY(-2px);
        }
        .transfer-list-item .tl-img {
            width: 180px;
            height: 120px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }
        .transfer-list-item .tl-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .tl-info h3 {
            font-size: 1.05rem;
            font-weight: 650;
            color: var(--text-heading);
            margin: 0 0 6px;
            line-height: 1.4;
        }
        .tl-info .tl-meta {
            font-size: 0.82rem;
            color: var(--text-light);
            margin: 0 0 6px;
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .tl-info .tl-excerpt {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .tl-status {
            flex-shrink: 0;
            text-align: center;
            min-width: 80px;
        }
        .status-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .status-confirmed {
            background: #d4edda;
            color: #0a5c1f;
        }
        .status-rumor {
            background: #fff3cd;
            color: #856404;
        }
        .status-negotiating {
            background: #d1ecf1;
            color: #0c5460;
        }

        @media (max-width: 768px) {
            .transfer-list-item {
                grid-template-columns: 120px 1fr;
                gap: 14px;
                padding: 12px 14px;
            }
            .transfer-list-item .tl-img {
                width: 120px;
                height: 85px;
            }
            .tl-status {
                grid-column: 1 / -1;
                text-align: left;
                min-width: auto;
            }
            .tl-info h3 {
                font-size: 0.95rem;
            }
        }
        @media (max-width: 520px) {
            .transfer-list-item {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .transfer-list-item .tl-img {
                width: 100%;
                height: 160px;
            }
        }

        /* ===== RUMOR TRACKER ===== */
        .rumor-tracker-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .rumor-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .rumor-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--brand-accent);
            border-radius: 0 2px 2px 0;
        }
        .rumor-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .rumor-card .rumor-clubs {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-heading);
            margin-bottom: 8px;
        }
        .rumor-card .rumor-clubs .arrow-icon {
            color: var(--brand-accent);
            font-size: 0.75rem;
        }
        .rumor-card .rumor-player {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--brand-primary);
            margin-bottom: 6px;
        }
        .rumor-card .rumor-detail {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }
        .rumor-card .rumor-probability {
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .probability-bar-bg {
            flex: 1;
            height: 6px;
            background: #e9ecef;
            border-radius: 3px;
            overflow: hidden;
        }
        .probability-bar-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--brand-gold), var(--brand-accent));
        }
        .probability-text {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--brand-accent);
            white-space: nowrap;
        }

        @media (max-width: 1024px) {
            .rumor-tracker-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .rumor-tracker-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== STATS ROW ===== */
        .transfer-stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
        }
        .stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .stat-card .stat-icon {
            font-size: 2rem;
            margin-bottom: 8px;
            color: var(--brand-primary);
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-heading);
            line-height: 1.2;
        }
        .stat-card .stat-label-text {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .transfer-stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }
        @media (max-width: 480px) {
            .transfer-stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card .stat-value {
                font-size: 1.5rem;
            }
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, #0a7e3d 0%, #065c2b 40%, #0a3d1f 100%);
            padding: 52px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
        }
        .cta-section .container-custom {
            position: relative;
            z-index: 2;
        }
        .cta-section h2 {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 22px;
            line-height: 1.6;
        }
        .btn-cta-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--brand-primary-dark);
            padding: 14px 36px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
        }
        .btn-cta-lg:hover {
            background: #f0fdf4;
            color: var(--brand-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #111827;
            color: #c0c5ce;
            padding: 48px 0 20px;
            font-size: 0.88rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 14px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 3px;
            border-radius: 2px;
            background: var(--brand-primary);
        }
        .footer-col p {
            line-height: 1.7;
            font-size: 0.85rem;
            color: #9ca3af;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            color: #9ca3af;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid #1f2937;
            padding-top: 20px;
            text-align: center;
        }
        .footer-links-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.8rem;
            color: #9ca3af;
        }
        .footer-links-row a {
            color: #9ca3af;
        }
        .footer-links-row a:hover {
            color: #fff;
        }
        .footer-links-row span {
            color: #6b7280;
        }
        .beian-info {
            font-size: 0.78rem;
            color: #6b7280;
            margin: 4px 0;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-col:first-child {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

/* roulang page: category3 */
:root {
            --color-primary: #1a7a3a;
            --color-primary-dark: #145e2c;
            --color-primary-light: #e8f5ec;
            --color-accent: #e8a817;
            --color-accent-dark: #c48f12;
            --color-accent-light: #fef9ed;
            --color-bg: #f5f6f8;
            --color-white: #ffffff;
            --color-text: #1a1a2e;
            --color-text-secondary: #5a5a72;
            --color-text-muted: #8a8a9a;
            --color-border: #e0e3e8;
            --color-border-light: #eef0f3;
            --color-card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            --color-card-shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.10);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --spacing-xs: 0.5rem;
            --spacing-sm: 0.75rem;
            --spacing-md: 1.25rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4.5rem;
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
        }

        *,
        *::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-heading);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            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;
            background: none;
            font-family: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container-custom {
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* Header & Navigation */
        .main-nav-wrap {
            background: var(--color-white);
            border-bottom: 1px solid var(--color-border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
        }

        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 10px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-primary);
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .nav-brand:hover {
            color: var(--color-primary-dark);
        }

        .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            border-radius: var(--radius-sm);
            color: #fff;
            font-size: 1.15rem;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            background: var(--color-primary-light);
        }

        .nav-links a.active {
            color: var(--color-white);
            background: var(--color-primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26, 122, 58, 0.25);
        }

        .nav-search-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-secondary);
            font-size: 1.05rem;
            transition: all var(--transition-fast);
            background: var(--color-bg);
            flex-shrink: 0;
        }

        .nav-search-btn:hover {
            color: var(--color-primary);
            background: var(--color-primary-light);
        }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--color-text);
            background: var(--color-bg);
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: var(--color-primary-light);
            color: var(--color-primary);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 7px 12px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 2px;
                background: var(--color-white);
                border-radius: var(--radius-md);
                padding: 8px;
                box-shadow: var(--color-card-shadow);
                margin-top: 4px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 10px 14px;
                border-radius: var(--radius-sm);
                font-size: 0.9rem;
            }
            .nav-search-btn {
                margin-left: auto;
            }
            .main-nav {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 520px) {
            .nav-brand {
                font-size: 1.15rem;
            }
            .brand-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .nav-links a {
                font-size: 0.82rem;
                padding: 8px 10px;
            }
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #1a3c2a 0%, #1a5c38 30%, #1a7a3a 60%, #0f4a25 100%);
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 70px 0 60px;
            color: #fff;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .page-banner .container-custom {
            position: relative;
            z-index: 2;
        }

        .page-banner .banner-badge {
            display: inline-block;
            background: var(--color-accent);
            color: #1a1a2e;
            padding: 5px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .page-banner .banner-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.88);
            max-width: 640px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 50px 0 40px;
            }
            .page-banner h1 {
                font-size: 1.9rem;
            }
            .page-banner .banner-desc {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 520px) {
            .page-banner h1 {
                font-size: 1.5rem;
            }
        }

        /* Section Styles */
        .section-padding {
            padding: var(--spacing-2xl) 0;
        }

        .section-padding-sm {
            padding: var(--spacing-xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.45rem;
            }
            .section-padding {
                padding: var(--spacing-xl) 0;
            }
        }

        /* League Cards Grid */
        .league-cards-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
        }

        @media (max-width: 1024px) {
            .league-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 640px) {
            .league-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 420px) {
            .league-cards-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        .league-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 22px 18px;
            text-align: center;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--color-card-shadow);
            transition: all var(--transition-base);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .league-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--color-card-shadow-hover);
            border-color: var(--color-primary);
        }

        .league-card .league-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            background: var(--color-primary-light);
            color: var(--color-primary);
            transition: all var(--transition-base);
            flex-shrink: 0;
        }

        .league-card:hover .league-icon-wrap {
            background: var(--color-primary);
            color: #fff;
            transform: scale(1.06);
        }

        .league-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--color-text);
        }

        .league-card .card-meta {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }

        .league-card .card-badge {
            display: inline-block;
            background: var(--color-accent-light);
            color: var(--color-accent-dark);
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            margin-top: 8px;
        }

        /* Standings Table */
        .standings-table-wrap {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            box-shadow: var(--color-card-shadow);
            overflow: hidden;
            border: 1px solid var(--color-border-light);
        }

        .standings-table-wrap .table-header-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            background: var(--color-primary-light);
            border-bottom: 1px solid var(--color-border-light);
            flex-wrap: wrap;
            gap: 12px;
        }

        .standings-table-wrap .table-header-bar h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0;
            color: var(--color-primary-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .standings-table-wrap .table-header-bar .table-tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .table-tab-btn {
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            background: var(--color-white);
            border: 1px solid var(--color-border);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .table-tab-btn.active,
        .table-tab-btn:hover {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .standings-table thead th {
            background: #fafbfc;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.4px;
            border-bottom: 2px solid var(--color-border);
            white-space: nowrap;
        }

        .standings-table tbody td {
            padding: 11px 16px;
            border-bottom: 1px solid var(--color-border-light);
            vertical-align: middle;
        }

        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }

        .standings-table tbody tr:hover {
            background: #fafdfb;
        }

        .standings-table .pos-col {
            font-weight: 700;
            width: 50px;
            text-align: center;
        }

        .standings-table .team-col {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .standings-table .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .standings-table .pts-col {
            font-weight: 700;
            color: var(--color-primary);
            font-size: 1rem;
        }

        .standings-table .pos-top4 {
            color: var(--color-primary);
            font-weight: 800;
        }

        @media (max-width: 768px) {
            .standings-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .standings-table {
                min-width: 680px;
                font-size: 0.82rem;
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 8px 10px;
            }
            .standings-table-wrap .table-header-bar {
                padding: 14px 16px;
            }
            .standings-table-wrap .table-header-bar h3 {
                font-size: 1rem;
            }
        }

        /* Stats Cards */
        .stats-cards-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        @media (max-width: 1024px) {
            .stats-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 520px) {
            .stats-cards-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        .stat-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            text-align: center;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--color-card-shadow);
            transition: all var(--transition-base);
        }

        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--color-card-shadow-hover);
        }

        .stat-card .stat-icon {
            font-size: 2rem;
            color: var(--color-accent);
            margin-bottom: 10px;
        }

        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1.1;
        }

        .stat-card .stat-label {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        /* Data Grid */
        .data-grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        @media (max-width: 900px) {
            .data-grid-2col {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .data-block {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--color-card-shadow);
        }

        .data-block h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--color-text);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .data-list-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--color-border-light);
            font-size: 0.9rem;
            gap: 10px;
        }

        .data-list-item:last-child {
            border-bottom: none;
        }

        .data-list-item .rank-num {
            font-weight: 700;
            color: var(--color-primary);
            min-width: 28px;
            text-align: center;
        }

        .data-list-item .item-name {
            flex: 1;
            font-weight: 500;
            color: var(--color-text);
        }

        .data-list-item .item-val {
            font-weight: 700;
            color: var(--color-accent-dark);
            white-space: nowrap;
        }

        /* Fixture Cards */
        .fixture-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        @media (max-width: 1024px) {
            .fixture-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .fixture-cards-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        .fixture-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 18px 16px;
            text-align: center;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--color-card-shadow);
            transition: all var(--transition-base);
        }

        .fixture-card:hover {
            box-shadow: var(--color-card-shadow-hover);
            border-color: var(--color-primary);
        }

        .fixture-card .fixture-league {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .fixture-card .fixture-matchup {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 4px;
        }

        .fixture-card .fixture-time {
            font-size: 0.82rem;
            color: var(--color-primary);
            font-weight: 500;
        }

        .fixture-card .fixture-score {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-primary-dark);
            margin: 8px 0;
            letter-spacing: 2px;
        }

        /* FAQ */
        .faq-section {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            box-shadow: var(--color-card-shadow);
            border: 1px solid var(--color-border-light);
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border-light);
            padding: 18px 0;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-item .faq-question {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-text);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .faq-item .faq-question i {
            color: var(--color-primary);
            transition: transform var(--transition-fast);
            font-size: 0.85rem;
        }

        .faq-item .faq-answer {
            margin-top: 10px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            display: none;
            padding-right: 28px;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 28px 18px;
            }
            .faq-item .faq-question {
                font-size: 0.92rem;
            }
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, #1a7a3a 0%, #145e2c 50%, #0f4a25 100%);
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-block::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .cta-block h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-block p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 500px;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }

        .btn-cta {
            display: inline-block;
            background: var(--color-accent);
            color: #1a1a2e;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
        }

        .btn-cta:hover {
            background: #f5c542;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 168, 23, 0.4);
            color: #1a1a2e;
        }

        @media (max-width: 768px) {
            .cta-block {
                padding: 36px 22px;
            }
            .cta-block h3 {
                font-size: 1.3rem;
            }
        }

        /* Footer */
        .site-footer {
            background: #1a1a2e;
            color: #c5c5d5;
            padding: 50px 0 0;
            margin-top: var(--spacing-2xl);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col p {
            font-size: 0.85rem;
            line-height: 1.7;
            color: #a0a0b5;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.85rem;
            color: #a0a0b5;
            transition: color var(--transition-fast);
            cursor: default;
        }

        .footer-col ul li a:hover {
            color: var(--color-accent);
        }

        .footer-bottom {
            text-align: center;
            padding: 22px 0 30px;
        }

        .footer-links-row {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 12px;
            font-size: 0.82rem;
            color: #7a7a90;
        }

        .footer-links-row a,
        .footer-links-row span {
            color: #7a7a90;
            font-size: 0.82rem;
            cursor: default;
        }

        .footer-links-row a:hover {
            color: var(--color-accent);
        }

        .beian-info {
            font-size: 0.78rem;
            color: #6a6a80;
            margin: 2px 0;
            letter-spacing: 0.3px;
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .footer-links-row {
                font-size: 0.75rem;
                gap: 3px;
            }
        }

        /* Utility */
        .text-accent {
            color: var(--color-accent);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-auto {
            margin-top: auto;
        }

/* roulang page: category2 */
:root {
            --brand-primary: #0d9488;
            --brand-primary-dark: #0f766e;
            --brand-primary-light: #14b8a6;
            --brand-accent: #f97316;
            --brand-accent-hover: #ea580c;
            --bg-body: #f8fafc;
            --bg-white: #ffffff;
            --bg-dark: #0f172a;
            --bg-dark-secondary: #1e293b;
            --bg-card: #ffffff;
            --bg-highlight: #f0fdfa;
            --text-primary: #1e293b;
            --text-secondary: #475569;
            --text-muted: #94a3b8;
            --text-on-dark: #e2e8f0;
            --text-on-brand: #ffffff;
            --border-light: #e2e8f0;
            --border-medium: #cbd5e1;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 50px;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 56px;
            --spacing-2xl: 72px;
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
        }

        *,
        *::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: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-body);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-primary-dark);
            text-decoration: none;
        }

        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;
            color: var(--text-primary);
            line-height: 1.3;
            margin-top: 0;
        }

        h1 {
            font-size: 2.6rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            letter-spacing: -0.01em;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
        }

        .container-custom {
            max-width: 1240px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 1400px) {
            .container-custom {
                max-width: 1320px;
            }
        }

        /* ========== HEADER / NAV ========== */
        .main-nav-wrap {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: var(--shadow-sm);
        }

        .main-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 20px;
            flex-wrap: nowrap;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--text-primary) !important;
            white-space: nowrap;
            text-decoration: none !important;
            flex-shrink: 0;
            letter-spacing: 0.01em;
        }

        .brand-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
            border-radius: var(--radius-sm);
            color: #fff;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: var(--radius-full);
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
        }

        .nav-links a:hover {
            color: var(--brand-primary);
            background: var(--bg-highlight);
        }

        .nav-links a.active {
            color: var(--text-on-brand);
            background: var(--brand-primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
        }

        .nav-links a.active:hover {
            background: var(--brand-primary-dark);
            color: #fff;
        }

        .nav-search-btn {
            background: var(--bg-highlight);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-primary);
            font-size: 1rem;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .nav-search-btn:hover {
            background: var(--brand-primary);
            color: #fff;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: var(--bg-highlight);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.85rem;
            }
            .nav-brand {
                font-size: 1.2rem;
            }
            .brand-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: 16px 20px;
                gap: 4px;
                border-bottom: 3px solid var(--brand-primary);
                box-shadow: var(--shadow-lg);
                z-index: 1040;
                border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 10px 16px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
            }
            .main-nav {
                padding: 10px 0;
            }
            .nav-brand {
                font-size: 1.15rem;
            }
            .brand-icon {
                width: 34px;
                height: 34px;
                font-size: 0.95rem;
            }
        }

        /* ========== HERO BANNER ========== */
        .hero-banner {
            position: relative;
            background: linear-gradient(170deg, #0f172a 0%, #1a3c34 40%, #0d2e28 100%);
            padding: 80px 0 70px;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            align-items: center;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            z-index: 0;
        }

        .hero-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg-body) 0%, transparent 100%);
            z-index: 1;
        }

        .hero-banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-banner .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(249, 115, 22, 0.2);
            border: 1px solid rgba(249, 115, 22, 0.5);
            color: var(--brand-accent);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            margin-bottom: 20px;
            animation: pulse-badge 2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
            }
        }

        .badge-live-dot {
            width: 10px;
            height: 10px;
            background: var(--brand-accent);
            border-radius: 50%;
            animation: blink-dot 1s ease-in-out infinite;
        }

        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        .hero-banner h1 {
            color: #ffffff;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .hero-banner .hero-desc {
            color: #cbd5e1;
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }

        .hero-banner .hero-stats-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .hero-stat-item {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--brand-primary-light);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .hero-banner {
                padding: 50px 0 50px;
                min-height: auto;
            }
            .hero-banner h1 {
                font-size: 1.9rem;
            }
            .hero-banner .hero-desc {
                font-size: 1rem;
            }
            .hero-stats-row {
                gap: 20px;
            }
            .hero-stat-number {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 520px) {
            .hero-banner h1 {
                font-size: 1.5rem;
            }
            .hero-banner .hero-desc {
                font-size: 0.9rem;
            }
            .hero-stats-row {
                gap: 14px;
            }
            .hero-stat-number {
                font-size: 1.3rem;
            }
        }

        /* ========== SECTION COMMONS ========== */
        .section-block {
            padding: 64px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 4px;
            background: var(--brand-primary);
            border-radius: 2px;
        }

        .section-header .section-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 14px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .section-block {
                padding: 44px 0;
            }
            .section-header h2 {
                font-size: 1.55rem;
            }
            .section-header {
                margin-bottom: 28px;
            }
        }

        /* ========== LIVE MATCH CARDS ========== */
        .bg-alt-light {
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .live-match-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .live-match-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .live-match-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--brand-primary-light);
        }

        .live-match-card .match-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            margin-bottom: 12px;
        }

        .status-live {
            background: #fef2f2;
            color: #dc2626;
        }
        .status-upcoming {
            background: #fefce8;
            color: #ca8a04;
        }
        .status-finished {
            background: #f1f5f9;
            color: #64748b;
        }

        .live-match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 10px;
        }

        .match-team {
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            flex: 1;
            color: var(--text-primary);
        }

        .match-score {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            flex-shrink: 0;
            min-width: 50px;
            text-align: center;
            letter-spacing: 0.04em;
        }

        .match-score.upcoming-time {
            font-size: 1rem;
            font-weight: 600;
            color: var(--brand-primary);
            min-width: 70px;
        }

        .live-match-card .match-league {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 4px;
        }

        .live-match-card .match-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed var(--border-light);
        }

        .btn-watch-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-accent);
            color: #fff !important;
            font-weight: 600;
            font-size: 0.82rem;
            padding: 7px 16px;
            border-radius: var(--radius-full);
            transition: all var(--transition-fast);
            text-decoration: none !important;
        }

        .btn-watch-live:hover {
            background: var(--brand-accent-hover);
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
            transform: translateY(-1px);
            color: #fff !important;
        }

        @media (max-width: 1024px) {
            .live-match-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .live-match-grid {
                grid-template-columns: 1fr;
            }
            .live-match-card {
                padding: 16px;
            }
        }

        /* ========== LEAGUE CARDS ========== */
        .league-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .league-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            text-align: center;
            cursor: pointer;
        }

        .league-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--brand-primary-light);
        }

        .league-card-img-wrap {
            position: relative;
            height: 140px;
            overflow: hidden;
            background: var(--bg-dark-secondary);
        }

        .league-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .league-card:hover .league-card-img-wrap img {
            transform: scale(1.06);
        }

        .league-card-body {
            padding: 16px 14px;
        }

        .league-card-body h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .league-card-body .league-count {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .league-card-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--brand-accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            z-index: 2;
        }

        @media (max-width: 1024px) {
            .league-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .league-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .league-card-img-wrap {
                height: 100px;
            }
            .league-card-body h4 {
                font-size: 0.9rem;
            }
        }

        /* ========== PLATFORM LIST ========== */
        .platform-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .platform-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
        }

        .platform-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--brand-primary-light);
        }

        .platform-icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            color: #fff;
        }

        .platform-icon-circle.circle-teal {
            background: linear-gradient(135deg, #0d9488, #14b8a6);
        }
        .platform-icon-circle.circle-orange {
            background: linear-gradient(135deg, #f97316, #fb923c);
        }
        .platform-icon-circle.circle-blue {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }
        .platform-icon-circle.circle-purple {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }
        .platform-icon-circle.circle-green {
            background: linear-gradient(135deg, #22c55e, #4ade80);
        }
        .platform-icon-circle.circle-rose {
            background: linear-gradient(135deg, #e11d48, #fb7185);
        }

        .platform-info h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 2px;
            color: var(--text-primary);
        }

        .platform-info span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .platform-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            background: #f0fdfa;
            color: var(--brand-primary);
            margin-left: auto;
            flex-shrink: 0;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .platform-list {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .platform-item {
                padding: 14px 16px;
            }
            .platform-icon-circle {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
            .platform-info h4 {
                font-size: 0.9rem;
            }
        }

        /* ========== GUIDE STEPS ========== */
        .guide-steps {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .guide-step-card {
            flex: 1;
            min-width: 200px;
            max-width: 280px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            position: relative;
            transition: all var(--transition-base);
        }

        .guide-step-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--brand-primary-light);
        }

        .guide-step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: #fff;
            font-weight: 800;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35);
        }

        .guide-step-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .guide-step-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .guide-steps {
                flex-direction: column;
                align-items: center;
            }
            .guide-step-card {
                max-width: 100%;
                width: 100%;
                min-width: auto;
                padding: 20px 16px;
            }
            .guide-step-number {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            background: none;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: var(--bg-highlight);
        }

        .faq-question i {
            color: var(--brand-primary);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 18px;
        }

        /* ========== CTA ========== */
        .cta-block {
            background: linear-gradient(160deg, #0d9488 0%, #0f766e 50%, #0a5c55 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: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }

        .cta-block::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .cta-block h2 {
            color: #fff;
            position: relative;
            z-index: 1;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-block p {
            color: #ccfbf1;
            position: relative;
            z-index: 1;
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--brand-primary-dark) !important;
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 32px;
            border-radius: var(--radius-full);
            text-decoration: none !important;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
        }

        .btn-cta:hover {
            background: #f0fdfa;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
            color: var(--brand-primary-dark) !important;
        }

        @media (max-width: 768px) {
            .cta-block {
                padding: 36px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-block h2 {
                font-size: 1.4rem;
            }
            .cta-block p {
                font-size: 0.9rem;
            }
            .btn-cta {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-dark);
            color: var(--text-on-dark);
            padding: 56px 0 0;
            margin-top: 8px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h4 {
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 14px;
        }

        .footer-col p {
            font-size: 0.88rem;
            color: #94a3b8;
            line-height: 1.7;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.88rem;
            color: #94a3b8;
            transition: color var(--transition-fast);
            cursor: pointer;
        }

        .footer-col ul li a:hover {
            color: var(--brand-primary-light);
        }

        .footer-col ul li span {
            cursor: default;
        }

        .footer-bottom {
            text-align: center;
            padding: 24px 0 28px;
        }

        .footer-links-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            font-size: 0.85rem;
            color: #94a3b8;
            margin-bottom: 14px;
        }

        .footer-links-row a,
        .footer-links-row span {
            color: #94a3b8;
            font-size: 0.85rem;
            cursor: pointer;
        }

        .footer-links-row a:hover {
            color: var(--brand-primary-light);
        }

        .beian-info {
            font-size: 0.8rem;
            color: #64748b;
            margin: 4px 0;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-col:first-child {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-col:first-child {
                grid-column: auto;
            }
        }

        /* ========== MISC UTILS ========== */
        .text-brand {
            color: var(--brand-primary);
        }
        .fw-800 {
            font-weight: 800;
        }
