/* roulang page: index */
:root {
            --primary: #0f7a3c;
            --primary-dark: #0a5e2e;
            --primary-light: #e8f5e9;
            --accent: #c8943e;
            --accent-light: #fdf3dc;
            --bg: #ffffff;
            --bg-alt: #f7f8fa;
            --bg-dark: #1a1d23;
            --bg-darker: #14161b;
            --text: #1a1d23;
            --text-secondary: #5a5f6b;
            --text-muted: #8b8f9a;
            --text-light: #b0b4be;
            --border: #e2e5ea;
            --border-light: #eef0f4;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.13);
            --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --max-width: 1260px;
            --nav-height: 66px;
            --spacing-xs: 8px;
            --spacing-sm: 14px;
            --spacing: 22px;
            --spacing-md: 32px;
            --spacing-lg: 48px;
            --spacing-xl: 64px;
            --spacing-2xl: 88px;
        }

        *,
        *::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-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--primary);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
            font-size: inherit;
        }

        input {
            font-family: inherit;
            font-size: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing);
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 var(--spacing-md);
            }
        }
        @media (min-width: 1024px) {
            .container {
                padding: 0 var(--spacing-lg);
            }
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #ffffff;
            height: var(--nav-height);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing);
            gap: var(--spacing-sm);
        }
        @media (min-width: 768px) {
            .header-inner {
                padding: 0 var(--spacing-md);
                gap: var(--spacing);
            }
        }
        @media (min-width: 1024px) {
            .header-inner {
                padding: 0 var(--spacing-lg);
                gap: var(--spacing-md);
            }
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 9px;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text);
            white-space: nowrap;
            flex-shrink: 0;
            transition: color var(--transition-fast);
        }
        .logo-link:hover {
            color: var(--primary);
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .main-nav {
            display: none;
            align-items: center;
            gap: 4px;
            flex: 1;
            justify-content: center;
        }
        @media (min-width: 900px) {
            .main-nav {
                display: flex;
            }
        }
        .main-nav a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .main-nav a.active {
            color: var(--primary);
            font-weight: 600;
            background: var(--primary-light);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .search-wrap {
            display: none;
            position: relative;
        }
        @media (min-width: 640px) {
            .search-wrap {
                display: block;
            }
        }
        .search-wrap input {
            width: 180px;
            padding: 9px 36px 9px 16px;
            border: 1.5px solid var(--border);
            border-radius: 22px;
            font-size: 0.9rem;
            color: var(--text);
            background: var(--bg-alt);
            transition: all var(--transition-fast);
            outline: none;
        }
        @media (min-width: 1024px) {
            .search-wrap input {
                width: 220px;
            }
        }
        .search-wrap input:focus {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(15, 122, 60, 0.08);
            width: 240px;
        }
        @media (min-width: 1024px) {
            .search-wrap input:focus {
                width: 280px;
            }
        }
        .search-wrap .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.85rem;
            pointer-events: none;
            transition: color var(--transition-fast);
        }
        .search-wrap input:focus+.search-icon {
            color: var(--primary);
        }

        .btn-cta-nav {
            display: none;
            padding: 10px 22px;
            background: var(--primary);
            color: #fff;
            border-radius: 22px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        @media (min-width: 640px) {
            .btn-cta-nav {
                display: inline-flex;
            }
        }
        .btn-cta-nav:hover {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            color: var(--text);
            font-size: 1.3rem;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }
        @media (min-width: 900px) {
            .mobile-menu-toggle {
                display: none;
            }
        }
        .mobile-menu-toggle:hover {
            background: var(--bg-alt);
            color: var(--primary);
        }

        /* Mobile nav drawer */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--transition);
        }
        .mobile-nav-overlay.open {
            display: block;
            opacity: 1;
        }
        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            max-width: 85vw;
            height: 100vh;
            background: #fff;
            z-index: 1001;
            padding: var(--spacing-lg) var(--spacing);
            display: flex;
            flex-direction: column;
            gap: var(--spacing);
            transition: right var(--transition);
            box-shadow: var(--shadow-xl);
            overflow-y: auto;
        }
        .mobile-nav-drawer.open {
            right: 0;
        }
        .mobile-nav-drawer .drawer-close {
            align-self: flex-end;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
        }
        .mobile-nav-drawer .drawer-close:hover {
            background: var(--bg-alt);
            color: var(--text);
        }
        .mobile-nav-drawer a {
            display: block;
            padding: 12px 16px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 500;
            color: var(--text);
            transition: all var(--transition-fast);
        }
        .mobile-nav-drawer a:hover,
        .mobile-nav-drawer a.active {
            background: var(--primary-light);
            color: var(--primary);
        }
        .mobile-nav-drawer .drawer-search {
            width: 100%;
            padding: 11px 16px;
            border: 1.5px solid var(--border);
            border-radius: 22px;
            font-size: 0.95rem;
            outline: none;
            background: var(--bg-alt);
        }
        .mobile-nav-drawer .drawer-search:focus {
            border-color: var(--primary);
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(180deg, rgba(15, 15, 20, 0.55) 0%, rgba(10, 10, 16, 0.78) 100%), url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-position: center 35%;
            color: #fff;
            padding: var(--spacing-2xl) var(--spacing);
            overflow: hidden;
        }
        @media (min-width: 768px) {
            .hero {
                min-height: 600px;
                padding: var(--spacing-2xl) var(--spacing-md);
            }
        }
        @media (min-width: 1024px) {
            .hero {
                min-height: 680px;
            }
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 760px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.13);
            border: 1px solid rgba(255, 255, 255, 0.22);
            backdrop-filter: blur(6px);
            padding: 7px 18px;
            border-radius: 22px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: var(--spacing);
            animation: fadeInUp 0.7s ease-out;
        }
        .hero-badge i {
            color: var(--accent);
            font-size: 0.8rem;
        }
        .hero h1 {
            font-size: 2.1rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: var(--spacing-sm);
            letter-spacing: 0.5px;
            animation: fadeInUp 0.7s ease-out 0.1s both;
        }
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 3.3rem;
            }
        }
        .hero p {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: var(--spacing-md);
            line-height: 1.7;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.7s ease-out 0.2s both;
        }
        @media (min-width: 768px) {
            .hero p {
                font-size: 1.18rem;
            }
        }
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            animation: fadeInUp 0.7s ease-out 0.3s both;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            background: var(--primary);
            color: #fff;
            border-radius: 26px;
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition);
            box-shadow: 0 4px 18px rgba(15, 122, 60, 0.35);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(15, 122, 60, 0.45);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.55);
            border-radius: 26px;
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition);
            backdrop-filter: blur(4px);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: var(--spacing-xl) 0;
        }
        @media (min-width: 768px) {
            .section {
                padding: var(--spacing-2xl) 0;
            }
        }
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }
        .section-header h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        @media (min-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
        }
        .section-header .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.65;
        }

        /* ========== CATEGORY CARDS ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-sm);
        }
        @media (min-width: 600px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--spacing);
            }
        }
        @media (min-width: 900px) {
            .category-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: var(--spacing);
            }
        }
        .cat-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: var(--spacing-md) var(--spacing-sm);
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }
        .cat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
            color: inherit;
        }
        .cat-card .cat-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: var(--spacing-sm);
            transition: all var(--transition);
            flex-shrink: 0;
        }
        .cat-card:nth-child(1) .cat-icon-wrap {
            background: #e3f2fd;
            color: #1976d2;
        }
        .cat-card:nth-child(2) .cat-icon-wrap {
            background: #fce4ec;
            color: #c62828;
        }
        .cat-card:nth-child(3) .cat-icon-wrap {
            background: #e8f5e9;
            color: #2e7d32;
        }
        .cat-card:nth-child(4) .cat-icon-wrap {
            background: #fff3e0;
            color: #e65100;
        }
        .cat-card:nth-child(5) .cat-icon-wrap {
            background: #f3e5f5;
            color: #6a1b9a;
        }
        .cat-card h3 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text);
        }
        .cat-card .cat-count {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========== NEWS LIST ========== */
        .news-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing);
        }
        @media (min-width: 768px) {
            .news-list {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }
        }
        @media (min-width: 1024px) {
            .news-list {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--spacing);
            }
        }
        .news-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
        }
        .news-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--border);
        }
        .news-card .news-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }
        .news-card .news-body {
            padding: var(--spacing);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card .news-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .news-card h3 {
            font-size: 1.02rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.45;
            color: var(--text);
        }
        .news-card .news-excerpt {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
            margin-bottom: var(--spacing-sm);
        }
        .news-card .read-more {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all var(--transition-fast);
        }
        .news-card .read-more:hover {
            color: var(--primary-dark);
            gap: 9px;
        }

        /* ========== DATA DASHBOARD ========== */
        .data-section {
            background: var(--bg-dark);
            color: #fff;
            padding: var(--spacing-xl) 0;
        }
        @media (min-width: 768px) {
            .data-section {
                padding: var(--spacing-2xl) 0;
            }
        }
        .data-section .section-header h2 {
            color: #fff;
        }
        .data-section .section-header .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-sm);
        }
        @media (min-width: 600px) {
            .data-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: var(--spacing);
            }
        }
        .data-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            text-align: center;
            transition: all var(--transition);
        }
        .data-card:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 255, 255, 0.22);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }
        .data-card .data-icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
            color: var(--accent);
        }
        .data-card .data-value {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        @media (min-width: 768px) {
            .data-card .data-value {
                font-size: 2.4rem;
            }
        }
        .data-card .data-label {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.65);
        }

        /* ========== TOPICS ========== */
        .topics-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing);
        }
        @media (min-width: 768px) {
            .topics-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--spacing-md);
            }
        }
        .topic-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
        }
        .topic-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .topic-card .topic-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
        }
        .topic-card .topic-body {
            padding: var(--spacing);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .topic-card .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }
        .topic-card .topic-tag {
            font-size: 0.75rem;
            padding: 4px 12px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 14px;
            font-weight: 500;
        }
        .topic-card h3 {
            font-size: 1.08rem;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .topic-card .topic-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
            margin-bottom: var(--spacing-sm);
        }
        .topic-card .topic-link {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all var(--transition-fast);
        }
        .topic-card .topic-link:hover {
            color: var(--primary-dark);
            gap: 9px;
        }

        /* ========== STAR SECTION ========== */
        .star-section {
            background: var(--bg-alt);
        }
        .star-scroll {
            display: flex;
            gap: var(--spacing);
            overflow-x: auto;
            padding-bottom: var(--spacing-sm);
            scroll-snap-type: x proximity;
            -webkit-overflow-scrolling: touch;
        }
        .star-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .star-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .star-scroll::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 10px;
        }
        .star-item {
            flex: 0 0 220px;
            scroll-snap-align: start;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            overflow: hidden;
            text-align: center;
            padding-bottom: var(--spacing);
            transition: all var(--transition);
            flex-shrink: 0;
        }
        @media (min-width: 768px) {
            .star-item {
                flex: 0 0 260px;
            }
        }
        .star-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .star-item .star-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }
        .star-item h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-top: var(--spacing-sm);
        }
        .star-item .star-role {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 3px;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border);
        }
        .faq-q {
            width: 100%;
            padding: var(--spacing) var(--spacing-md);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-sm);
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            text-align: left;
            transition: all var(--transition-fast);
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit;
        }
        .faq-q:hover {
            color: var(--primary);
            background: var(--bg-alt);
        }
        .faq-q i {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }
        .faq-item.open .faq-q i {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 var(--spacing-md);
            font-size: 0.93rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.open .faq-a {
            max-height: 260px;
            padding: 0 var(--spacing-md) var(--spacing) var(--spacing-md);
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #0b5c2d 100%);
            color: #fff;
            text-align: center;
            padding: var(--spacing-xl) var(--spacing);
        }
        @media (min-width: 768px) {
            .cta-section {
                padding: var(--spacing-2xl) var(--spacing-md);
            }
        }
        .cta-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        @media (min-width: 768px) {
            .cta-section h2 {
                font-size: 2rem;
            }
        }
        .cta-section p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: var(--spacing-md);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .btn-cta-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: #fff;
            color: var(--primary);
            border-radius: 28px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all var(--transition);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
        }
        .cta-section .btn-cta-lg:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
            color: var(--primary-dark);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-darker);
            color: rgba(255, 255, 255, 0.7);
            padding: var(--spacing-xl) 0 var(--spacing) 0;
            font-size: 0.9rem;
        }
        @media (min-width: 768px) {
            .site-footer {
                padding: var(--spacing-2xl) 0 var(--spacing-md) 0;
            }
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-lg);
        }
        @media (min-width: 600px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 900px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
        .footer-col h4 {
            color: #fff;
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
            font-size: 0.95rem;
        }
        .footer-col p {
            line-height: 1.7;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing);
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.5);
        }
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: var(--spacing-sm);
            }
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.82rem;
            transition: color var(--transition-fast);
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }
        .footer-brand {
            font-weight: 700;
            color: #fff;
            font-size: 0.95rem;
        }

        /* ========== RESPONSIVE FINE-TUNING ========== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .btn-primary,
            .btn-outline {
                padding: 11px 22px;
                font-size: 0.9rem;
            }
            .section {
                padding: var(--spacing-lg) 0;
            }
            .section-header h2 {
                font-size: 1.45rem;
            }
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-xs);
            }
            .data-card {
                padding: var(--spacing);
            }
            .data-card .data-value {
                font-size: 1.5rem;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .cat-card {
                padding: var(--spacing) var(--spacing-sm);
            }
            .cat-card .cat-icon-wrap {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }
            .cat-card h3 {
                font-size: 0.85rem;
            }
        }
        @media (max-width: 520px) {
            .hero {
                min-height: 400px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero p {
                font-size: 0.88rem;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
            .topics-grid {
                grid-template-columns: 1fr;
            }
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .star-item {
                flex: 0 0 160px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing);
            }
        }

/* roulang page: category2 */
:root {
            --primary: #1a7a3a;
            --primary-dark: #145e2d;
            --primary-light: #2ecc5e;
            --accent: #e63946;
            --accent-hover: #c1121f;
            --bg: #f8faf9;
            --bg-white: #ffffff;
            --bg-dark: #0f1a14;
            --bg-card: #ffffff;
            --text: #1a1f1c;
            --text-secondary: #4a5750;
            --text-weak: #7d8a83;
            --border: #dce5e0;
            --border-light: #edf2ef;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.13), 0 8px 20px rgba(0, 0, 0, 0.06);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --max-width: 1240px;
            --header-height: 64px;
        }

        *,
        *::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-sans);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }
        input {
            font-family: inherit;
            outline: none;
        }
        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 20px;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .logo-text span {
            color: var(--primary);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .main-nav a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 22px;
            font-size: 0.93rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--primary);
            background: rgba(26, 122, 58, 0.06);
        }
        .main-nav a.active {
            color: var(--primary);
            background: rgba(26, 122, 58, 0.1);
            font-weight: 600;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 24px;
            padding: 7px 14px;
            gap: 8px;
            transition: all var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 122, 58, 0.08);
            background: var(--bg-white);
        }
        .search-box input {
            border: none;
            background: transparent;
            font-size: 0.9rem;
            color: var(--text);
            width: 140px;
        }
        .search-box input::placeholder {
            color: var(--text-weak);
        }
        .search-icon {
            color: var(--text-weak);
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .btn-cta-header {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #fff;
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-cta-header:hover {
            background: var(--accent-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            padding: 6px;
            cursor: pointer;
            line-height: 1;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            min-height: 320px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0a1f12 0%, #0d2b18 30%, #103520 60%, #0a1f12 100%);
            overflow: hidden;
        }
        .page-banner .banner-bg {
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.28;
            z-index: 0;
        }
        .page-banner .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 31, 18, 0.55) 0%, rgba(10, 31, 18, 0.8) 60%, rgba(10, 31, 18, 0.95) 100%);
            z-index: 1;
        }
        .banner-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
            max-width: 720px;
        }
        .banner-badge {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .banner-content h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: 0.2px;
        }
        .banner-content .banner-desc {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.7;
            margin-bottom: 22px;
        }
        .banner-stats {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .banner-stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            font-weight: 500;
        }
        .banner-stat-item .stat-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-light);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.6);
            }
        }

        /* Section共通 */
        .section {
            padding: 64px 0;
        }
        .section-header {
            margin-bottom: 40px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            letter-spacing: 0.2px;
        }
        .section-subtitle {
            font-size: 0.98rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Live Now Section */
        .live-now-section {
            background: var(--bg-white);
        }
        .live-match-card {
            background: var(--bg-white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .live-match-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent);
            border-radius: 0 4px 4px 0;
        }
        .live-match-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
            transform: translateY(-2px);
        }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--accent);
            color: #fff;
            padding: 4px 11px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.4px;
            animation: live-blink 1.6s ease-in-out infinite;
        }
        @keyframes live-blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .live-match-card .match-league {
            font-size: 0.82rem;
            color: var(--text-weak);
            font-weight: 500;
        }
        .live-match-card .match-teams {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.3px;
        }
        .live-match-card .match-score {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 2px;
        }
        .live-match-card .match-info {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .match-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        @media(min-width:768px) {
            .match-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Upcoming Section */
        .upcoming-section {
            background: var(--bg);
        }
        .upcoming-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .upcoming-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);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .upcoming-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--border);
        }
        .upcoming-card .uc-date {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .upcoming-card .uc-teams {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--text);
        }
        .upcoming-card .uc-league {
            font-size: 0.82rem;
            color: var(--text-weak);
        }
        .upcoming-card .uc-time {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .tag-live-pending {
            display: inline-block;
            background: #fff3cd;
            color: #856404;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* League入口 */
        .league-entry-section {
            background: var(--bg-white);
        }
        .league-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 18px;
        }
        .league-card {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 24px 18px;
            text-align: center;
            border: 1.5px solid transparent;
            transition: all var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .league-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            background: #f0faf4;
        }
        .league-card .league-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
        }
        .league-card .league-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 4px;
        }
        .league-card .league-count {
            font-size: 0.8rem;
            color: var(--text-weak);
        }
        .league-icon.epl {
            background: linear-gradient(135deg, #3d195b, #6b2fa0);
        }
        .league-icon.laliga {
            background: linear-gradient(135deg, #c8102e, #e63946);
        }
        .league-icon.seriea {
            background: linear-gradient(135deg, #004d99, #0066cc);
        }
        .league-icon.bundes {
            background: linear-gradient(135deg, #cc0000, #e60000);
        }
        .league-icon.ligue1 {
            background: linear-gradient(135deg, #1a3a5c, #264d73);
        }
        .league-icon.ucl {
            background: linear-gradient(135deg, #0a2a5e, #1a4a8e);
        }

        /* Schedule Table */
        .schedule-section {
            background: var(--bg);
        }
        .schedule-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            background: var(--bg-white);
            box-shadow: var(--shadow-sm);
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.93rem;
            min-width: 700px;
        }
        .schedule-table thead {
            background: #f4f7f5;
        }
        .schedule-table th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
            color: var(--text);
            font-size: 0.85rem;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .schedule-table td {
            padding: 13px 16px;
            border-top: 1px solid var(--border-light);
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .schedule-table tbody tr {
            transition: background var(--transition);
        }
        .schedule-table tbody tr:hover {
            background: #f9fdfa;
        }
        .schedule-table .team-cell {
            font-weight: 600;
            color: var(--text);
        }
        .schedule-table .time-cell {
            font-weight: 600;
            color: var(--primary);
        }
        .status-live-sm {
            display: inline-block;
            background: #ffe0e0;
            color: #c1121f;
            padding: 2px 9px;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        .status-upcoming-sm {
            display: inline-block;
            background: #e8f5e9;
            color: #2e7d32;
            padding: 2px 9px;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        .status-ended-sm {
            display: inline-block;
            background: #f5f5f5;
            color: #888;
            padding: 2px 9px;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        /* Guide Section */
        .guide-section {
            background: var(--bg-white);
        }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .guide-card {
            background: var(--bg);
            border-radius: var(--radius-md);
            padding: 26px 20px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .guide-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .guide-card .guide-num {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }
        .guide-card .guide-text h4 {
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            font-size: 0.98rem;
        }
        .guide-card .guide-text p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        /* FAQ */
        .faq-section {
            background: var(--bg);
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 700;
            color: var(--text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            user-select: none;
            background: transparent;
            width: 100%;
            text-align: left;
        }
        .faq-question .faq-arrow {
            transition: transform var(--transition);
            font-size: 0.8rem;
            color: var(--text-weak);
            flex-shrink: 0;
            margin-left: 12px;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 22px;
            font-size: 0.93rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #0a1f12 0%, #103520 50%, #0d2b18 100%);
            color: #fff;
            text-align: center;
            padding: 72px 0;
        }
        .cta-section .cta-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.2px;
        }
        .cta-section .cta-desc {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 28px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .btn-cta-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            padding: 14px 32px;
            border-radius: 28px;
            font-size: 1.05rem;
            font-weight: 700;
            transition: all var(--transition);
            letter-spacing: 0.3px;
        }
        .btn-cta-lg:hover {
            background: #fff;
            color: var(--accent);
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        /* Footer */
        .site-footer {
            background: #0a1410;
            color: rgba(255, 255, 255, 0.78);
            padding: 56px 0 28px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-brand {
            color: #4ade80;
            font-weight: 700;
        }
        .footer-col p {
            font-size: 0.88rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #4ade80;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 22px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.45);
            transition: color var(--transition);
        }
        .footer-bottom-links a:hover {
            color: #4ade80;
        }

        /* Responsive */
        @media(max-width:1024px) {
            .search-box input {
                width: 100px;
            }
            .main-nav a {
                padding: 7px 11px;
                font-size: 0.85rem;
            }
            .banner-content h1 {
                font-size: 2.1rem;
            }
            .page-banner {
                min-height: 260px;
            }
            .banner-content {
                padding: 44px 0;
            }
        }
        @media(max-width:768px) {
            .main-nav {
                gap: 2px;
            }
            .main-nav a {
                padding: 6px 10px;
                font-size: 0.8rem;
                border-radius: 16px;
            }
            .search-box {
                display: none;
            }
            .btn-cta-header {
                padding: 7px 14px;
                font-size: 0.82rem;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .banner-content h1 {
                font-size: 1.7rem;
            }
            .banner-content .banner-desc {
                font-size: 0.93rem;
            }
            .page-banner {
                min-height: 220px;
            }
            .banner-content {
                padding: 34px 0;
            }
            .section {
                padding: 44px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .league-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .guide-grid {
                grid-template-columns: 1fr;
            }
            .cta-section .cta-title {
                font-size: 1.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom-links {
                justify-content: center;
            }
        }
        @media(max-width:520px) {
            .container {
                padding: 0 14px;
            }
            .logo-text {
                font-size: 1.05rem;
            }
            .main-nav {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                gap: 2px;
                padding-bottom: 4px;
                mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
                -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
            }
            .main-nav a {
                flex-shrink: 0;
                font-size: 0.78rem;
                padding: 6px 10px;
            }
            .btn-cta-header {
                font-size: 0.75rem;
                padding: 6px 10px;
            }
            .banner-content h1 {
                font-size: 1.4rem;
            }
            .page-banner {
                min-height: 190px;
            }
            .banner-content {
                padding: 26px 0;
            }
            .live-match-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 20px 16px;
            }
            .live-match-card .match-score {
                font-size: 1.4rem;
            }
            .upcoming-grid {
                grid-template-columns: 1fr;
            }
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .schedule-table {
                font-size: 0.78rem;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .cta-section {
                padding: 48px 0;
            }
            .cta-section .cta-title {
                font-size: 1.3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
        }

        @media(max-width:380px) {
            .league-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .league-card {
                padding: 16px 10px;
            }
            .league-card .league-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        /* Focus visible */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }

/* roulang page: category1 */
:root {
            --primary: #1a6b3c;
            --primary-dark: #145a30;
            --primary-light: #e8f5e9;
            --accent: #e85d2c;
            --accent-hover: #d1491a;
            --bg: #f8faf8;
            --bg-white: #ffffff;
            --bg-dark: #1a1f1c;
            --bg-card: #ffffff;
            --text: #1a1f1c;
            --text-secondary: #5a6c5e;
            --text-light: #8a9a8d;
            --text-white: #f0f2f0;
            --border: #dde5dd;
            --border-light: #eef3ee;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 50%;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1240px;
            --nav-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            -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);
        }

        ul,
        ol {
            list-style: none;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            height: var(--nav-height);
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.25rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .logo-text span {
            color: var(--primary);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .main-nav a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .main-nav a.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }
        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 16px;
            right: 16px;
            height: 2.5px;
            background: var(--primary);
            border-radius: 2px 2px 0 0;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-full);
            padding: 7px 14px;
            gap: 8px;
            transition: all var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.08);
            background: var(--bg-white);
        }
        .search-box i {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .search-box input {
            background: transparent;
            font-size: 0.9rem;
            color: var(--text);
            width: 140px;
        }
        .search-box input::placeholder {
            color: var(--text-light);
        }
        .btn-cta-nav {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all var(--transition);
            box-shadow: 0 2px 8px rgba(232, 93, 44, 0.25);
        }
        .btn-cta-nav:hover {
            background: var(--accent-hover);
            box-shadow: 0 4px 16px rgba(232, 93, 44, 0.35);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .mobile-menu-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--text);
            border-radius: 2px;
            transition: all var(--transition);
        }
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            background: linear-gradient(135deg, #1a3a28 0%, #1a5c34 40%, #1a6b3c 70%, #0f4a2a 100%);
            position: relative;
            overflow: hidden;
            padding: 56px 0 48px;
            color: #fff;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 0;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 60, 40, 0.55) 0%, rgba(26, 90, 50, 0.8) 100%);
            z-index: 1;
        }
        .page-banner .container {
            position: relative;
            z-index: 2;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .breadcrumb i {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .banner-content h1 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: 0.03em;
            line-height: 1.25;
            margin-bottom: 10px;
        }
        .banner-content p {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 620px;
            line-height: 1.65;
        }
        .banner-stats {
            display: flex;
            gap: 28px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .banner-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
        }
        .banner-stat i {
            font-size: 1.15rem;
            color: #ffd166;
        }
        .banner-stat strong {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: 52px 0;
        }
        .section-header {
            margin-bottom: 32px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-header h2 {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--text);
            position: relative;
            padding-left: 16px;
            letter-spacing: 0.02em;
        }
        .section-header h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        .section-header .view-all {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition);
        }
        .section-header .view-all:hover {
            color: var(--primary-dark);
            gap: 8px;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-top: -20px;
            margin-bottom: 28px;
            padding-left: 16px;
        }

        /* ========== FILTER TAGS ========== */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 32px;
        }
        .filter-tag {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            background: var(--bg-white);
            border: 1.5px solid var(--border);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }
        .filter-tag.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26, 107, 60, 0.3);
        }

        /* ========== NEWS LIST ========== */
        .news-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .news-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition-slow);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-light);
        }
        .news-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--border);
        }
        .news-card-img {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: #e8ece8;
        }
        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .news-card:hover .news-card-img img {
            transform: scale(1.04);
        }
        .news-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            display: inline-block;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 0.78rem;
            font-weight: 600;
            background: var(--accent);
            color: #fff;
            z-index: 2;
            letter-spacing: 0.03em;
        }
        .news-card-body {
            padding: 18px 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.82rem;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .news-card-meta i {
            font-size: 0.75rem;
        }
        .news-card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.45;
            color: var(--text);
            margin-bottom: 8px;
            transition: color var(--transition);
        }
        .news-card:hover .news-card-body h3 {
            color: var(--primary);
        }
        .news-card-body p {
            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;
        }
        .news-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid var(--border-light);
        }
        .news-card-tag {
            font-size: 0.8rem;
            color: var(--primary);
            background: var(--primary-light);
            padding: 3px 10px;
            border-radius: var(--radius-full);
            font-weight: 500;
        }
        .news-card-read {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 4px;
            transition: gap var(--transition);
        }
        .news-card-read:hover {
            gap: 7px;
            color: var(--primary-dark);
        }

        /* ========== FLASH NEWS ========== */
        .flash-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .flash-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 16px 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            cursor: pointer;
        }
        .flash-item:hover {
            box-shadow: var(--shadow);
            border-color: var(--border);
            background: #fafffb;
        }
        .flash-time {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--accent);
            white-space: nowrap;
            min-width: 48px;
            text-align: center;
            background: #fff5f0;
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            letter-spacing: 0.02em;
        }
        .flash-content h4 {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            margin-bottom: 3px;
            transition: color var(--transition);
        }
        .flash-item:hover .flash-content h4 {
            color: var(--primary);
        }
        .flash-content p {
            font-size: 0.84rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ========== DEEP READ ========== */
        .deep-read-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }
        .deep-read-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: all var(--transition-slow);
        }
        .deep-read-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .deep-read-card-img {
            aspect-ratio: 3 / 2;
            overflow: hidden;
            background: #e8ece8;
        }
        .deep-read-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .deep-read-card:hover .deep-read-card-img img {
            transform: scale(1.05);
        }
        .deep-read-card-body {
            padding: 18px 18px 22px;
        }
        .deep-read-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 6px;
            transition: color var(--transition);
        }
        .deep-read-card:hover .deep-read-card-body h3 {
            color: var(--primary);
        }
        .deep-read-card-body .dr-meta {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .deep-read-card-body p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 820px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-q {
            padding: 18px 22px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
        }
        .faq-q i {
            color: var(--primary);
            font-size: 0.85rem;
            transition: transform var(--transition);
        }
        .faq-item.open .faq-q i {
            transform: rotate(180deg);
        }
        .faq-a {
            padding: 0 22px 18px;
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.65;
            display: none;
        }
        .faq-item.open .faq-a {
            display: block;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #1a4a2e 0%, #1a6038 50%, #145a30 100%);
            border-radius: var(--radius-xl);
            padding: 44px 40px;
            color: #fff;
            text-align: center;
            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.1;
            z-index: 0;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.03em;
        }
        .cta-section p {
            font-size: 0.98rem;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 22px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 30px;
            background: #fff;
            color: var(--primary);
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition);
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
            letter-spacing: 0.03em;
        }
        .btn-cta:hover {
            background: #f0f8f2;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }
        .btn-outline-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
            margin-left: 10px;
        }
        .btn-outline-cta:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 0;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 32px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .footer-brand {
            color: #5dbb7a;
            font-weight: 700;
        }
        .footer-col p {
            font-size: 0.88rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #5dbb7a;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding: 18px 0 22px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.82rem;
            transition: color var(--transition);
        }
        .footer-bottom-links a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }
            .deep-read-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .banner-content h1 {
                font-size: 2rem;
            }
            .search-box input {
                width: 100px;
            }
            .main-nav a {
                padding: 8px 12px;
                font-size: 0.88rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: 16px 20px;
                gap: 2px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-lg);
                display: none;
                z-index: 999;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
            }
            .main-nav a.active::after {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-actions .search-box {
                display: none;
            }
            .btn-cta-nav {
                padding: 8px 14px;
                font-size: 0.82rem;
            }
            .news-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .deep-read-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .banner-content h1 {
                font-size: 1.7rem;
            }
            .banner-stats {
                gap: 16px;
            }
            .banner-stat {
                font-size: 0.85rem;
            }
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .cta-section {
                padding: 32px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h3 {
                font-size: 1.35rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-bottom-links {
                justify-content: center;
            }
            .filter-tags {
                gap: 8px;
            }
            .filter-tag {
                padding: 6px 14px;
                font-size: 0.82rem;
            }
            .btn-outline-cta {
                margin-left: 0;
                margin-top: 8px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .banner-content h1 {
                font-size: 1.45rem;
            }
            .banner-content p {
                font-size: 0.9rem;
            }
            .news-card-body h3 {
                font-size: 1.02rem;
            }
            .flash-item {
                flex-direction: column;
                gap: 6px;
                padding: 14px 16px;
            }
            .flash-time {
                align-self: flex-start;
            }
            .page-banner {
                padding: 36px 0 32px;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .deep-read-card-body h3 {
                font-size: 0.95rem;
            }
            .logo-text {
                font-size: 1.05rem;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #0e5c31;
            --primary-light: #1a7d44;
            --primary-dark: #083d1f;
            --accent: #d4941a;
            --accent-light: #eeb42b;
            --accent-dark: #a6710f;
            --bg: #f7f9f8;
            --bg-alt: #edf2ef;
            --surface: #ffffff;
            --text: #1a1d1c;
            --text-strong: #0e1211;
            --text-weak: #5f6b66;
            --text-muted: #8b9691;
            --border: #dde3e0;
            --border-light: #e8eeea;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.09), 0 4px 10px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 18px 44px rgba(0, 0, 0, 0.11), 0 6px 16px rgba(0, 0, 0, 0.06);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition-fast: 0.18s ease;
            --transition: 0.28s ease;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            font-size: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(14, 92, 49, 0.3);
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--primary);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .main-nav a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.93rem;
            font-weight: 500;
            color: var(--text-weak);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .main-nav a:hover {
            color: var(--primary);
            background: rgba(14, 92, 49, 0.06);
        }

        .main-nav a.active {
            color: var(--primary);
            font-weight: 600;
            background: rgba(14, 92, 49, 0.1);
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg-alt);
            border: 1px solid var(--border-light);
            border-radius: 22px;
            padding: 7px 14px;
            gap: 8px;
            transition: all var(--transition-fast);
        }

        .search-box:focus-within {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(14, 92, 49, 0.08);
            background: #fff;
        }

        .search-box svg {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.88rem;
            color: var(--text);
            width: 140px;
        }

        .search-box input::placeholder {
            color: var(--text-muted);
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            border-radius: 22px;
            font-weight: 600;
            font-size: 0.9rem;
            background: var(--accent);
            color: #1a1a1a;
            transition: all var(--transition-fast);
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(212, 148, 26, 0.25);
        }

        .btn-cta:hover {
            background: var(--accent-light);
            box-shadow: 0 4px 14px rgba(212, 148, 26, 0.35);
            transform: translateY(-1px);
        }

        .btn-cta:active {
            transform: translateY(0);
            box-shadow: 0 1px 4px rgba(212, 148, 26, 0.2);
        }

        .mobile-menu-toggle {
            display: none;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: var(--bg-alt);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid var(--border-light);
        }

        .mobile-menu-toggle svg {
            width: 20px;
            height: 20px;
            color: var(--text);
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            padding: 56px 0;
            background: linear-gradient(135deg, #0a3520 0%, #0e5c31 40%, #0d4a28 100%);
            overflow: hidden;
            color: #fff;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center / cover no-repeat;
            opacity: 0.2;
            z-index: 0;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(212, 148, 26, 0.12);
            z-index: 0;
            pointer-events: none;
        }

        .page-banner .container {
            position: relative;
            z-index: 1;
        }

        .page-banner .banner-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.84rem;
            font-weight: 500;
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }

        .page-banner h1 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .page-banner .banner-subtitle {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            line-height: 1.6;
        }

        /* Section Styles */
        .section {
            padding: 48px 0;
        }

        .section-alt {
            background: var(--bg-alt);
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .section-header h2 {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: 0.01em;
            position: relative;
            padding-left: 16px;
        }

        .section-header h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 4px;
            background: var(--accent);
            border-radius: 4px;
        }

        .section-header .view-all {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition-fast);
        }

        .section-header .view-all:hover {
            color: var(--primary-light);
            gap: 8px;
        }

        /* News List */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 18px 20px;
            transition: all var(--transition);
            cursor: pointer;
        }

        .news-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--border);
            transform: translateY(-1px);
        }

        .news-item .news-date {
            flex-shrink: 0;
            background: var(--bg-alt);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            text-align: center;
            min-width: 58px;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--primary);
            line-height: 1.3;
            border: 1px solid var(--border-light);
        }

        .news-item .news-date .day {
            font-size: 1.4rem;
            display: block;
            line-height: 1;
        }

        .news-item .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-item .news-content h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-strong);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .news-item:hover .news-content h4 {
            color: var(--primary);
        }

        .news-item .news-content p {
            font-size: 0.9rem;
            color: var(--text-weak);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item .news-tag {
            display: inline-block;
            font-size: 0.75rem;
            background: rgba(212, 148, 26, 0.12);
            color: var(--accent-dark);
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 500;
            margin-top: 8px;
        }

        .news-item .news-thumb {
            width: 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: var(--bg-alt);
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--border);
        }

        .feature-card .card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--bg-alt);
        }

        .feature-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .feature-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }

        .feature-card .card-img-wrap .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: #1a1a1a;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 14px;
            z-index: 1;
        }

        .feature-card .card-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .feature-card .card-body h3 {
            font-size: 1.12rem;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .feature-card:hover .card-body h3 {
            color: var(--primary);
        }

        .feature-card .card-body p {
            font-size: 0.88rem;
            color: var(--text-weak);
            line-height: 1.55;
            flex: 1;
        }

        .feature-card .card-footer {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 12px;
            border-top: 1px solid var(--border-light);
            margin-top: 12px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .feature-card .card-footer .tag-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }

        /* Data Dashboard */
        .data-dashboard {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .data-card {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .data-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .data-card .data-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }

        .data-card .data-icon.green {
            background: rgba(14, 92, 49, 0.1);
            color: var(--primary);
        }
        .data-card .data-icon.gold {
            background: rgba(212, 148, 26, 0.12);
            color: var(--accent);
        }
        .data-card .data-icon.blue {
            background: rgba(30, 64, 175, 0.1);
            color: #1e40af;
        }
        .data-card .data-icon.red {
            background: rgba(180, 40, 40, 0.1);
            color: #b42828;
        }

        .data-card .data-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-strong);
            line-height: 1;
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .data-card .data-label {
            font-size: 0.85rem;
            color: var(--text-weak);
            font-weight: 500;
        }

        .data-card .data-trend {
            font-size: 0.78rem;
            font-weight: 600;
            margin-top: 6px;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }

        .data-card .data-trend.up {
            color: #0e7a3b;
        }
        .data-card .data-trend.down {
            color: #b42828;
        }

        /* Rankings */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ranking-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 14px 18px;
            transition: all var(--transition);
        }

        .ranking-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--border);
        }

        .ranking-item .rank-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            flex-shrink: 0;
            background: var(--bg-alt);
            color: var(--text-weak);
        }

        .ranking-item:nth-child(1) .rank-num {
            background: linear-gradient(135deg, #d4941a, #eeb42b);
            color: #fff;
            box-shadow: 0 2px 8px rgba(212, 148, 26, 0.35);
        }
        .ranking-item:nth-child(2) .rank-num {
            background: linear-gradient(135deg, #9ca3af, #b0b7c3);
            color: #fff;
            box-shadow: 0 2px 8px rgba(156, 163, 175, 0.35);
        }
        .ranking-item:nth-child(3) .rank-num {
            background: linear-gradient(135deg, #b0753c, #c98a4f);
            color: #fff;
            box-shadow: 0 2px 8px rgba(176, 117, 60, 0.35);
        }

        .ranking-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-item .rank-info .player-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-strong);
        }
        .ranking-item .rank-info .player-detail {
            font-size: 0.82rem;
            color: var(--text-weak);
            margin-top: 2px;
        }
        .ranking-item .rank-value {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
            white-space: nowrap;
        }
        .ranking-item .rank-change {
            font-size: 0.8rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            white-space: nowrap;
        }
        .rank-change.up {
            background: rgba(14, 122, 59, 0.1);
            color: #0e7a3b;
        }
        .rank-change.down {
            background: rgba(180, 40, 40, 0.08);
            color: #b42828;
        }
        .rank-change.stable {
            background: rgba(107, 114, 128, 0.08);
            color: #6b7280;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--border);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-strong);
            text-align: left;
            gap: 12px;
            transition: all var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--primary);
            background: rgba(14, 92, 49, 0.02);
        }

        .faq-question .faq-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all var(--transition-fast);
            font-size: 1.1rem;
            color: var(--text-weak);
            font-weight: 700;
        }

        .faq-answer {
            padding: 0 20px 18px;
            font-size: 0.9rem;
            color: var(--text-weak);
            line-height: 1.65;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }
        .faq-item.open .faq-question {
            color: var(--primary);
        }
        .faq-item.open .faq-icon {
            background: var(--primary);
            color: #fff;
            transform: rotate(45deg);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0a3520 0%, #0e5c31 50%, #0d4a28 100%);
            color: #fff;
            text-align: center;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-3.webp') center / cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        .cta-section p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 32px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            background: var(--accent);
            color: #1a1a1a;
            transition: all var(--transition);
            box-shadow: 0 4px 16px rgba(212, 148, 26, 0.4);
        }
        .btn-cta-large:hover {
            background: var(--accent-light);
            box-shadow: 0 6px 22px rgba(212, 148, 26, 0.55);
            transform: translateY(-2px);
        }

        /* Footer */
        .site-footer {
            background: #0e1211;
            color: rgba(255, 255, 255, 0.75);
            padding: 40px 0 24px;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 28px;
            margin-bottom: 28px;
        }

        .footer-col h4 {
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .footer-brand {
            color: var(--accent-light);
            font-weight: 700;
        }
        .footer-col p {
            font-size: 0.84rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.5);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-light);
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom-links {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .footer-bottom-links a:hover {
            color: var(--accent-light);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .data-dashboard {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .main-nav a {
                padding: 7px 11px;
                font-size: 0.84rem;
            }
            .search-box input {
                width: 100px;
            }
            .page-banner h1 {
                font-size: 1.9rem;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 12px 20px;
                gap: 2px;
                border-bottom: 1px solid var(--border-light);
                box-shadow: var(--shadow-lg);
                z-index: 999;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
                width: 100%;
                justify-content: flex-start;
            }
            .main-nav a.active::after {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .search-box {
                display: none;
            }
            .header-actions .btn-cta {
                font-size: 0.8rem;
                padding: 7px 14px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .data-dashboard {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .page-banner {
                padding: 36px 0;
            }
            .page-banner h1 {
                font-size: 1.5rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.9rem;
            }
            .news-item {
                flex-wrap: wrap;
                padding: 14px;
                gap: 10px;
            }
            .news-item .news-thumb {
                width: 100%;
                height: 140px;
                order: -1;
                border-radius: var(--radius-sm);
            }
            .news-item .news-date {
                min-width: auto;
                font-size: 0.78rem;
                padding: 5px 10px;
            }
            .news-item .news-date .day {
                font-size: 1.1rem;
            }
            .section-header h2 {
                font-size: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-bottom-links {
                justify-content: center;
            }
            .cta-section h2 {
                font-size: 1.3rem;
            }
            .ranking-item {
                flex-wrap: wrap;
                gap: 8px;
                padding: 12px;
            }
            .ranking-item .rank-value {
                font-size: 0.95rem;
            }
            .data-card .data-value {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .logo-text {
                font-size: 1rem;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }
            .btn-cta {
                font-size: 0.78rem;
                padding: 7px 13px;
            }
            .page-banner h1 {
                font-size: 1.25rem;
            }
            .page-banner {
                padding: 28px 0;
            }
            .data-dashboard {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .data-card {
                padding: 14px 10px;
            }
            .data-card .data-value {
                font-size: 1.1rem;
            }
            .data-card .data-label {
                font-size: 0.75rem;
            }
            .section {
                padding: 32px 0;
            }
            .section-header h2 {
                font-size: 1.1rem;
                padding-left: 12px;
            }
            .section-header h2::before {
                top: 4px;
                bottom: 4px;
                width: 3px;
            }
            .ranking-item .rank-num {
                width: 28px;
                height: 28px;
                font-size: 0.85rem;
            }
            .faq-question {
                font-size: 0.9rem;
                padding: 13px 14px;
            }
            .faq-answer {
                padding: 0 14px 14px;
                font-size: 0.82rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.5s ease forwards;
        }

/* roulang page: category3 */
:root {
            --primary: #0d7c3b;
            --primary-dark: #065a28;
            --primary-light: #e8f5ec;
            --accent: #e8a817;
            --accent-dark: #c48a0f;
            --bg: #f7f8f9;
            --surface: #ffffff;
            --surface-alt: #f0f2f4;
            --text: #1a1d21;
            --text-secondary: #4a5058;
            --text-muted: #7a8088;
            --border: #e2e5e9;
            --border-light: #eef0f2;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --transition: 0.22s ease;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --max-width: 1200px;
            --nav-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            margin: 0;
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            line-height: 1.3;
            font-weight: 700;
        }

        p {
            margin: 0;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 clamp(16px, 3vw, 32px);
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            height: var(--nav-height);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 9px;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }
        .main-nav a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition);
            position: relative;
        }
        .main-nav a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .main-nav a.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 700;
        }
        .nav-search-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .nav-search {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 7px 14px;
            gap: 7px;
            transition: all var(--transition);
            width: 180px;
        }
        .nav-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(13, 124, 59, 0.08);
            background: #fff;
            width: 220px;
        }
        .nav-search input {
            border: none;
            background: transparent;
            font-size: 0.88rem;
            color: var(--text);
            width: 100%;
            min-width: 0;
        }
        .nav-search input::placeholder {
            color: var(--text-muted);
        }
        .nav-search-icon {
            color: var(--text-muted);
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            padding: 6px;
            cursor: pointer;
            line-height: 1;
        }
        @media (max-width: 1024px) {
            .main-nav {
                gap: 1px;
            }
            .main-nav a {
                padding: 7px 10px;
                font-size: 0.83rem;
                border-radius: 16px;
            }
            .nav-search {
                width: 140px;
            }
            .nav-search:focus-within {
                width: 170px;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--surface);
                flex-direction: column;
                padding: 12px 16px;
                gap: 2px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
                z-index: 999;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 11px 16px;
                border-radius: var(--radius);
                font-size: 0.95rem;
                width: 100%;
            }
            .nav-search {
                width: 120px;
            }
            .nav-search:focus-within {
                width: 150px;
            }
            .mobile-menu-toggle {
                display: block;
            }
        }
        @media (max-width: 520px) {
            .nav-search {
                width: 100px;
            }
            .nav-search:focus-within {
                width: 130px;
            }
            .logo-link {
                font-size: 1.05rem;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
        }

        /* ========== MAIN CONTENT ========== */
        .page-main {
            flex: 1;
        }

        /* ========== BREADCRUMB ========== */
        .breadcrumb-bar {
            background: var(--surface);
            border-bottom: 1px solid var(--border-light);
            padding: 10px 0;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb-bar .container {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .breadcrumb-bar a {
            color: var(--text-secondary);
        }
        .breadcrumb-bar a:hover {
            color: var(--primary);
        }
        .breadcrumb-sep {
            color: var(--border);
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #0a2e1a 0%, #0d4a28 40%, #0a5c30 100%);
            color: #fff;
            padding: clamp(44px, 6vw, 72px) 0;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            align-items: center;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.25;
            z-index: 1;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 46, 26, 0.6) 0%, rgba(13, 74, 40, 0.85) 100%);
            z-index: 2;
        }
        .page-banner .container {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .page-banner .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 6px 16px;
            font-size: 0.85rem;
            font-weight: 500;
            width: fit-content;
            backdrop-filter: blur(4px);
        }
        .page-banner h1 {
            font-size: clamp(1.7rem, 3.5vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -0.3px;
        }
        .page-banner .banner-sub {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 620px;
            line-height: 1.6;
        }

        /* ========== SECTION ========== */
        .section {
            padding: clamp(36px, 5vw, 64px) 0;
        }
        .section-alt {
            background: var(--surface);
        }
        .section-header {
            text-align: center;
            margin-bottom: clamp(28px, 4vw, 44px);
        }
        .section-header h2 {
            font-size: clamp(1.4rem, 2.4vw, 1.85rem);
            color: var(--text);
            font-weight: 800;
            letter-spacing: -0.2px;
        }
        .section-header .section-subtitle {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 6px;
        }
        .section-header .section-accent {
            display: inline-block;
            width: 44px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            margin-bottom: 10px;
        }

        /* ========== STAT DASHBOARD CARDS ========== */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        @media (max-width: 900px) {
            .dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }
        @media (max-width: 520px) {
            .dashboard-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
        }
        .dash-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: clamp(18px, 3vw, 26px);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .dash-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: #d0d8d4;
        }
        .dash-card .dash-icon {
            width: 42px;
            height: 42px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .dash-icon.green {
            background: #e6f4ea;
            color: #0d7c3b;
        }
        .dash-icon.amber {
            background: #fef7e6;
            color: #c48a0f;
        }
        .dash-icon.blue {
            background: #e8f0fa;
            color: #2b5f9e;
        }
        .dash-icon.red {
            background: #fdeaea;
            color: #b84040;
        }
        .dash-card .dash-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.5px;
            line-height: 1;
        }
        .dash-card .dash-label {
            font-size: 0.88rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .dash-card .dash-change {
            font-size: 0.8rem;
            font-weight: 600;
        }
        .dash-change.up {
            color: #0d7c3b;
        }
        .dash-change.down {
            color: #b84040;
        }

        /* ========== TABLE ========== */
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            min-width: 680px;
        }
        .data-table thead th {
            background: #f5f7f6;
            padding: 13px 16px;
            text-align: left;
            font-weight: 700;
            color: var(--text-secondary);
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            border-bottom: 2px solid var(--border);
            white-space: nowrap;
        }
        .data-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }
        .data-table tbody tr {
            transition: background var(--transition);
        }
        .data-table tbody tr:hover {
            background: #f9fbf9;
        }
        .data-table tbody tr:last-child td {
            border-bottom: none;
        }
        .rank-cell {
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            width: 50px;
        }
        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .rank-badge.top {
            background: #e8a817;
            color: #fff;
        }
        .rank-badge.high {
            background: #d4d8dc;
            color: #3a4048;
        }
        .rank-badge.mid {
            background: #eef0f2;
            color: #6a7078;
        }
        .team-name-cell {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .pts-highlight {
            font-weight: 800;
            color: var(--primary);
            font-size: 1rem;
        }
        .form-indicator {
            display: flex;
            gap: 3px;
        }
        .form-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
        }
        .form-dot.win {
            background: #0d7c3b;
        }
        .form-dot.draw {
            background: #c48a0f;
        }
        .form-dot.loss {
            background: #b84040;
        }

        /* ========== PLAYER STATS ========== */
        .player-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .player-cards-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }
        .player-stat-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all var(--transition);
        }
        .player-stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .player-stat-card .psc-header {
            background: #f5f7f6;
            padding: 14px 20px;
            border-bottom: 1px solid var(--border-light);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .psc-header .psc-icon {
            font-size: 1.2rem;
        }
        .psc-list {
            padding: 0;
        }
        .psc-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 20px;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition);
        }
        .psc-item:last-child {
            border-bottom: none;
        }
        .psc-item:hover {
            background: #f9fbf9;
        }
        .psc-rank {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text);
            width: 28px;
            text-align: center;
            flex-shrink: 0;
        }
        .psc-rank.gold {
            color: #c48a0f;
        }
        .psc-rank.silver {
            color: #7a8088;
        }
        .psc-rank.bronze {
            color: #a0724a;
        }
        .psc-name {
            font-weight: 600;
            flex: 1;
            min-width: 0;
        }
        .psc-stat-num {
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        /* ========== ANALYSIS CARDS ========== */
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px;
        }
        @media (max-width: 768px) {
            .analysis-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        .analysis-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }
        .analysis-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .analysis-card .ac-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .ac-img .ac-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(0, 0, 0, 0.65);
            color: #fff;
            font-size: 0.78rem;
            padding: 5px 12px;
            border-radius: 14px;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }
        .analysis-card .ac-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }
        .ac-body h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
        }
        .ac-body p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .ac-body .ac-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            margin-top: auto;
            transition: gap var(--transition);
        }
        .ac-body .ac-link:hover {
            gap: 9px;
            color: var(--primary-dark);
        }

        /* ========== TREND SECTION ========== */
        .trend-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        @media (max-width: 768px) {
            .trend-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .trend-grid {
                grid-template-columns: 1fr;
            }
        }
        .trend-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 22px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all var(--transition);
        }
        .trend-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .trend-card .trend-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text);
            margin-bottom: 4px;
        }
        .trend-card .trend-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }
        .trend-card .trend-bar-wrap {
            background: #eef0f2;
            border-radius: 6px;
            height: 10px;
            margin-top: 8px;
            overflow: hidden;
        }
        .trend-bar-fill {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, #0d7c3b, #15a04a);
            transition: width 0.6s ease;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .faq-item:hover {
            border-color: #d0d8d4;
        }
        .faq-q {
            padding: 16px 20px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--text);
            font-size: 0.97rem;
            user-select: none;
            transition: background var(--transition);
        }
        .faq-q:hover {
            background: #f9fbf9;
        }
        .faq-q .faq-arrow {
            flex-shrink: 0;
            transition: transform var(--transition);
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            border-top: 1px solid transparent;
        }
        .faq-item.open .faq-a {
            max-height: 300px;
            padding: 14px 20px;
            border-top-color: var(--border-light);
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #0a2e1a 0%, #0d5c30 100%);
            color: #fff;
            text-align: center;
            padding: clamp(40px, 6vw, 64px) 0;
            border-radius: var(--radius-xl);
            margin: 0 clamp(16px, 3vw, 32px) clamp(36px, 5vw, 56px);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 1;
        }
        .cta-section .container {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }
        .cta-section h2 {
            font-size: clamp(1.4rem, 2.2vw, 1.8rem);
            font-weight: 800;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 550px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--accent);
            color: #1a1d21;
            font-weight: 700;
            padding: 13px 28px;
            border-radius: 26px;
            font-size: 0.95rem;
            transition: all var(--transition);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }
        .btn-cta:hover {
            background: #f0b820;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1d21;
            color: #c5c9ce;
            padding: clamp(36px, 5vw, 52px) 0 0;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.2px;
        }
        .footer-brand {
            color: #4ade80;
            font-weight: 800;
            font-size: 1.05rem;
        }
        .footer-col p {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-col ul li {
            margin-bottom: 7px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #4ade80;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 0;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            transition: color var(--transition);
        }
        .footer-bottom-links a:hover {
            color: #4ade80;
        }
        @media (max-width: 520px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom-links {
                justify-content: center;
            }
        }

        /* ========== UTILITY ========== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        @media (max-width: 768px) {
            .data-table {
                font-size: 0.82rem;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 9px 10px;
            }
            .dash-card .dash-value {
                font-size: 1.6rem;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #1a5632;
            --primary-light: #248046;
            --primary-dark: #123d22;
            --accent: #d4a853;
            --accent-light: #e8c97a;
            --accent-dark: #b8923a;
            --bg: #fafaf8;
            --bg-white: #ffffff;
            --bg-warm: #f5f3ee;
            --text: #1c1c1c;
            --text-secondary: #4a4a4a;
            --text-light: #6b6b6b;
            --text-muted: #999999;
            --border: #e8e5df;
            --border-light: #f0eee8;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.09);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-xl: 28px;
            --radius-full: 50%;
            --spacing-xs: 0.5rem;
            --spacing-sm: 0.875rem;
            --spacing-md: 1.25rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4.5rem;
            --spacing-3xl: 6rem;
            --max-width: 1240px;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Serif SC', 'STSong', serif;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition-smooth);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            gap: var(--spacing-md);
            flex-wrap: wrap;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.1rem;
            letter-spacing: -1px;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: 0.02em;
            white-space: nowrap;
            font-family: var(--font-heading);
        }

        .logo-text .logo-accent {
            color: var(--accent);
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            flex-wrap: wrap;
        }

        .main-nav a {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 24px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-smooth);
            white-space: nowrap;
            position: relative;
        }

        .main-nav a:hover {
            color: var(--primary);
            background: rgba(26, 86, 50, 0.05);
        }

        .main-nav a.active {
            color: var(--bg-white);
            background: var(--primary);
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(26, 86, 50, 0.25);
        }

        .main-nav a.active:hover {
            background: var(--primary-light);
            color: var(--bg-white);
        }

        .nav-search-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .nav-search {
            display: flex;
            align-items: center;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 0.45rem 0.9rem;
            gap: 0.5rem;
            transition: all var(--transition-smooth);
        }

        .nav-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.08);
            background: var(--bg-white);
        }

        .nav-search input {
            border: none;
            background: transparent;
            font-size: 0.9rem;
            color: var(--text);
            width: 140px;
        }

        .nav-search input::placeholder {
            color: var(--text-muted);
        }

        .search-icon {
            color: var(--text-light);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .btn-cta-nav {
            background: var(--accent);
            color: #1c1c1c;
            padding: 0.5rem 1.25rem;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: 0 2px 8px rgba(212, 168, 83, 0.3);
        }

        .btn-cta-nav:hover {
            background: var(--accent-light);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(212, 168, 83, 0.4);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            font-size: 1.6rem;
            color: var(--text);
            padding: 0.4rem;
            line-height: 1;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: var(--bg-warm);
        }

        /* ========== CATEGORY BANNER ========== */
        .category-banner {
            position: relative;
            background: linear-gradient(135deg, #1a3d28 0%, #1a5632 35%, #1e6b3f 70%, #1a3d28 100%);
            padding: var(--spacing-3xl) 0 var(--spacing-2xl);
            overflow: hidden;
            min-height: 340px;
            display: flex;
            align-items: center;
        }

        .category-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.2;
            z-index: 0;
        }

        .category-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(26, 61, 40, 0.95) 0%, rgba(26, 61, 40, 0.5) 50%, transparent 100%);
            z-index: 1;
        }

        .category-banner .container {
            position: relative;
            z-index: 2;
        }

        .banner-badge {
            display: inline-block;
            background: var(--accent);
            color: #1c1c1c;
            padding: 0.4rem 1.1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            margin-bottom: var(--spacing-md);
        }

        .banner-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
            letter-spacing: 0.03em;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .banner-title .highlight {
            color: var(--accent-light);
            position: relative;
        }

        .banner-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            line-height: 1.6;
        }

        .banner-stats-row {
            display: flex;
            gap: var(--spacing-xl);
            margin-top: var(--spacing-lg);
            flex-wrap: wrap;
        }

        .banner-stat-item {
            text-align: center;
        }

        .banner-stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-light);
            line-height: 1;
        }

        .banner-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.3rem;
        }

        /* ========== MAIN CONTENT ========== */
        .site-main {
            flex: 1;
            padding-bottom: var(--spacing-3xl);
        }

        .section {
            padding: var(--spacing-2xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-xl);
        }

        .section-tag {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            background: rgba(26, 86, 50, 0.08);
            padding: 0.3rem 0.9rem;
            border-radius: 16px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
            letter-spacing: 0.02em;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ========== FEATURED STAR ========== */
        .featured-star-section {
            background: var(--bg-white);
            padding: var(--spacing-2xl) 0;
        }

        .featured-star-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
        }

        .featured-star-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: var(--shadow-lg);
        }

        .featured-star-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .featured-star-image:hover img {
            transform: scale(1.04);
        }

        .featured-star-image .image-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent);
            color: #1c1c1c;
            padding: 0.35rem 0.9rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 0.8rem;
            z-index: 2;
        }

        .featured-star-content h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.75rem;
        }

        .featured-star-content .star-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .star-tag {
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.3rem 0.75rem;
            border-radius: 14px;
            background: rgba(26, 86, 50, 0.07);
            color: var(--primary);
            border: 1px solid rgba(26, 86, 50, 0.12);
        }

        .featured-star-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .featured-star-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin: 1.25rem 0;
        }

        .mini-stat {
            background: var(--bg-warm);
            border-radius: var(--radius-sm);
            padding: 0.9rem 0.7rem;
            text-align: center;
            border: 1px solid var(--border-light);
        }

        .mini-stat .stat-val {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .mini-stat .stat-lbl {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-top: 0.25rem;
        }

        .btn-outline-primary {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            border: 2px solid var(--primary);
            border-radius: 24px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition-smooth);
            background: transparent;
        }

        .btn-outline-primary:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(26, 86, 50, 0.25);
        }

        /* ========== STAR CARDS GRID ========== */
        .star-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
        }

        .star-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
        }

        .star-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .star-card-image {
            aspect-ratio: 3/2;
            overflow: hidden;
            position: relative;
        }

        .star-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .star-card:hover .star-card-image img {
            transform: scale(1.06);
        }

        .star-card-image .card-rank {
            position: absolute;
            bottom: 0.75rem;
            right: 0.75rem;
            background: rgba(0, 0, 0, 0.7);
            color: var(--accent-light);
            padding: 0.3rem 0.7rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.8rem;
            z-index: 2;
        }

        .star-card-body {
            padding: 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .star-card-body h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.4rem;
            font-family: var(--font-heading);
        }

        .star-card-body .card-position {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .star-card-body p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 1rem;
        }

        .star-card-body .card-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 1rem;
            border-top: 1px solid var(--border-light);
            padding-top: 0.75rem;
        }

        /* ========== LEGEND STORY ========== */
        .legend-section {
            background: var(--bg-warm);
            padding: var(--spacing-2xl) 0;
        }

        .legend-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
        }

        .legend-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            transition: all var(--transition-smooth);
        }

        .legend-card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
        }

        .legend-card-image {
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .legend-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }

        .legend-card:hover .legend-card-image img {
            transform: scale(1.05);
        }

        .legend-card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .legend-card-body h4 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .legend-card-body p {
            color: var(--text-secondary);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .legend-card-body .legend-era {
            font-size: 0.8rem;
            color: var(--accent-dark);
            font-weight: 600;
        }

        /* ========== RISING STARS ========== */
        .rising-section {
            padding: var(--spacing-2xl) 0;
            background: var(--bg-white);
        }

        .rising-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-md);
        }

        .rising-item {
            display: flex;
            gap: 1rem;
            background: var(--bg-warm);
            border-radius: var(--radius-md);
            padding: 1.25rem;
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            align-items: center;
        }

        .rising-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
            border-color: transparent;
        }

        .rising-item-thumb {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
        }

        .rising-item-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rising-item-info h5 {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text);
            margin-bottom: 0.25rem;
        }

        .rising-item-info .rising-club {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .rising-item-info p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .rising-progress {
            margin-top: 0.4rem;
            height: 4px;
            background: var(--border);
            border-radius: 2px;
            overflow: hidden;
        }

        .rising-progress-fill {
            height: 100%;
            background: var(--accent);
            border-radius: 2px;
            transition: width var(--transition-smooth);
        }

        /* ========== COMPARISON TABLE ========== */
        .comparison-section {
            padding: var(--spacing-2xl) 0;
            background: var(--bg-warm);
        }

        .comparison-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            background: var(--bg-white);
            border: 1px solid var(--border-light);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 0.92rem;
        }

        .comparison-table thead th {
            background: var(--primary);
            color: #fff;
            padding: 1rem 1.25rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .comparison-table thead th:first-child {
            border-radius: var(--radius-lg) 0 0 0;
        }

        .comparison-table thead th:last-child {
            border-radius: 0 var(--radius-lg) 0 0;
        }

        .comparison-table tbody td {
            padding: 0.9rem 1.25rem;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
        }

        .comparison-table tbody tr {
            transition: background var(--transition-fast);
        }

        .comparison-table tbody tr:hover {
            background: rgba(26, 86, 50, 0.03);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .player-name-col {
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .player-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }

        .dot-green {
            background: #1a5632;
        }
        .dot-gold {
            background: #d4a853;
        }
        .dot-blue {
            background: #3b82f6;
        }
        .dot-red {
            background: #ef4444;
        }
        .dot-purple {
            background: #8b5cf6;
        }

        .highlight-cell {
            font-weight: 700;
            color: var(--primary);
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: var(--spacing-2xl) 0;
            background: var(--bg-white);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            background: var(--bg-white);
        }

        .faq-item:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.1rem 1.5rem;
            background: transparent;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            flex-shrink: 0;
            font-size: 1.3rem;
            color: var(--primary);
            transition: transform var(--transition-smooth);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            background: var(--bg-warm);
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.2rem;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.93rem;
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: var(--spacing-2xl) 0;
            background: linear-gradient(135deg, #1a5632 0%, #1e6b3f 50%, #1a5632 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            z-index: 0;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.75rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin: 0 auto 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .btn-cta-large {
            display: inline-block;
            background: var(--accent);
            color: #1c1c1c;
            padding: 0.85rem 2.5rem;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all var(--transition-smooth);
            box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
            letter-spacing: 0.03em;
        }

        .btn-cta-large:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(212, 168, 83, 0.5);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1d1f;
            color: rgba(255, 255, 255, 0.75);
            padding: var(--spacing-2xl) 0 var(--spacing-lg);
            font-size: 0.9rem;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: var(--spacing-xl);
            margin-bottom: var(--spacing-xl);
        }

        .footer-col h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-brand {
            color: var(--accent-light);
            font-weight: 700;
        }

        .footer-col p {
            line-height: 1.7;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-col ul li {
            margin-bottom: 0.5rem;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--accent-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-md);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.78rem;
            white-space: nowrap;
        }

        .footer-bottom-links a:hover {
            color: var(--accent-light);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .star-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .featured-star-grid {
                grid-template-columns: 1fr;
            }
            .legend-grid {
                grid-template-columns: 1fr;
            }
            .rising-list {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
                gap: 0.75rem;
            }
            .main-nav {
                order: 3;
                width: 100%;
                overflow-x: auto;
                flex-wrap: nowrap;
                gap: 0.25rem;
                padding-bottom: 0.4rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .main-nav::-webkit-scrollbar {
                display: none;
            }
            .main-nav a {
                padding: 0.4rem 0.75rem;
                font-size: 0.85rem;
                border-radius: 20px;
            }
            .nav-search-wrap {
                order: 2;
            }
            .nav-search input {
                width: 100px;
            }
            .star-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
            .banner-stats-row {
                gap: 1.5rem;
            }
            .banner-stat-num {
                font-size: 1.6rem;
            }
            .featured-star-stats {
                grid-template-columns: repeat(3, 1fr);
            }
            .rising-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .container {
                padding: 0 var(--spacing-md);
            }
            .category-banner {
                min-height: 260px;
                padding: var(--spacing-xl) 0;
            }
            .comparison-table-wrap {
                border-radius: var(--radius-md);
            }
            .legend-card-body {
                padding: 1rem;
            }
        }

        @media (max-width: 520px) {
            .star-cards-grid {
                grid-template-columns: 1fr;
            }
            .banner-title {
                font-size: 1.6rem;
            }
            .banner-desc {
                font-size: 0.9rem;
            }
            .banner-stats-row {
                gap: 1rem;
            }
            .banner-stat-num {
                font-size: 1.3rem;
            }
            .featured-star-content h3 {
                font-size: 1.4rem;
            }
            .featured-star-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.4rem;
            }
            .mini-stat {
                padding: 0.6rem 0.4rem;
            }
            .mini-stat .stat-val {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .rising-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .rising-item-thumb {
                width: 60px;
                height: 60px;
            }
            .btn-cta-nav {
                font-size: 0.8rem;
                padding: 0.4rem 0.9rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
