/* roulang page: index */
:root {
            --color-primary: #0f3d2e;
            --color-primary-light: #1a5e45;
            --color-accent: #00a86b;
            --color-accent-glow: #00d68f;
            --color-warm: #f5a623;
            --color-warm-light: #ffc107;
            --color-bg: #f7f8f9;
            --color-surface: #ffffff;
            --color-surface-alt: #f0f2f4;
            --color-text: #1a1a2e;
            --color-text-secondary: #5a5f6b;
            --color-text-muted: #8b909a;
            --color-border: #e2e5e9;
            --color-border-light: #eef0f3;
            --color-danger: #e53935;
            --color-success: #2e7d32;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.09);
            --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 22px 56px rgba(0, 0, 0, 0.16);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --font-display: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --nav-height: 64px;
            --container-max: 1260px;
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.65;
            font-size: 16px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }
        input {
            font-family: inherit;
            font-size: inherit;
        }
        ul {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            font-weight: 700;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            height: var(--nav-height);
            box-shadow: var(--shadow-xs);
            transition: box-shadow var(--transition-smooth);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            height: var(--nav-height);
            gap: 8px;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--color-primary);
            white-space: nowrap;
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }
        .nav-logo i {
            font-size: 1.55rem;
            color: var(--color-accent);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            flex: 1;
            justify-content: center;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 8px;
        }
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 22px;
            font-size: 0.93rem;
            font-weight: 600;
            color: var(--color-text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.01em;
        }
        .nav-links a:hover {
            color: var(--color-primary);
            background: rgba(15, 61, 46, 0.04);
        }
        .nav-links a.active {
            color: var(--color-accent);
            background: rgba(0, 168, 107, 0.08);
            font-weight: 700;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 3px;
            background: var(--color-accent);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .nav-search-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }
        .nav-search-wrap input {
            width: 190px;
            padding: 9px 38px 9px 16px;
            border-radius: 24px;
            border: 1.5px solid var(--color-border);
            background: var(--color-bg);
            font-size: 0.9rem;
            color: var(--color-text);
            transition: all var(--transition-fast);
            outline: none;
        }
        .nav-search-wrap input:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.08);
            width: 230px;
        }
        .nav-search-wrap button {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--color-accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: background var(--transition-fast);
        }
        .nav-search-wrap button:hover {
            background: var(--color-primary);
        }
        .btn-nav-login {
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-primary);
            border: 1.5px solid var(--color-border);
            background: transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-nav-login:hover {
            border-color: var(--color-primary);
            background: rgba(15, 61, 46, 0.03);
        }
        .btn-nav-cta {
            padding: 9px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            background: var(--color-accent);
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.01em;
        }
        .btn-nav-cta:hover {
            background: var(--color-primary-light);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--color-text);
            padding: 6px;
            border-radius: 8px;
        }
        .mobile-menu-toggle:hover {
            background: var(--color-surface-alt);
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            background: linear-gradient(160deg, #0a2a1e 0%, #0f3d2e 35%, #0d3325 100%);
            overflow: hidden;
            padding: 60px 0;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 0;
            mix-blend-mode: soft-light;
        }
        .hero-overlay-pattern {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: radial-gradient(ellipse at 40% 50%, rgba(0, 168, 107, 0.13) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 7px 16px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #c8f7e0;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }
        .hero-badge i {
            color: var(--color-warm-light);
            font-size: 0.8rem;
        }
        .hero-content h1 {
            font-family: var(--font-display);
            font-size: 2.9rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        .hero-content h1 span {
            color: var(--color-accent-glow);
        }
        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 28px;
            line-height: 1.6;
            max-width: 520px;
        }
        .hero-search-large {
            display: flex;
            gap: 0;
            max-width: 500px;
            background: #fff;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .hero-search-large input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            outline: none;
            font-size: 1rem;
            color: var(--color-text);
            background: transparent;
        }
        .hero-search-large input::placeholder {
            color: var(--color-text-muted);
        }
        .hero-search-large button {
            padding: 15px 28px;
            background: var(--color-accent);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: background var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .hero-search-large button:hover {
            background: var(--color-primary-light);
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .hero-tags a {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all var(--transition-fast);
        }
        .hero-tags a:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.35);
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: 60px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-header h2 {
            font-size: 1.85rem;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }
        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            max-width: 500px;
            margin: 0 auto;
        }
        .section-accent-bar {
            width: 44px;
            height: 4px;
            border-radius: 4px;
            background: var(--color-accent);
            margin: 12px auto 0;
        }

        /* ========== CATEGORY GRID ========== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 18px;
        }
        .category-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--color-accent);
        }
        .category-card-img {
            height: 130px;
            overflow: hidden;
            position: relative;
        }
        .category-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .category-card:hover .category-card-img img {
            transform: scale(1.06);
        }
        .category-card-body {
            padding: 16px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .category-card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text);
        }
        .category-card-body .cat-count {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }
        .category-card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 168, 107, 0.08);
            color: var(--color-accent);
            font-size: 1.1rem;
            margin: 0 auto 8px;
        }

        /* ========== NEWS LIST ========== */
        .news-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .news-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 20px 22px;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .news-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--color-border);
        }
        .news-item-img {
            width: 100px;
            height: 75px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--color-surface-alt);
        }
        .news-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-item-content {
            flex: 1;
            min-width: 0;
        }
        .news-item-date {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 4px;
        }
        .news-item-content h3 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .news-item-content p {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-read-more {
            display: inline-block;
            margin-top: 6px;
            font-size: 0.83rem;
            font-weight: 600;
            color: var(--color-accent);
            transition: color var(--transition-fast);
        }
        .news-read-more:hover {
            color: var(--color-primary);
        }

        /* ========== MATCH CARDS ========== */
        .match-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .match-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            text-align: center;
        }
        .match-card:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--color-accent);
        }
        .match-league {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 600;
            background: rgba(15, 61, 46, 0.06);
            color: var(--color-primary);
            margin-bottom: 12px;
        }
        .match-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--color-text);
            margin-bottom: 8px;
        }
        .match-teams .vs {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            font-weight: 600;
        }
        .match-info {
            font-size: 0.83rem;
            color: var(--color-text-secondary);
            margin-bottom: 12px;
        }
        .match-status {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 18px;
            font-size: 0.8rem;
            font-weight: 700;
            background: var(--color-accent);
            color: #fff;
        }
        .match-status.upcoming {
            background: var(--color-warm);
            color: #1a1a2e;
        }
        .match-status.live {
            background: var(--color-danger);
            animation: pulse-live 1.8s ease-in-out infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(229, 57, 53, 0);
            }
        }

        /* ========== FEATURED ========== */
        .featured-block {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 28px;
            align-items: center;
            background: var(--color-surface);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
        }
        .featured-img {
            height: 340px;
            overflow: hidden;
            border-radius: var(--radius-xl) 0 0 var(--radius-xl);
        }
        .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .featured-block:hover .featured-img img {
            transform: scale(1.04);
        }
        .featured-text {
            padding: 28px 32px 28px 8px;
        }
        .featured-tag {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 700;
            background: rgba(245, 166, 35, 0.12);
            color: #c17d0a;
            margin-bottom: 12px;
        }
        .featured-text h3 {
            font-size: 1.45rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--color-text);
        }
        .featured-text p {
            font-size: 0.93rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 22px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--color-accent);
            border: 2px solid var(--color-accent);
            background: transparent;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .btn-outline:hover {
            background: var(--color-accent);
            color: #fff;
        }

        /* ========== STATS DASHBOARD ========== */
        .stats-dashboard {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        .stat-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(0, 168, 107, 0.05);
            z-index: 0;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .stat-icon {
            font-size: 2rem;
            color: var(--color-accent);
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--color-text);
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
        }
        .stat-label {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            margin-top: 4px;
            position: relative;
            z-index: 1;
        }
        .stat-trend {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            margin-top: 6px;
            position: relative;
            z-index: 1;
        }
        .stat-trend.up {
            background: rgba(46, 125, 50, 0.1);
            color: #2e7d32;
        }
        .stat-trend.down {
            background: rgba(229, 57, 53, 0.08);
            color: #c62828;
        }

        /* ========== TRANSFER LIST ========== */
        .transfer-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .transfer-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--color-border-light);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-fast);
        }
        .transfer-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--color-accent);
        }
        .transfer-arrow {
            font-size: 1.1rem;
            color: var(--color-accent);
            flex-shrink: 0;
        }
        .transfer-info {
            flex: 1;
            min-width: 0;
        }
        .transfer-info .player-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-text);
        }
        .transfer-info .transfer-detail {
            font-size: 0.82rem;
            color: var(--color-text-secondary);
            margin-top: 2px;
        }
        .transfer-badge {
            flex-shrink: 0;
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 700;
            background: rgba(245, 166, 35, 0.12);
            color: #a0680a;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--color-border);
        }
        .faq-question {
            width: 100%;
            padding: 18px 22px;
            text-align: left;
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            cursor: pointer;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: var(--color-surface-alt);
        }
        .faq-question i {
            transition: transform var(--transition-fast);
            color: var(--color-text-muted);
            font-size: 0.85rem;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--color-accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
            padding: 0 22px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }
        .faq-answer p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.65;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(150deg, #0f3d2e 0%, #0a2a1e 100%);
            border-radius: var(--radius-xl);
            padding: 52px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 60%, rgba(0, 168, 107, 0.25) 0%, transparent 55%);
            z-index: 1;
        }
        .cta-inner {
            position: relative;
            z-index: 2;
        }
        .cta-inner h2 {
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .cta-inner p {
            font-size: 1rem;
            opacity: 0.85;
            margin-bottom: 24px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 34px;
            border-radius: 28px;
            font-size: 1.05rem;
            font-weight: 700;
            background: var(--color-warm);
            color: #1a1a2e;
            transition: all var(--transition-fast);
            cursor: pointer;
            letter-spacing: 0.01em;
        }
        .btn-cta-large:hover {
            background: #ffb833;
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1a2e;
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 28px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 36px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.88rem;
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--color-accent-glow);
        }
        .footer-brand {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-brand-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            max-width: 280px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 22px;
            text-align: center;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 20px;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        .footer-bottom .sep {
            color: rgba(255, 255, 255, 0.2);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .match-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-dashboard {
                grid-template-columns: repeat(2, 1fr);
            }
            .featured-block {
                grid-template-columns: 1fr;
            }
            .featured-img {
                border-radius: var(--radius-xl) var(--radius-xl) 0 0;
            }
            .featured-text {
                padding: 24px;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .nav-links a {
                padding: 8px 10px;
                font-size: 0.85rem;
            }
            .nav-search-wrap input {
                width: 140px;
            }
            .nav-search-wrap input:focus {
                width: 170px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .transfer-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--color-surface);
                border-bottom: 2px solid var(--color-border);
                box-shadow: var(--shadow-lg);
                padding: 12px 16px;
                gap: 4px;
                z-index: 999;
            }
            .nav-links.mobile-open a {
                display: block;
                padding: 12px 16px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
            }
            .nav-search-wrap {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .btn-nav-login {
                display: none;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .match-cards {
                grid-template-columns: 1fr;
            }
            .stats-dashboard {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .hero-content h1 {
                font-size: 1.75rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-section {
                min-height: 440px;
                padding: 40px 0;
            }
            .hero-search-large {
                max-width: 100%;
            }
            .hero-search-large input {
                padding: 13px 16px;
            }
            .hero-search-large button {
                padding: 13px 20px;
                font-size: 0.9rem;
            }
            .section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .featured-img {
                height: 220px;
            }
            .cta-section {
                padding: 36px 20px;
            }
            .cta-inner h2 {
                font-size: 1.35rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 4px;
                text-align: center;
            }
            .btn-nav-cta {
                font-size: 0.8rem;
                padding: 7px 14px;
            }
        }
        @media (max-width: 520px) {
            .category-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .category-card-img {
                height: 100px;
            }
            .category-card-body h3 {
                font-size: 0.9rem;
            }
            .stats-dashboard {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-value {
                font-size: 1.6rem;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .hero-content h1 {
                font-size: 1.5rem;
            }
            .nav-inner {
                padding: 0 12px;
            }
            .container {
                padding: 0 14px;
            }
            .news-item {
                flex-direction: column;
                gap: 10px;
            }
            .news-item-img {
                width: 100%;
                height: 140px;
            }
            .featured-img {
                height: 180px;
            }
            .match-teams {
                font-size: 1rem;
                gap: 10px;
            }
        }

/* roulang page: category2 */
:root {
            --color-brand-500: #1a6fb5;
            --color-brand-600: #155e96;
            --color-brand-700: #104b78;
            --color-brand-800: #0c3a5e;
            --color-accent-500: #ea580c;
            --color-accent-600: #c2410c;
            --color-bg-dark: #0f1013;
            --color-bg-card: #1a1b1f;
            --color-bg-card-hover: #222328;
            --color-text-primary: #f1f3f5;
            --color-text-secondary: #b0b4ba;
            --color-text-muted: #757980;
            --color-border: #2a2c32;
            --color-border-light: #3a3d44;
            --radius-md: 0.625rem;
            --radius-lg: 0.875rem;
            --radius-xl: 1.125rem;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.35);
            --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.45);
            --shadow-glow: 0 0 20px rgba(26, 111, 181, 0.25);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.65;
            color: var(--color-text-primary);
            background-color: var(--color-bg-dark);
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        @media (min-width: 640px) {
            .container {
                padding: 0 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 2rem;
            }
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 16, 19, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            transition: all var(--transition-normal);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 62px;
            gap: 1rem;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--color-brand-500), #2196F3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo-text span {
            color: #60a5fa;
        }

        .nav-links {
            display: none;
            gap: 0.15rem;
            align-items: center;
            flex-wrap: nowrap;
        }

        @media (min-width: 1024px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.85rem;
            border-radius: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-links a.active {
            color: #fff;
            background: rgba(26, 111, 181, 0.2);
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2.5px;
            background: var(--color-brand-500);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }

        .btn-search {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.06);
            color: var(--color-text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            font-size: 1rem;
        }
        .btn-search:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
        }

        .btn-signin {
            padding: 0.45rem 1.1rem;
            border-radius: 0.5rem;
            border: 1px solid var(--color-border-light);
            background: transparent;
            color: #fff;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-signin:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        .btn-cta-header {
            padding: 0.45rem 1.2rem;
            border-radius: 0.5rem;
            border: none;
            background: var(--color-brand-500);
            color: #fff;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-cta-header:hover {
            background: var(--color-brand-600);
            box-shadow: var(--shadow-glow);
        }

        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 0.5rem;
            border: none;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            cursor: pointer;
            font-size: 1.25rem;
            transition: all var(--transition-fast);
        }
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        @media (min-width: 1024px) {
            .mobile-menu-toggle {
                display: none;
            }
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 62px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 16, 19, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            padding: 1.25rem;
            gap: 0.35rem;
            overflow-y: auto;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        @media (min-width: 1024px) {
            .mobile-nav-panel {
                display: none !important;
            }
        }

        .mobile-nav-panel a {
            display: block;
            padding: 0.85rem 1.1rem;
            border-radius: 0.6rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.active {
            color: #fff;
            background: rgba(26, 111, 181, 0.15);
            border-color: rgba(26, 111, 181, 0.3);
        }

        .page-hero {
            position: relative;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 35%;
            background-repeat: no-repeat;
            padding: 3.5rem 0;
            display: flex;
            align-items: center;
            min-height: 320px;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 16, 19, 0.65) 0%, rgba(15, 16, 19, 0.82) 60%, rgba(15, 16, 19, 0.95) 100%);
            z-index: 1;
        }
        .page-hero .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }
        .page-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 0.9rem;
            border-radius: 999px;
            background: rgba(234, 88, 12, 0.25);
            color: #fb923c;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(234, 88, 12, 0.35);
        }
        .page-hero .hero-badge .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
            animation: pulse-dot 1.4s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.45;
                transform: scale(1.6);
            }
        }
        .page-hero h1 {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin: 0 0 0.75rem 0;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }
        .page-hero .hero-sub {
            font-size: 1.05rem;
            color: #c8cdd4;
            margin: 0;
            line-height: 1.6;
        }

        @media (min-width: 640px) {
            .page-hero {
                padding: 4.5rem 0;
                min-height: 360px;
            }
            .page-hero h1 {
                font-size: 2.5rem;
            }
            .page-hero .hero-sub {
                font-size: 1.1rem;
            }
        }
        @media (min-width: 1024px) {
            .page-hero {
                padding: 5.5rem 0;
                min-height: 400px;
            }
            .page-hero h1 {
                font-size: 2.8rem;
            }
        }

        .section {
            padding: 3rem 0;
        }
        @media (min-width: 768px) {
            .section {
                padding: 4rem 0;
            }
        }
        @media (min-width: 1024px) {
            .section {
                padding: 5rem 0;
            }
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.4rem 0;
            letter-spacing: 0.01em;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            margin: 0 0 2rem 0;
            line-height: 1.5;
        }
        @media (min-width: 640px) {
            .section-title {
                font-size: 1.75rem;
            }
            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }
        }

        .live-match-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-xl);
            padding: 1.25rem 1.1rem;
            border: 1px solid var(--color-border);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            position: relative;
            overflow: hidden;
        }
        .live-match-card:hover {
            border-color: var(--color-brand-500);
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
            background: var(--color-bg-card-hover);
        }
        .live-match-card .live-tag {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            background: #dc2626;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            animation: pulse-tag 2s ease-in-out infinite;
        }
        @keyframes pulse-tag {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
            }
        }
        .live-match-card .match-league {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .live-match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.6rem;
        }
        .live-match-card .team-name {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            text-align: center;
            flex: 1;
        }
        .live-match-card .match-score {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            padding: 0.25rem 0.8rem;
            background: rgba(26, 111, 181, 0.2);
            border-radius: 0.5rem;
            letter-spacing: 0.06em;
            white-space: nowrap;
        }
        .live-match-card .match-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .live-match-card .match-time {
            color: #fb923c;
            font-weight: 600;
        }

        @media (min-width: 640px) {
            .live-match-card {
                padding: 1.5rem 1.35rem;
            }
            .live-match-card .team-name {
                font-size: 1.1rem;
            }
            .live-match-card .match-score {
                font-size: 1.8rem;
                padding: 0.3rem 1rem;
            }
        }

        .schedule-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 1.1rem 1rem;
            border: 1px solid var(--color-border);
            transition: all var(--transition-normal);
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .schedule-card:hover {
            border-color: var(--color-border-light);
            background: var(--color-bg-card-hover);
        }
        .schedule-card .sched-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 52px;
            flex-shrink: 0;
        }
        .schedule-card .sched-date .day {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .schedule-card .sched-date .month {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }
        .schedule-card .sched-info {
            flex: 1;
            min-width: 0;
        }
        .schedule-card .sched-teams {
            font-weight: 600;
            color: #fff;
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }
        .schedule-card .sched-league {
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }
        .schedule-card .sched-time {
            font-weight: 600;
            color: #60a5fa;
            font-size: 0.85rem;
            white-space: nowrap;
        }

        .channel-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 1.25rem;
            border: 1px solid var(--color-border);
            text-align: center;
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        .channel-card:hover {
            border-color: var(--color-brand-500);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .channel-card .channel-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-brand-500), #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            color: #fff;
            font-size: 1.3rem;
        }
        .channel-card .channel-name {
            font-weight: 700;
            color: #fff;
            font-size: 0.95rem;
        }
        .channel-card .channel-quality {
            font-size: 0.75rem;
            color: #22c55e;
            font-weight: 500;
            margin-top: 0.3rem;
        }

        .highlight-card {
            background: var(--color-bg-card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--color-border);
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        .highlight-card:hover {
            border-color: var(--color-brand-500);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .highlight-card .hl-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .highlight-card .hl-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .highlight-card:hover .hl-thumb img {
            transform: scale(1.06);
        }
        .highlight-card .hl-play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
        }
        .highlight-card .hl-play-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-brand-700);
            font-size: 1.1rem;
            transition: all var(--transition-fast);
        }
        .highlight-card:hover .hl-play-btn {
            background: #fff;
            transform: scale(1.1);
            box-shadow: 0 0 24px rgba(255, 255, 255, 0.3);
        }
        .highlight-card .hl-body {
            padding: 0.9rem 1rem;
        }
        .highlight-card .hl-title {
            font-weight: 600;
            color: #fff;
            font-size: 0.9rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .highlight-card .hl-meta {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-top: 0.4rem;
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        @media (min-width: 640px) {
            .stats-bar {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .stat-item {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            padding: 1.25rem;
            border: 1px solid var(--color-border);
            text-align: center;
            transition: all var(--transition-normal);
        }
        .stat-item:hover {
            border-color: var(--color-brand-500);
            box-shadow: var(--shadow-sm);
        }
        .stat-item .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 0.4rem;
        }
        .stat-item .stat-label {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .faq-item {
            background: var(--color-bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            overflow: hidden;
            transition: all var(--transition-normal);
        }
        .faq-item:hover {
            border-color: var(--color-border-light);
        }
        .faq-question {
            width: 100%;
            padding: 1.1rem 1.25rem;
            background: none;
            border: none;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transition: all var(--transition-fast);
            line-height: 1.5;
        }
        .faq-question:hover {
            color: #60a5fa;
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            font-size: 0.85rem;
            color: var(--color-text-muted);
            transition: transform var(--transition-normal);
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: #60a5fa;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
        }
        .faq-answer-inner {
            padding: 0 1.25rem 1.1rem 1.25rem;
            color: var(--color-text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--color-brand-800) 0%, var(--color-bg-dark) 100%);
            border-radius: var(--radius-xl);
            padding: 2.5rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(26, 111, 181, 0.3);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(26, 111, 181, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        @media (min-width: 640px) {
            .cta-section {
                padding: 3rem 2rem;
            }
        }
        .cta-section h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.6rem;
            position: relative;
        }
        .cta-section p {
            color: var(--color-text-secondary);
            margin: 0 0 1.5rem;
            font-size: 0.95rem;
            position: relative;
        }
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.7rem 1.8rem;
            border-radius: 0.6rem;
            border: none;
            background: var(--color-accent-500);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.02em;
        }
        .btn-cta:hover {
            background: var(--color-accent-600);
            box-shadow: 0 0 24px rgba(234, 88, 12, 0.4);
            transform: translateY(-1px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.65rem 1.6rem;
            border-radius: 0.6rem;
            border: 1px solid var(--color-border-light);
            background: transparent;
            color: #fff;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .btn-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        .site-footer {
            background: #0c0d10;
            border-top: 1px solid var(--color-border);
            padding: 2.5rem 0 1.25rem;
            margin-top: 2rem;
        }
        @media (min-width: 768px) {
            .site-footer {
                padding: 3.5rem 0 1.5rem;
                margin-top: 3rem;
            }
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
                gap: 2.5rem;
            }
        }
        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li,
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            padding: 0.2rem 0;
            cursor: pointer;
            transition: color var(--transition-fast);
            line-height: 1.8;
        }
        .footer-col ul li:hover,
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-brand {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.5rem;
        }
        .footer-brand-desc {
            font-size: 0.82rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin: 0;
        }
        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 1.1rem;
            font-size: 0.75rem;
            color: var(--color-text-muted);
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.3rem 0.6rem;
            line-height: 1.8;
        }
        .footer-bottom .sep {
            color: var(--color-border-light);
            user-select: none;
        }
        .footer-bottom a {
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        @media (min-width: 640px) {
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        @media (min-width: 768px) {
            .grid-4 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 639px) {
            .page-hero h1 {
                font-size: 1.6rem;
            }
            .page-hero .hero-sub {
                font-size: 0.9rem;
            }
            .section {
                padding: 2.25rem 0;
            }
            .section-title {
                font-size: 1.25rem;
            }
            .live-match-card .team-name {
                font-size: 0.85rem;
            }
            .live-match-card .match-score {
                font-size: 1.3rem;
                padding: 0.2rem 0.55rem;
            }
            .stat-item .stat-value {
                font-size: 1.5rem;
            }
            .cta-section {
                padding: 1.75rem 1rem;
            }
            .cta-section h3 {
                font-size: 1.15rem;
            }
        }

/* roulang page: category1 */
:root {
            --color-primary: #0d7c3b;
            --color-primary-dark: #065a28;
            --color-primary-light: #e8f5ed;
            --color-accent: #d4940e;
            --color-accent-light: #fef7e6;
            --color-bg: #f6f9f7;
            --color-surface: #ffffff;
            --color-text: #1a1a1a;
            --color-text-secondary: #5f6b7a;
            --color-text-muted: #8895a7;
            --color-border: #e2e8f0;
            --color-border-light: #edf2f7;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 2px 12px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 6px 24px rgba(0, 0, 0, 0.10);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.13);
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --font-stack: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --max-width: 1240px;
            --header-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 100;
            height: var(--header-height);
            box-shadow: var(--shadow-sm);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 20px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1.28rem;
            color: var(--color-primary);
            white-space: nowrap;
            letter-spacing: -0.01em;
            flex-shrink: 0;
        }

        .header-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--color-primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }

        .nav-links a {
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            font-size: 0.94rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            background: var(--color-primary-light);
        }

        .nav-links a.active {
            color: var(--color-primary);
            background: var(--color-primary-light);
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 15px;
            right: 15px;
            height: 3px;
            background: var(--color-primary);
            border-radius: 3px 3px 0 0;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-search {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid var(--color-border);
            background: var(--color-surface);
        }

        .btn-search:hover {
            color: var(--color-primary);
            border-color: var(--color-primary);
            background: var(--color-primary-light);
        }

        .btn-subscribe {
            padding: 9px 20px;
            border-radius: 20px;
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            border: 2px solid var(--color-primary);
        }

        .btn-subscribe:hover {
            background: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        .btn-subscribe:active {
            transform: translateY(0);
            box-shadow: var(--shadow-sm);
        }

        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            border: 1px solid var(--color-border);
            background: var(--color-surface);
            z-index: 110;
        }

        .mobile-menu-btn span {
            width: 20px;
            height: 2px;
            background: var(--color-text);
            border-radius: 1px;
            transition: all var(--transition-fast);
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ========== CATEGORY BANNER ========== */
        .cat-banner {
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 60px 0;
            min-height: 260px;
            display: flex;
            align-items: center;
        }

        .cat-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(6, 90, 40, 0.88) 0%, rgba(13, 124, 59, 0.78) 40%, rgba(0, 0, 0, 0.55) 100%);
            z-index: 1;
        }

        .cat-banner .container {
            position: relative;
            z-index: 2;
        }

        .cat-banner-content {
            max-width: 700px;
        }

        .cat-banner .cat-label {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            background: var(--color-accent);
            color: #fff;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }

        .cat-banner h1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }

        .cat-banner .cat-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.6;
        }

        /* ========== MAIN CONTENT AREA ========== */
        .main-content {
            padding: 40px 0 50px;
            flex: 1;
        }

        .content-layout {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            align-items: start;
        }

        /* ========== TAG FILTER BAR ========== */
        .tag-filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 28px;
            padding: 0;
        }

        .tag-filter-bar .tag-btn {
            padding: 7px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1.5px solid var(--color-border);
            color: var(--color-text-secondary);
            background: var(--color-surface);
            white-space: nowrap;
        }

        .tag-filter-bar .tag-btn:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: var(--color-primary-light);
        }

        .tag-filter-bar .tag-btn.active-tag {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
            font-weight: 600;
        }

        /* ========== NEWS LIST ========== */
        .news-list-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-card {
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 20px;
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .news-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: var(--color-border);
        }

        .news-card-img-wrap {
            position: relative;
            overflow: hidden;
            min-height: 100%;
            background: #e8ece9;
        }

        .news-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .news-card:hover .news-card-img-wrap img {
            transform: scale(1.04);
        }

        .news-card-img-wrap .news-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            background: var(--color-accent);
            color: #fff;
            z-index: 3;
            letter-spacing: 0.02em;
        }

        .news-card-body {
            padding: 18px 20px 18px 4px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.82rem;
            color: var(--color-text-muted);
            margin-bottom: 8px;
        }

        .news-card-meta .news-date {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .news-card-meta .news-source {
            padding: 2px 8px;
            border-radius: 10px;
            background: #f1f5f3;
            font-size: 0.75rem;
            color: var(--color-text-secondary);
        }

        .news-card-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--color-text);
            line-height: 1.4;
            margin-bottom: 8px;
            transition: color var(--transition-fast);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card:hover .news-card-title {
            color: var(--color-primary);
        }

        .news-card-excerpt {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .news-card-link {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap var(--transition-fast);
            align-self: flex-start;
        }

        .news-card-link:hover {
            gap: 8px;
        }

        .news-card-link .arrow {
            transition: transform var(--transition-fast);
            font-size: 0.8rem;
        }

        .news-card-link:hover .arrow {
            transform: translateX(3px);
        }

        /* ========== SIDEBAR ========== */
        .sidebar-col {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: calc(var(--header-height) + 24px);
        }

        .sidebar-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
        }

        .sidebar-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--color-primary-light);
            letter-spacing: -0.01em;
        }

        .hot-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hot-list-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 11px 0;
            border-bottom: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .hot-list-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .hot-list-item:first-child {
            padding-top: 0;
        }

        .hot-list-item:hover {
            padding-left: 4px;
        }

        .hot-rank {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #f1f5f3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            flex-shrink: 0;
        }

        .hot-list-item:nth-child(1) .hot-rank {
            background: #e74c3c;
            color: #fff;
        }
        .hot-list-item:nth-child(2) .hot-rank {
            background: #e67e22;
            color: #fff;
        }
        .hot-list-item:nth-child(3) .hot-rank {
            background: #d4940e;
            color: #fff;
        }

        .hot-info {
            flex: 1;
            min-width: 0;
        }
        .hot-info .hot-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text);
            line-height: 1.4;
            transition: color var(--transition-fast);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hot-list-item:hover .hot-title {
            color: var(--color-primary);
        }
        .hot-info .hot-views {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-top: 3px;
        }

        /* ========== DEEP TOPICS SECTION ========== */
        .deep-topics-section {
            margin-top: 48px;
        }

        .section-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 22px;
        }

        .section-heading h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: -0.01em;
            position: relative;
            padding-left: 16px;
        }

        .section-heading h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            bottom: 4px;
            width: 4px;
            background: var(--color-primary);
            border-radius: 2px;
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .topic-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .topic-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }

        .topic-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: #e8ece9;
        }

        .topic-card-body {
            padding: 16px 18px 18px;
        }

        .topic-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 8px;
        }

        .topic-card-tags span {
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
            background: var(--color-primary-light);
            color: var(--color-primary);
        }

        .topic-card-body h4 {
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 6px;
            line-height: 1.4;
            transition: color var(--transition-fast);
        }

        .topic-card:hover h4 {
            color: var(--color-primary);
        }

        .topic-card-body p {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ========== SUBSCRIBE CTA ========== */
        .subscribe-cta {
            margin-top: 50px;
            background: linear-gradient(135deg, #065a28 0%, #0d7c3b 40%, #1a8f4a 100%);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .subscribe-cta::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .subscribe-cta::before {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -30px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .subscribe-cta h3 {
            font-size: 1.55rem;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .subscribe-cta p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            max-width: 440px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
            justify-content: center;
        }

        .subscribe-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: 25px;
            background: #fff;
            color: var(--color-text);
            font-size: 0.95rem;
            border: 2px solid transparent;
            transition: all var(--transition-fast);
        }

        .subscribe-form input:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 0 4px rgba(212, 148, 14, 0.2);
        }

        .subscribe-form .btn-cta-submit {
            padding: 12px 28px;
            border-radius: 25px;
            background: var(--color-accent);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            border: 2px solid var(--color-accent);
        }

        .subscribe-form .btn-cta-submit:hover {
            background: #b87d0b;
            border-color: #b87d0b;
            box-shadow: var(--shadow-lg);
            transform: translateY(-1px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #1a1f1c;
            color: #c5cdc9;
            padding: 40px 0 24px;
            margin-top: 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 30px;
            margin-bottom: 28px;
        }

        .footer-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .footer-brand-desc {
            font-size: 0.88rem;
            line-height: 1.6;
            color: #9ba5a0;
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: #e8ecea;
            margin-bottom: 10px;
            letter-spacing: 0.01em;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-col ul li,
        .footer-col ul li a {
            font-size: 0.87rem;
            color: #9ba5a0;
            transition: color var(--transition-fast);
            cursor: default;
        }

        .footer-col ul li a:hover {
            color: #fff;
            cursor: pointer;
        }

        .footer-bottom {
            border-top: 1px solid #2a302d;
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            font-size: 0.8rem;
            color: #7d8a83;
            justify-content: center;
            text-align: center;
            align-items: center;
        }

        .footer-bottom .sep {
            color: #3d4540;
            user-select: none;
        }

        .footer-bottom a {
            color: #9ba5a0;
            transition: color var(--transition-fast);
            cursor: pointer;
        }

        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-bottom span {
            cursor: default;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .sidebar-col {
                position: static;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .sidebar-card {
                padding: 16px 14px;
            }
            .topics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-card {
                grid-template-columns: 180px 1fr;
            }
            .cat-banner h1 {
                font-size: 2.1rem;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                gap: 10px;
            }
            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: var(--color-surface);
                flex-direction: column;
                align-items: stretch;
                padding: 10px 16px;
                gap: 2px;
                box-shadow: var(--shadow-lg);
                display: none;
                z-index: 99;
                border-bottom: 2px solid var(--color-border);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 11px 14px;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
            }
            .nav-links a.active::after {
                display: none;
            }
            .nav-links a.active {
                border-left: 3px solid var(--color-primary);
            }
            .mobile-menu-btn {
                display: flex;
            }
            .header-actions .btn-subscribe {
                font-size: 0.8rem;
                padding: 7px 14px;
            }
            .cat-banner {
                padding: 36px 0;
                min-height: 180px;
            }
            .cat-banner h1 {
                font-size: 1.7rem;
            }
            .cat-banner .cat-desc {
                font-size: 0.95rem;
            }
            .news-card {
                grid-template-columns: 1fr;
            }
            .news-card-img-wrap {
                height: 200px;
                min-height: auto;
            }
            .news-card-body {
                padding: 14px 16px;
            }
            .topics-grid {
                grid-template-columns: 1fr;
            }
            .sidebar-col {
                grid-template-columns: 1fr;
            }
            .subscribe-cta {
                padding: 28px 20px;
            }
            .subscribe-cta h3 {
                font-size: 1.25rem;
            }
            .subscribe-form {
                flex-direction: column;
                align-items: center;
            }
            .subscribe-form input {
                width: 100%;
                min-width: auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .tag-filter-bar {
                gap: 5px;
            }
            .tag-filter-bar .tag-btn {
                padding: 5px 13px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .cat-banner h1 {
                font-size: 1.4rem;
            }
            .cat-banner .cat-desc {
                font-size: 0.85rem;
            }
            .section-heading h2 {
                font-size: 1.2rem;
            }
            .news-card-title {
                font-size: 1rem;
            }
            .header-logo {
                font-size: 1.1rem;
            }
            .header-logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
            .btn-subscribe {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
            .footer-bottom {
                font-size: 0.72rem;
                gap: 3px 6px;
            }
            .subscribe-cta {
                padding: 22px 14px;
                border-radius: var(--radius-lg);
            }
        }

/* roulang page: category4 */
:root {
            --bg: #f6f7f9;
            --surface: #ffffff;
            --surface-alt: #f0f2f5;
            --text: #1a1c20;
            --text-secondary: #5f6368;
            --text-tertiary: #8b9198;
            --accent: #1b5e3b;
            --accent-light: #2e8b57;
            --accent-glow: #3cb371;
            --gold: #c8962e;
            --gold-light: #e8c55a;
            --red-accent: #c4203c;
            --red-soft: #fde8ec;
            --border: #e2e5ea;
            --border-light: #eef0f3;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
            --font-sans: 'Inter', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --header-h: 68px;
            --max-w: 1260px;
            --transition-fast: 0.18s ease;
            --transition: 0.28s ease;
            --transition-slow: 0.4s ease;
            --section-gap: 64px;
            --card-gap: 20px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            font-size: inherit;
        }

        input {
            font-family: inherit;
            font-size: inherit;
            outline: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER / NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            height: var(--header-h);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--accent);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
        }
        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .logo-text span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 22px;
            font-size: 14.5px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.1px;
        }
        .nav-links a:hover {
            color: var(--accent);
            background: rgba(27, 94, 59, 0.05);
        }
        .nav-links a.active {
            color: #fff;
            background: var(--accent);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(27, 94, 59, 0.25);
        }
        .nav-links a.active:hover {
            background: var(--accent-light);
            color: #fff;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .search-box {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-box input {
            width: 180px;
            padding: 9px 14px 9px 36px;
            border: 1.5px solid var(--border);
            border-radius: 24px;
            background: var(--surface-alt);
            font-size: 13.5px;
            color: var(--text);
            transition: all var(--transition-fast);
        }
        .search-box input:focus {
            border-color: var(--accent);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(27, 94, 59, 0.07);
            width: 220px;
        }
        .search-box i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-tertiary);
            font-size: 14px;
            pointer-events: none;
        }
        .btn-nav-cta {
            padding: 9px 18px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 13.5px;
            background: var(--gold);
            color: #1a1a1a;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .btn-nav-cta:hover {
            background: var(--gold-light);
            box-shadow: 0 4px 14px rgba(200, 150, 46, 0.3);
            transform: translateY(-1px);
        }
        .mobile-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text);
            background: var(--surface-alt);
            border: 1px solid var(--border);
            transition: all var(--transition-fast);
        }
        .mobile-toggle:hover {
            background: var(--border);
        }

        /* ========== MOBILE NAV ========== */
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--header-h);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 999;
            flex-direction: column;
            padding: 20px 24px;
            gap: 6px;
            overflow-y: auto;
            border-top: 1px solid var(--border-light);
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            display: block;
            padding: 14px 18px;
            border-radius: var(--radius);
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
        }
        .mobile-nav-panel a:hover {
            background: var(--surface-alt);
            color: var(--accent);
        }
        .mobile-nav-panel a.active {
            background: var(--accent);
            color: #fff;
            font-weight: 600;
        }
        .mobile-nav-panel .mobile-search {
            margin-bottom: 8px;
            position: relative;
        }
        .mobile-nav-panel .mobile-search input {
            width: 100%;
            padding: 13px 16px 13px 42px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            background: var(--surface-alt);
            font-size: 15px;
        }
        .mobile-nav-panel .mobile-search i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-tertiary);
            font-size: 15px;
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            min-height: 320px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0d3320 0%, #1a4d30 35%, #1b5e3b 70%, #1a3d28 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.35;
            mix-blend-mode: overlay;
        }
        .page-banner .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 33, 20, 0.55) 0%, rgba(27, 94, 59, 0.7) 60%, rgba(10, 25, 16, 0.85) 100%);
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
            color: #fff;
        }
        .page-banner .banner-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            backdrop-filter: blur(4px);
        }
        .page-banner h1 {
            font-size: clamp(28px, 4.5vw, 44px);
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .page-banner .banner-sub {
            font-size: clamp(15px, 1.8vw, 18px);
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            line-height: 1.6;
        }
        .page-banner .banner-stats-row {
            display: flex;
            gap: 32px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        .page-banner .banner-stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        .page-banner .banner-stat-item strong {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            display: block;
            line-height: 1;
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: var(--section-gap) 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header .section-label {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(27, 94, 59, 0.08);
            color: var(--accent);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.4px;
            margin-bottom: 10px;
        }
        .section-header h2 {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.3px;
        }
        .section-header p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-top: 6px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========== PLAYER CARDS ========== */
        .player-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--card-gap);
        }
        .player-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
            position: relative;
        }
        .player-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .player-card .card-img-wrap {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            background: #e8ecf0;
        }
        .player-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .player-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .player-card .card-img-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
            pointer-events: none;
        }
        .player-card .card-rank-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gold);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .player-card .card-body {
            padding: 16px 18px 20px;
        }
        .player-card .card-body h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }
        .player-card .card-body .player-role {
            font-size: 13px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 6px;
        }
        .player-card .card-body .player-club {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        .player-card .card-stats-mini {
            display: flex;
            gap: 14px;
            font-size: 12px;
            color: var(--text-tertiary);
        }
        .player-card .card-stats-mini span {
            font-weight: 600;
            color: var(--text);
        }

        /* ========== COMPARISON TABLE ========== */
        .comparison-panel {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .comparison-panel .comp-header {
            background: linear-gradient(135deg, #1b5e3b 0%, #1a4d30 100%);
            color: #fff;
            padding: 20px 24px;
            font-weight: 700;
            font-size: 17px;
            letter-spacing: 0.2px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 14px 18px;
            text-align: center;
            font-size: 14px;
            border-bottom: 1px solid var(--border-light);
        }
        .comparison-table th {
            background: var(--surface-alt);
            font-weight: 600;
            color: var(--text);
            font-size: 13px;
            letter-spacing: 0.2px;
            position: sticky;
            top: 0;
        }
        .comparison-table th:first-child {
            text-align: left;
            border-radius: 0;
        }
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--text);
        }
        .comparison-table tr:hover td {
            background: rgba(27, 94, 59, 0.03);
        }
        .comparison-table .highlight-val {
            font-weight: 700;
            color: var(--accent);
            font-size: 15px;
        }
        .comparison-table .gold-val {
            color: var(--gold);
            font-weight: 700;
        }

        /* ========== RANKING LIST ========== */
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--surface);
            border-radius: var(--radius);
            padding: 14px 20px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-xs);
        }
        .ranking-item:hover {
            box-shadow: var(--shadow);
            border-color: transparent;
            transform: translateX(4px);
        }
        .ranking-item .rank-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .rank-num.r1 {
            background: #f6c343;
            color: #1a1a1a;
        }
        .rank-num.r2 {
            background: #c0c0c0;
            color: #1a1a1a;
        }
        .rank-num.r3 {
            background: #cd8b62;
            color: #fff;
        }
        .rank-num.rn {
            background: var(--surface-alt);
            color: var(--text-secondary);
        }
        .ranking-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-item .rank-info h4 {
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
        }
        .ranking-item .rank-info span {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        .ranking-item .rank-stats {
            display: flex;
            gap: 18px;
            font-size: 13px;
            color: var(--text-secondary);
            flex-shrink: 0;
        }
        .ranking-item .rank-stats strong {
            color: var(--text);
            font-weight: 600;
        }

        /* ========== GALLERY ========== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .gallery-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: var(--shadow-xs);
            transition: all var(--transition);
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        .gallery-item .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 14px;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            opacity: 0;
            transition: opacity var(--transition);
        }
        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        /* ========== NEWS LIST ========== */
        .news-list-vertical {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .news-item-card {
            display: flex;
            gap: 18px;
            background: var(--surface);
            border-radius: var(--radius);
            padding: 18px 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-xs);
            transition: all var(--transition-fast);
            align-items: flex-start;
        }
        .news-item-card:hover {
            box-shadow: var(--shadow);
            border-color: transparent;
        }
        .news-item-card .news-date {
            flex-shrink: 0;
            width: 52px;
            text-align: center;
            font-weight: 700;
            color: var(--accent);
            font-size: 14px;
            line-height: 1.3;
        }
        .news-item-card .news-date small {
            display: block;
            font-weight: 400;
            font-size: 11px;
            color: var(--text-tertiary);
        }
        .news-item-card .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-item-card .news-body h4 {
            font-weight: 600;
            font-size: 16px;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .news-item-card .news-body p {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item-card .news-link {
            flex-shrink: 0;
            align-self: center;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            border: 1.5px solid var(--accent);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .news-item-card .news-link:hover {
            background: var(--accent);
            color: #fff;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-xs);
        }
        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            width: 100%;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
            text-align: left;
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: var(--surface-alt);
        }
        .faq-question i {
            font-size: 13px;
            color: var(--text-tertiary);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition), padding var(--transition);
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
        }
        .faq-answer-inner {
            padding: 0 22px 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #1b5e3b 0%, #0f3d26 100%);
            border-radius: var(--radius-xl);
            padding: 48px 36px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-3.webp') center/cover;
            opacity: 0.15;
            mix-blend-mode: overlay;
        }
        .cta-section>* {
            position: relative;
            z-index: 1;
        }
        .cta-section h3 {
            font-size: clamp(22px, 3vw, 30px);
            font-weight: 700;
            margin-bottom: 8px;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            font-size: 15px;
        }
        .btn-cta-large {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 15px;
            background: var(--gold);
            color: #1a1a1a;
            transition: all var(--transition);
            letter-spacing: 0.3px;
        }
        .btn-cta-large:hover {
            background: var(--gold-light);
            box-shadow: 0 8px 28px rgba(200, 150, 46, 0.45);
            transform: translateY(-2px);
            color: #1a1a1a;
        }
        .btn-outline-light {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 14px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            transition: all var(--transition);
            margin-left: 12px;
        }
        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #181a1d;
            color: #b0b4b8;
            padding: 48px 0 28px;
            margin-top: auto;
            font-size: 14px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-brand-desc {
            font-size: 13.5px;
            line-height: 1.7;
            color: #8b9098;
            max-width: 300px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: #e0e3e6;
            margin-bottom: 12px;
            letter-spacing: 0.2px;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }
        .footer-col ul li,
        .footer-col ul li a {
            color: #8b9098;
            font-size: 13.5px;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .footer-col ul li a:hover {
            color: #fff;
            cursor: pointer;
        }
        .footer-col ul li {
            cursor: default;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 4px;
            align-items: center;
            justify-content: center;
            font-size: 12.5px;
            color: #6b7078;
            text-align: center;
        }
        .footer-bottom .sep {
            color: rgba(255, 255, 255, 0.15);
        }
        .footer-bottom a {
            color: #8b9098;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-bottom span {
            cursor: default;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1100px) {
            .nav-links a {
                padding: 7px 10px;
                font-size: 13px;
            }
            .search-box input {
                width: 140px;
            }
            .search-box input:focus {
                width: 170px;
            }
            .player-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .search-box {
                display: none;
            }
            .btn-nav-cta {
                display: none;
            }
            .mobile-toggle {
                display: flex;
            }
            .header-inner {
                gap: 12px;
            }
            .page-banner {
                min-height: 240px;
            }
            .page-banner .banner-content {
                padding: 40px 0;
            }
            .page-banner .banner-stats-row {
                gap: 16px;
            }
            .section {
                padding: 40px 0;
            }
            .player-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
                font-size: 11px;
            }
            .ranking-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 12px 14px;
            }
            .ranking-item .rank-stats {
                width: 100%;
                justify-content: flex-start;
                font-size: 12px;
                gap: 12px;
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .news-item-card {
                flex-wrap: wrap;
                gap: 10px;
                padding: 14px;
            }
            .news-item-card .news-date {
                width: auto;
                font-size: 12px;
            }
            .news-item-card .news-link {
                width: 100%;
                text-align: center;
                padding: 10px;
            }
            .cta-section {
                padding: 32px 20px;
                border-radius: var(--radius-lg);
            }
            .btn-outline-light {
                margin-left: 0;
                margin-top: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 4px;
                font-size: 11px;
            }
            .footer-bottom .sep {
                display: none;
            }
            .section-header h2 {
                font-size: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .logo-text {
                font-size: 17px;
            }
            .page-banner h1 {
                font-size: 22px;
            }
            .player-cards-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .player-card .card-img-wrap {
                aspect-ratio: 16/10;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .section {
                padding: 32px 0;
            }
            .section-header {
                margin-bottom: 24px;
            }
            .comparison-table {
                font-size: 10px;
            }
            .comparison-table th,
            .comparison-table td {
                padding: 8px 5px;
                font-size: 10px;
            }
            .ranking-item {
                padding: 10px 12px;
            }
            .faq-question {
                font-size: 14px;
                padding: 14px 16px;
            }
            .faq-answer-inner {
                padding: 0 16px 16px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #0f6e3f;
            --primary-dark: #0a5230;
            --primary-light: #e8f5e9;
            --accent: #f0a830;
            --accent-dark: #d4911a;
            --accent-light: #fff8e7;
            --dark: #0f1923;
            --dark-secondary: #1a2735;
            --text: #1a1a2e;
            --text-secondary: #4a5568;
            --text-light: #718096;
            --bg: #f6f8f7;
            --bg-white: #ffffff;
            --bg-dark: #0f1923;
            --border: #e2e8f0;
            --border-light: #edf2f7;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --nav-height: 68px;
        }

        *,
        *::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-body);
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            transition: var(--transition);
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header & Navigation */
        .site-header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--nav-height);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.95);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }

        .logo-text {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--dark);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo-text .accent-dot {
            color: var(--accent);
            margin: 0 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-links a.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-trigger {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .search-trigger:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-nav-cta {
            padding: 10px 22px;
            background: var(--primary);
            color: #fff;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all var(--transition);
            letter-spacing: 0.01em;
            box-shadow: 0 2px 8px rgba(15, 110, 63, 0.25);
        }

        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: 0 4px 16px rgba(15, 110, 63, 0.35);
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-sm);
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile nav overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 25, 35, 0.6);
            z-index: 999;
            opacity: 0;
            transition: opacity var(--transition);
        }

        .mobile-nav-overlay.show {
            display: block;
            opacity: 1;
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            right: 0;
            width: 300px;
            max-width: 85vw;
            bottom: 0;
            background: var(--bg-white);
            z-index: 1000;
            padding: 20px;
            flex-direction: column;
            gap: 4px;
            box-shadow: var(--shadow-xl);
            transform: translateX(100%);
            transition: transform var(--transition);
            overflow-y: auto;
        }

        .mobile-nav-panel.show {
            transform: translateX(0);
        }

        .mobile-nav-panel a {
            display: block;
            padding: 14px 16px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 500;
            color: var(--text);
            transition: var(--transition);
        }

        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.active {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
        }

        .mobile-nav-panel .btn-nav-cta {
            text-align: center;
            margin-top: 8px;
            display: block;
            border-radius: var(--radius);
            padding: 14px 20px;
            color: #fff;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            background: url('assets/images/backpic/back-2.webp') center / cover no-repeat;
            padding: 72px 0;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            align-items: center;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 25, 35, 0.88) 0%, rgba(10, 60, 40, 0.78) 50%, rgba(15, 25, 35, 0.85) 100%);
            z-index: 1;
        }

        .page-banner .container {
            position: relative;
            z-index: 2;
        }

        .banner-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .banner-breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
        }

        .banner-breadcrumb a:hover {
            color: var(--accent);
        }

        .banner-breadcrumb .sep {
            color: rgba(255, 255, 255, 0.45);
        }

        .banner-breadcrumb .current {
            color: var(--accent);
            font-weight: 500;
        }

        .page-banner h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.02em;
            margin-bottom: 12px;
            line-height: 1.25;
        }

        .page-banner .banner-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            line-height: 1.6;
        }

        .banner-stats-row {
            display: flex;
            gap: 28px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .banner-stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }

        .banner-stat-item .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--accent);
            flex-shrink: 0;
        }

        .banner-stat-item .stat-num {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .banner-stat-item .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Main content */
        .page-main {
            flex: 1;
            padding: 0 0 60px;
        }

        .section {
            padding: 56px 0;
        }

        .section-alt {
            background: var(--bg-white);
        }

        .section-dark {
            background: var(--bg-dark);
            color: #fff;
            padding: 60px 0;
        }

        .section-header {
            margin-bottom: 36px;
            text-align: left;
        }

        .section-header.center {
            text-align: center;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--primary);
            background: var(--primary-light);
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: 0.01em;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .section-dark .section-header h2 {
            color: #fff;
        }

        .section-header .section-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 650px;
            line-height: 1.6;
        }

        .section-dark .section-header .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        /* League Table */
        .league-table-wrapper {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .league-table-tabs {
            display: flex;
            gap: 0;
            border-bottom: 2px solid var(--border-light);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .league-table-tabs button {
            padding: 14px 24px;
            font-size: 0.9rem;
            font-weight: 600;
            background: none;
            color: var(--text-secondary);
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            white-space: nowrap;
            transition: var(--transition);
        }

        .league-table-tabs button.active-tab {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .league-table-tabs button:hover {
            color: var(--primary);
        }

        .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 700px;
        }

        .data-table thead th {
            background: #f9fafb;
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            border-bottom: 2px solid var(--border);
            white-space: nowrap;
        }

        .data-table tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }

        .data-table tbody tr {
            transition: background var(--transition);
        }

        .data-table tbody tr:hover {
            background: #f8fdf9;
        }

        .data-table .rank-col {
            width: 50px;
            text-align: center;
            font-weight: 700;
            font-size: 1rem;
        }

        .data-table .team-col {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }

        .team-dot.red {
            background: #c41e3a;
        }
        .team-dot.blue {
            background: #1a5fc4;
        }
        .team-dot.sky {
            background: #6cb4ee;
        }
        .team-dot.gold {
            background: #e8a020;
        }
        .team-dot.navy {
            background: #1b2d5c;
        }
        .team-dot.white {
            background: #d4d4d4;
            border: 2px solid #999;
        }
        .team-dot.purple {
            background: #6b2fa0;
        }
        .team-dot.orange {
            background: #e87020;
        }

        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .rank-badge.top1 {
            background: #f0a830;
            color: #fff;
        }
        .rank-badge.top2 {
            background: #b0b8c0;
            color: #fff;
        }
        .rank-badge.top3 {
            background: #cd8b62;
            color: #fff;
        }
        .rank-badge.normal {
            background: #f1f5f9;
            color: var(--text-secondary);
        }

        .stat-positive {
            color: #0f6e3f;
            font-weight: 600;
        }
        .stat-negative {
            color: #c41e3a;
            font-weight: 600;
        }
        .stat-neutral {
            color: var(--text-secondary);
        }

        /* Stats Cards Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stat-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: var(--primary);
        }

        .stat-card .stat-card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .stat-card .stat-card-icon.green {
            background: #e8f5e9;
            color: var(--primary);
        }
        .stat-card .stat-card-icon.amber {
            background: #fff8e7;
            color: var(--accent);
        }
        .stat-card .stat-card-icon.blue {
            background: #e3f0fd;
            color: #1a5fc4;
        }
        .stat-card .stat-card-icon.red {
            background: #fde8ec;
            color: #c41e3a;
        }

        .stat-card .stat-value {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
        }

        .stat-card .stat-label-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .stat-card .stat-change {
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .stat-card .stat-change.up {
            color: #0f6e3f;
        }
        .stat-card .stat-change.down {
            color: #c41e3a;
        }

        /* Team Analysis Cards */
        .team-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .team-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .team-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .team-card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .team-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .team-card:hover .team-card-img img {
            transform: scale(1.06);
        }

        .team-card-img .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
            color: #fff;
        }

        .team-card-img .team-name-overlay {
            font-weight: 700;
            font-size: 1.3rem;
        }

        .team-card-body {
            padding: 20px;
        }

        .team-card-body .team-metrics {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .team-metric {
            text-align: center;
            flex: 1;
            min-width: 50px;
        }

        .team-metric .metric-val {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1;
        }

        .team-metric .metric-label {
            font-size: 0.7rem;
            color: var(--text-light);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .team-card-body .team-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .team-card-body .team-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.75rem;
            font-weight: 500;
            background: var(--primary-light);
            color: var(--primary);
        }

        .tag.accent {
            background: var(--accent-light);
            color: var(--accent-dark);
        }

        /* Player Stats */
        .player-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .player-row {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-white);
            padding: 16px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }

        .player-row:hover {
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }

        .player-rank-num {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-light);
            width: 36px;
            text-align: center;
            flex-shrink: 0;
        }

        .player-rank-num.top {
            color: var(--accent);
        }

        .player-info {
            flex: 1;
            min-width: 0;
        }

        .player-name {
            font-weight: 600;
            font-size: 1rem;
            color: var(--dark);
        }

        .player-team-name {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .player-stat-val {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary);
            flex-shrink: 0;
            text-align: right;
            min-width: 50px;
        }

        .player-stat-label {
            font-size: 0.7rem;
            color: var(--text-light);
            text-align: right;
            flex-shrink: 0;
        }

        /* Match Results */
        .match-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .match-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all var(--transition);
        }

        .match-card:hover {
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }

        .match-team {
            text-align: center;
            flex: 1;
            min-width: 0;
        }

        .match-team .match-team-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .match-score {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            flex-shrink: 0;
            padding: 0 10px;
        }

        .match-date-badge {
            font-size: 0.7rem;
            color: var(--text-light);
            text-align: center;
            flex-shrink: 0;
        }

        .match-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .match-status.live {
            background: #fde8ec;
            color: #c41e3a;
            animation: pulse-dot 1.5s infinite;
        }
        .match-status.finished {
            background: #f1f5f9;
            color: var(--text-light);
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.4;
            }
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 18px 22px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--dark);
            transition: var(--transition);
            background: none;
        }

        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
            transition: transform var(--transition);
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            background: var(--primary);
            color: #fff;
        }

        .faq-answer {
            padding: 0 22px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.9rem;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 20px;
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #0d8050 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #fff;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }

        .cta-block::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }

        .cta-block h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-block p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta-large {
            display: inline-block;
            padding: 14px 36px;
            background: var(--accent);
            color: #1a1a2e;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all var(--transition);
            box-shadow: 0 6px 24px rgba(240, 168, 48, 0.4);
            position: relative;
            z-index: 1;
        }

        .btn-cta-large:hover {
            background: #f5b840;
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(240, 168, 48, 0.5);
        }

        .btn-outline-light {
            display: inline-block;
            padding: 12px 28px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition);
            margin-left: 12px;
            position: relative;
            z-index: 1;
        }

        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 50px 0 28px;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .footer-brand {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-brand-desc {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul li,
        .footer-col ul li a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .footer-bottom .sep {
            color: rgba(255, 255, 255, 0.25);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--accent);
        }

        .footer-bottom span {
            cursor: default;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .team-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .match-cards {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .page-banner h1 {
                font-size: 2.2rem;
            }
            .nav-links a {
                padding: 6px 11px;
                font-size: 0.82rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .header-actions .btn-nav-cta {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .mobile-nav-panel {
                display: flex;
            }
            .mobile-nav-overlay {
                display: none;
            }
            .mobile-nav-overlay.show {
                display: block;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .team-cards-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .match-cards {
                grid-template-columns: 1fr;
            }
            .page-banner {
                padding: 48px 0;
                min-height: 220px;
            }
            .page-banner h1 {
                font-size: 1.8rem;
            }
            .banner-stats-row {
                gap: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 22px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
            }
            .footer-bottom .sep {
                display: none;
            }
            .section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .cta-block {
                padding: 32px 20px;
            }
            .cta-block h3 {
                font-size: 1.4rem;
            }
            .btn-outline-light {
                display: block;
                margin: 12px auto 0;
                max-width: 200px;
            }
            .stat-card .stat-value {
                font-size: 1.5rem;
            }
            .data-table {
                font-size: 0.78rem;
                min-width: 600px;
            }
            .league-table-tabs button {
                padding: 10px 14px;
                font-size: 0.8rem;
            }
            .player-row {
                padding: 12px 14px;
                gap: 10px;
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .page-banner h1 {
                font-size: 1.5rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.9rem;
            }
            .banner-stats-row {
                gap: 10px;
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .match-card {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
                gap: 8px;
                padding: 14px;
            }
            .match-score {
                font-size: 1.4rem;
            }
            .faq-question {
                font-size: 0.9rem;
                padding: 14px 16px;
            }
            .container {
                padding: 0 14px;
            }
            .section-header h2 {
                font-size: 1.3rem;
            }
            .cta-block {
                padding: 24px 16px;
                border-radius: var(--radius-lg);
            }
            .cta-block h3 {
                font-size: 1.2rem;
            }
        }

/* roulang page: category6 */
:root {
            --primary: #1a7a3a;
            --primary-dark: #145f2d;
            --primary-light: #e8f5e9;
            --accent: #f0a028;
            --accent-dark: #d4891a;
            --accent-light: #fff8ed;
            --bg: #f7f8fa;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --text: #1a1a2e;
            --text-secondary: #5a6072;
            --text-light: #8b919e;
            --border: #e2e6ed;
            --border-light: #eef0f4;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
            --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);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --container-max: 1200px;
            --container-narrow: 960px;
            --header-height: 68px;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 56px;
            --spacing-2xl: 72px;
            --spacing-3xl: 96px;
        }

        *,
        *::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.65;
            color: var(--text);
            background-color: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            font-size: inherit;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            font-size: inherit;
            outline: none;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }

        input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 122, 58, 0.10);
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-narrow {
            max-width: var(--container-narrow);
        }

        /* Header & Navigation */
        .site-header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-md);
            height: 100%;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.3px;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            flex-wrap: nowrap;
        }

        .nav-links a {
            display: inline-block;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-links a.active {
            color: var(--primary);
            font-weight: 600;
            background: var(--primary-light);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-search-header {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            background: var(--bg);
            transition: all var(--transition);
            font-size: 1rem;
        }

        .btn-search-header:hover {
            background: var(--border-light);
            color: var(--text);
        }

        .btn-join {
            padding: 9px 20px;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            transition: all var(--transition);
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(240, 160, 40, 0.3);
        }

        .btn-join:hover {
            background: var(--accent-dark);
            box-shadow: 0 4px 14px rgba(240, 160, 40, 0.4);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: var(--bg);
            cursor: pointer;
            flex-shrink: 0;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            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);
        }

        /* Main */
        .main-content {
            flex: 1;
        }

        /* Section spacing */
        .section {
            padding: var(--spacing-xl) 0;
        }
        .section-sm {
            padding: var(--spacing-lg) 0;
        }
        .section-lg {
            padding: var(--spacing-2xl) 0;
        }

        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            letter-spacing: -0.3px;
            text-align: center;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: var(--spacing-lg);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero */
        .hero-inner-page {
            position: relative;
            padding: var(--spacing-2xl) 0;
            background: linear-gradient(160deg, #1a3c2a 0%, #1a5c38 40%, #145f2d 70%, #0f3d1e 100%);
            overflow: hidden;
            color: #fff;
            text-align: center;
        }

        .hero-inner-page::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.18;
            z-index: 0;
        }

        .hero-inner-page .hero-overlay {
            position: relative;
            z-index: 1;
        }

        .hero-inner-page .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 500;
            margin-bottom: var(--spacing-md);
            letter-spacing: 0.5px;
            backdrop-filter: blur(6px);
        }

        .hero-inner-page h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: var(--spacing-sm);
            line-height: 1.25;
        }

        .hero-inner-page .hero-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 620px;
            margin: 0 auto var(--spacing-lg);
            line-height: 1.6;
        }

        .hero-stats-row {
            display: flex;
            gap: var(--spacing-lg);
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stat-item {
            text-align: center;
            min-width: 90px;
        }
        .hero-stat-item .stat-num {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--accent);
            line-height: 1.1;
        }
        .hero-stat-item .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-md);
        }
        .cards-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        .cards-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }
        .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--border);
        }
        .card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }
        .card-body {
            padding: var(--spacing-md);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 50px;
            background: var(--primary-light);
            color: var(--primary);
            margin-bottom: 8px;
            width: fit-content;
            letter-spacing: 0.3px;
        }
        .card-tag.accent {
            background: var(--accent-light);
            color: var(--accent-dark);
        }
        .card-title {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
            letter-spacing: -0.2px;
        }
        .card-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.55;
            flex: 1;
        }
        .card-meta {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Topic List */
        .topic-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .topic-list-item {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            padding: 14px 16px;
            border-radius: var(--radius);
            transition: all var(--transition);
            cursor: pointer;
            background: var(--bg-card);
            border: 1px solid transparent;
        }
        .topic-list-item:hover {
            background: var(--bg);
            border-color: var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .topic-rank {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
            background: var(--bg);
            color: var(--text-secondary);
        }
        .topic-rank.hot {
            background: #fff0e6;
            color: #e07b28;
        }
        .topic-info {
            flex: 1;
            min-width: 0;
        }
        .topic-info .topic-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .topic-info .topic-stats {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 2px;
        }
        .topic-badge {
            font-size: 0.75rem;
            padding: 3px 10px;
            border-radius: 50px;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .topic-badge.fire {
            background: #ffeaea;
            color: #d43d3d;
        }
        .topic-badge.new {
            background: #e8f5e9;
            color: #1a7a3a;
        }

        /* Poll Card */
        .poll-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            padding: var(--spacing-md);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .poll-card:hover {
            box-shadow: var(--shadow-md);
        }
        .poll-question {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: var(--spacing-sm);
            color: var(--text);
        }
        .poll-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            margin-bottom: 6px;
            border: 2px solid var(--border-light);
            cursor: pointer;
            transition: all var(--transition);
            font-weight: 500;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }
        .poll-option:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .poll-option .poll-bar {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            background: var(--primary-light);
            border-radius: var(--radius-sm);
            z-index: 0;
            transition: width 0.6s ease;
        }
        .poll-option .poll-label {
            position: relative;
            z-index: 1;
            flex: 1;
        }
        .poll-option .poll-pct {
            position: relative;
            z-index: 1;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--primary);
        }
        .poll-meta {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 8px;
            text-align: right;
        }

        /* Activity Card */
        .activity-card {
            display: flex;
            gap: var(--spacing-md);
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            padding: var(--spacing-md);
            align-items: center;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .activity-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .activity-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: var(--radius);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: var(--primary-light);
            color: var(--primary);
        }
        .activity-icon-wrap.accent {
            background: var(--accent-light);
            color: var(--accent-dark);
        }
        .activity-info {
            flex: 1;
            min-width: 0;
        }
        .activity-info .act-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text);
        }
        .activity-info .act-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 2px;
        }
        .activity-info .act-date {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        .btn-activity {
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            white-space: nowrap;
            flex-shrink: 0;
            background: var(--primary);
            color: #fff;
            transition: all var(--transition);
        }
        .btn-activity:hover {
            background: var(--primary-dark);
            box-shadow: 0 4px 12px rgba(26, 122, 58, 0.3);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .faq-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-md);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all var(--transition);
            background: transparent;
            border: none;
            font-family: inherit;
        }
        .faq-question:hover {
            color: var(--primary);
            background: #fafbfc;
        }
        .faq-icon {
            flex-shrink: 0;
            font-size: 1.2rem;
            transition: transform var(--transition);
            color: var(--text-light);
            width: 24px;
            text-align: center;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }
        .faq-answer p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(145deg, #1a5c38 0%, #1a7a3a 50%, #0f4d28 100%);
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl) var(--spacing-lg);
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.08;
            z-index: 0;
        }
        .cta-section .cta-inner {
            position: relative;
            z-index: 1;
        }
        .cta-section h3 {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.3px;
            margin-bottom: var(--spacing-sm);
        }
        .cta-section p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin: 0 auto var(--spacing-md);
        }
        .btn-cta-large {
            display: inline-block;
            padding: 14px 36px;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            border-radius: 50px;
            font-size: 1.05rem;
            transition: all var(--transition);
            box-shadow: 0 6px 22px rgba(240, 160, 40, 0.4);
            letter-spacing: 0.3px;
        }
        .btn-cta-large:hover {
            background: #f5b840;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(240, 160, 40, 0.5);
        }

        /* Footer */
        .site-footer {
            background: #111827;
            color: #c9cdd4;
            padding: var(--spacing-xl) 0 var(--spacing-md);
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }
        .footer-brand {
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-brand-desc {
            font-size: 0.88rem;
            color: #9ca3af;
            line-height: 1.55;
            max-width: 280px;
        }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #e5e7eb;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li,
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.88rem;
            color: #9ca3af;
            transition: color var(--transition);
            cursor: default;
        }
        .footer-col ul li a:hover {
            color: #fff;
            cursor: pointer;
        }
        .footer-bottom {
            border-top: 1px solid #1f2937;
            padding-top: var(--spacing-md);
            font-size: 0.8rem;
            color: #6b7280;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        .footer-bottom .sep {
            color: #374151;
            user-select: none;
        }
        .footer-bottom a {
            color: #9ca3af;
            transition: color var(--transition);
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-bottom span {
            cursor: default;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cards-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-md);
            }
            .hero-inner-page h1 {
                font-size: 2rem;
            }
            .section {
                padding: var(--spacing-lg) 0;
            }
            .section-lg {
                padding: var(--spacing-xl) 0;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.82rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 60px;
            }
            .cards-grid,
            .cards-grid-2,
            .cards-grid-4 {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
            .nav-links {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: var(--spacing-sm);
                border-bottom: 2px solid var(--border-light);
                box-shadow: var(--shadow-lg);
                gap: 2px;
                z-index: 999;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 10px 14px;
                border-radius: var(--radius-sm);
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .header-actions .btn-join {
                display: none;
            }
            .header-actions .btn-join-mobile {
                display: inline-block;
                padding: 7px 14px;
                font-size: 0.82rem;
                background: var(--accent);
                color: #fff;
                font-weight: 600;
                border-radius: var(--radius-sm);
            }
            .hero-inner-page {
                padding: var(--spacing-xl) 0;
            }
            .hero-inner-page h1 {
                font-size: 1.6rem;
            }
            .hero-inner-page .hero-desc {
                font-size: 0.95rem;
            }
            .hero-stats-row {
                gap: var(--spacing-sm);
            }
            .hero-stat-item .stat-num {
                font-size: 1.5rem;
            }
            .activity-card {
                flex-direction: column;
                text-align: center;
                align-items: center;
                gap: var(--spacing-sm);
            }
            .activity-card .btn-activity {
                width: 100%;
                text-align: center;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .cta-section {
                padding: var(--spacing-lg) var(--spacing-sm);
                border-radius: var(--radius-lg);
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
            .btn-cta-large {
                padding: 12px 28px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 520px) {
            .hero-inner-page h1 {
                font-size: 1.4rem;
            }
            .hero-stats-row {
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero-stat-item {
                min-width: 70px;
            }
            .hero-stat-item .stat-num {
                font-size: 1.3rem;
            }
            .topic-list-item {
                flex-wrap: wrap;
                gap: 8px;
            }
            .poll-option {
                padding: 8px 10px;
                font-size: 0.82rem;
            }
            .footer-bottom {
                font-size: 0.72rem;
                gap: 2px 6px;
            }
            .card-body {
                padding: var(--spacing-sm);
            }
            .card-title {
                font-size: 0.95rem;
            }
        }

/* roulang page: category5 */
:root {
            --color-primary: #1a7a2e;
            --color-primary-dark: #0f5c1e;
            --color-primary-light: #28b848;
            --color-accent: #e8941a;
            --color-accent-dark: #c47a0e;
            --color-bg: #f8faf8;
            --color-surface: #ffffff;
            --color-surface-alt: #f0f5f0;
            --color-text: #1a1f1b;
            --color-text-secondary: #4a5c4e;
            --color-text-muted: #6b7d6f;
            --color-border: #dde5dd;
            --color-border-light: #e8efe8;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.35s ease;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --max-width: 1260px;
            --nav-height: 66px;
        }

        *,
        *::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(--color-text);
            background-color: var(--color-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);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            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 28px;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-sm);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition-base);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 28px;
            gap: 24px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--color-primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 18px;
            letter-spacing: -1px;
            flex-shrink: 0;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--color-primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 2px 0;
        }

        .nav-links::-webkit-scrollbar {
            display: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--color-text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            background: #f0f7f1;
        }

        .nav-links a.active {
            color: #fff;
            background: var(--color-primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26, 122, 46, 0.25);
        }

        .nav-links a.active:hover {
            background: var(--color-primary-dark);
            color: #fff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-search {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--color-surface-alt);
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
            font-size: 16px;
        }

        .btn-search:hover {
            background: #e0e8e0;
            color: var(--color-text);
        }

        .btn-publish {
            padding: 9px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            background: var(--color-accent);
            color: #fff;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.4px;
            box-shadow: 0 2px 8px rgba(232, 148, 26, 0.25);
        }

        .btn-publish:hover {
            background: var(--color-accent-dark);
            box-shadow: 0 4px 14px rgba(232, 148, 26, 0.35);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            background: var(--color-surface-alt);
            color: var(--color-text);
            font-size: 20px;
            flex-shrink: 0;
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: #e0e8e0;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            padding: 80px 0 70px;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            color: #fff;
            overflow: hidden;
            isolation: isolate;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 30, 15, 0.78) 0%, rgba(15, 50, 22, 0.85) 50%, rgba(20, 40, 25, 0.9) 100%);
            z-index: 0;
        }

        .page-banner .container {
            position: relative;
            z-index: 1;
        }

        .banner-badge {
            display: inline-block;
            padding: 7px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            background: var(--color-accent);
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .page-banner h1 {
            font-size: 44px;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 16px;
            line-height: 1.25;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }

        .page-banner .banner-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            line-height: 1.7;
            font-weight: 400;
        }

        .banner-stats-row {
            display: flex;
            gap: 32px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .banner-stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
        }

        .banner-stat-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1;
        }

        /* Section Styles */
        .section {
            padding: 60px 0;
        }

        .section-alt {
            background: var(--color-surface-alt);
        }

        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }

        .section-label {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: #e8f5e9;
            color: var(--color-primary);
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 30px;
            font-weight: 750;
            color: var(--color-text);
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .section-header .section-desc {
            font-size: 15px;
            color: var(--color-text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Transfer News Grid */
        .transfer-news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .transfer-news-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--color-border-light);
        }

        .transfer-news-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }

        .transfer-news-card .card-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .transfer-news-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .transfer-news-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }

        .card-status-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 5px 12px;
            border-radius: 14px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .tag-confirmed {
            background: var(--color-primary);
            color: #fff;
        }

        .tag-rumor {
            background: var(--color-accent);
            color: #fff;
        }

        .tag-done {
            background: #3b82f6;
            color: #fff;
        }

        .transfer-news-card .card-body {
            padding: 18px 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-meta {
            font-size: 12px;
            color: var(--color-text-muted);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .transfer-news-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
            color: var(--color-text);
        }

        .transfer-news-card .card-excerpt {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 14px;
        }

        .card-transfer-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--color-text-muted);
            padding-top: 12px;
            border-top: 1px solid var(--color-border-light);
        }

        .card-transfer-info .arrow-icon {
            color: var(--color-primary);
            font-weight: 700;
        }

        .card-transfer-info strong {
            color: var(--color-text);
            font-weight: 600;
        }

        .btn-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--color-primary);
            transition: all var(--transition-fast);
            margin-top: 4px;
        }

        .btn-read-more:hover {
            color: var(--color-primary-dark);
            gap: 10px;
        }

        /* Big Transfer Highlight */
        .highlight-transfer {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: var(--color-surface);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border-light);
        }

        .highlight-transfer .highlight-img {
            height: 100%;
            min-height: 360px;
        }

        .highlight-transfer .highlight-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 360px;
        }

        .highlight-content {
            padding: 36px 36px 36px 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .highlight-content .tag-big {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 700;
            background: #e8f5e9;
            color: var(--color-primary);
            margin-bottom: 14px;
            letter-spacing: 1px;
            width: fit-content;
        }

        .highlight-content h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .highlight-content .highlight-desc {
            font-size: 15px;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .highlight-details {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .highlight-detail-item {
            text-align: center;
            padding: 12px 20px;
            background: var(--color-surface-alt);
            border-radius: var(--radius-md);
            min-width: 80px;
        }

        .highlight-detail-item .detail-val {
            font-size: 22px;
            font-weight: 800;
            color: var(--color-primary);
            display: block;
            line-height: 1.2;
        }

        .highlight-detail-item .detail-lbl {
            font-size: 11px;
            color: var(--color-text-muted);
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .btn-action {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            background: var(--color-primary);
            color: #fff;
            transition: all var(--transition-fast);
            width: fit-content;
            letter-spacing: 0.4px;
            box-shadow: 0 3px 12px rgba(26, 122, 46, 0.2);
        }

        .btn-action:hover {
            background: var(--color-primary-dark);
            box-shadow: 0 6px 20px rgba(26, 122, 46, 0.3);
            transform: translateY(-2px);
        }

        /* Data Stats */
        .stats-dashboard {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
        }

        .stat-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .stat-card .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
            font-size: 22px;
        }

        .stat-icon-green {
            background: #e8f5e9;
            color: var(--color-primary);
        }

        .stat-icon-orange {
            background: #fff3e0;
            color: var(--color-accent);
        }

        .stat-icon-blue {
            background: #e3f2fd;
            color: #3b82f6;
        }

        .stat-icon-purple {
            background: #f3e5f5;
            color: #8e24aa;
        }

        .stat-card .stat-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--color-text);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        .stat-card .stat-label {
            font-size: 13px;
            color: var(--color-text-muted);
            letter-spacing: 0.5px;
        }

        .stat-card .stat-sub {
            font-size: 12px;
            color: var(--color-primary);
            font-weight: 600;
            margin-top: 4px;
        }

        /* Rumor Tracker */
        .rumor-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }

        .rumor-item {
            display: flex;
            gap: 16px;
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-base);
            align-items: flex-start;
        }

        .rumor-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-border);
        }

        .rumor-probability {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 18px;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .prob-high {
            background: var(--color-primary);
        }

        .prob-mid {
            background: var(--color-accent);
        }

        .prob-low {
            background: #9e9e9e;
        }

        .rumor-content h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .rumor-content .rumor-detail {
            font-size: 13px;
            color: var(--color-text-secondary);
            line-height: 1.5;
        }

        .rumor-content .rumor-source {
            font-size: 11px;
            color: var(--color-text-muted);
            margin-top: 6px;
            letter-spacing: 0.3px;
        }

        /* FAQ */
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-base);
            cursor: pointer;
        }

        .faq-item:hover {
            border-color: var(--color-border);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 20px 24px;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            color: var(--color-text);
            user-select: none;
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--color-surface-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: transform var(--transition-fast);
            color: var(--color-primary);
            font-weight: 700;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: var(--color-primary);
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-base);
            padding: 0 24px;
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.75;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 24px 20px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0f5c1e 0%, #1a7a2e 40%, #0d4a18 100%);
            color: #fff;
            text-align: center;
            padding: 60px 0;
            border-radius: var(--radius-xl);
            margin: 40px 28px;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            top: -80px;
            right: -60px;
            z-index: 0;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            bottom: -60px;
            left: -40px;
            z-index: 0;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .cta-section p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 500px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 28px;
            font-size: 15px;
            font-weight: 700;
            background: #fff;
            color: var(--color-primary-dark);
            transition: all var(--transition-fast);
            letter-spacing: 0.4px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-large:hover {
            background: #f0f5f0;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .site-footer {
            background: #1a1f1b;
            color: #c5cdc7;
            padding: 50px 0 30px;
            margin-top: 40px;
            border-top: 4px solid var(--color-primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .footer-brand-desc {
            font-size: 13px;
            line-height: 1.7;
            color: #a0aaa2;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: #e0e5e1;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul li,
        .footer-col ul li span {
            font-size: 13px;
            color: #a0aaa2;
            cursor: pointer;
            transition: color var(--transition-fast);
            line-height: 1.5;
        }

        .footer-col ul li a {
            color: #a0aaa2;
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover,
        .footer-col ul li span:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #2a302c;
            padding-top: 22px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #7a857d;
            text-align: center;
        }

        .footer-bottom .sep {
            color: #3a403c;
        }

        .footer-bottom a {
            color: #a0aaa2;
            transition: color var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        .footer-bottom span {
            cursor: default;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .transfer-news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-dashboard {
                grid-template-columns: repeat(2, 1fr);
            }
            .highlight-transfer {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .highlight-transfer .highlight-img {
                min-height: 260px;
                max-height: 300px;
            }
            .highlight-transfer .highlight-img img {
                min-height: 260px;
                max-height: 300px;
                width: 100%;
            }
            .highlight-content {
                padding: 28px 24px;
            }
            .rumor-list {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .page-banner h1 {
                font-size: 34px;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 7px 11px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .header-actions .btn-publish {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: var(--color-surface);
                flex-direction: column;
                align-items: stretch;
                padding: 12px 16px;
                gap: 4px;
                box-shadow: var(--shadow-lg);
                border-bottom: 2px solid var(--color-border);
                display: none;
                z-index: 999;
                max-height: 70vh;
                overflow-y: auto;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                border-radius: var(--radius-sm);
                padding: 10px 16px;
                font-size: 15px;
            }
            .transfer-news-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .stats-dashboard {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .page-banner {
                padding: 50px 0 44px;
            }
            .page-banner h1 {
                font-size: 27px;
            }
            .page-banner .banner-subtitle {
                font-size: 15px;
            }
            .banner-stats-row {
                gap: 18px;
            }
            .banner-stat-num {
                font-size: 22px;
            }
            .section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 24px;
            }
            .highlight-content h3 {
                font-size: 22px;
            }
            .highlight-details {
                gap: 12px;
            }
            .highlight-detail-item {
                padding: 10px 14px;
                min-width: 60px;
            }
            .highlight-detail-item .detail-val {
                font-size: 18px;
            }
            .cta-section {
                margin: 24px 16px;
                padding: 44px 0;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
            }
            .footer-bottom .sep {
                display: none;
            }
            .stat-card .stat-value {
                font-size: 26px;
            }
            .container {
                padding: 0 18px;
            }
            .header-inner {
                padding: 0 18px;
            }
        }

        @media (max-width: 520px) {
            .stats-dashboard {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-card .stat-value {
                font-size: 22px;
            }
            .stat-card .stat-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                margin-bottom: 10px;
            }
            .page-banner h1 {
                font-size: 23px;
            }
            .banner-stats-row {
                gap: 12px;
                flex-direction: column;
            }
            .highlight-details {
                gap: 8px;
            }
            .highlight-detail-item {
                padding: 8px 10px;
                min-width: 50px;
            }
            .highlight-detail-item .detail-val {
                font-size: 16px;
            }
            .highlight-detail-item .detail-lbl {
                font-size: 10px;
            }
            .transfer-news-card .card-img-wrap {
                height: 170px;
            }
            .highlight-transfer .highlight-img {
                min-height: 200px;
                max-height: 230px;
            }
            .highlight-transfer .highlight-img img {
                min-height: 200px;
                max-height: 230px;
            }
            .highlight-content {
                padding: 20px 16px;
            }
            .highlight-content h3 {
                font-size: 19px;
            }
            .rumor-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .rumor-probability {
                width: 44px;
                height: 44px;
                font-size: 15px;
            }
            .cta-section {
                margin: 16px 10px;
                padding: 36px 16px;
                border-radius: var(--radius-md);
            }
            .cta-section h2 {
                font-size: 21px;
            }
            .faq-question {
                font-size: 14px;
                padding: 16px 18px;
            }
            .faq-answer {
                font-size: 13px;
                padding: 0 18px;
            }
            .faq-item.open .faq-answer {
                padding: 0 18px 16px;
            }
            .btn-cta-large {
                padding: 12px 24px;
                font-size: 14px;
            }
            .logo-text {
                font-size: 17px;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 15px;
            }
        }
