/* roulang page: index */
:root {
            --brand-500: #0d8a3e;
            --brand-600: #0b7a36;
            --brand-700: #096a2e;
            --accent: #f05a28;
            --gold: #e8b828;
            --dark: #1b1e24;
            --surface: #f5f6f8;
            --card: #ffffff;
            --muted: #6b7280;
            --text-main: #1a1a2e;
            --text-soft: #4b5563;
            --border: #e5e7eb;
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
            --shadow-nav: 0 1px 3px rgba(0, 0, 0, 0.08);
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --container-max: 1280px;
            --section-gap: 64px;
        }

        *,
        *::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", "Hiragino Sans GB", system-ui, -apple-system, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-main);
            background-color: var(--surface);
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--brand-500);
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 导航 */
        .site-header {
            background: #fff;
            box-shadow: var(--shadow-nav);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
            border-bottom: 1px solid var(--border);
            flex-wrap: wrap;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--brand-500);
            white-space: nowrap;
            letter-spacing: -0.01em;
        }
        .logo-link:hover {
            color: var(--brand-700);
        }
        .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--brand-500);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.1rem;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: var(--surface);
            border-radius: 24px;
            padding: 6px 14px;
            gap: 8px;
            border: 2px solid transparent;
            transition: all var(--transition-fast);
            flex: 1;
            max-width: 340px;
            min-width: 180px;
        }
        .header-search:focus-within {
            border-color: var(--brand-500);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(13, 138, 62, 0.1);
        }
        .header-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.9rem;
            width: 100%;
            color: var(--text-main);
        }
        .header-search input::placeholder {
            color: var(--muted);
        }
        .header-search .search-icon {
            color: var(--muted);
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .header-cta {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-shrink: 0;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all var(--transition-normal);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-primary {
            background: var(--brand-500);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--brand-700);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(13, 138, 62, 0.3);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--brand-500);
            color: var(--brand-500);
        }
        .btn-outline:hover {
            background: var(--brand-500);
            color: #fff;
            transform: translateY(-1px);
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
        }
        .btn-accent:hover {
            background: #d94a1e;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(240, 90, 40, 0.3);
            color: #fff;
        }
        .btn-sm {
            padding: 6px 13px;
            font-size: 0.8rem;
            border-radius: 20px;
        }
        .btn-lg {
            padding: 12px 26px;
            font-size: 1rem;
            border-radius: 28px;
        }
        .nav-tabs {
            display: flex;
            align-items: center;
            gap: 2px;
            padding: 6px 0;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            flex-wrap: nowrap;
        }
        .nav-tabs::-webkit-scrollbar {
            display: none;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 9px 16px;
            border-radius: 22px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text-soft);
            white-space: nowrap;
            transition: all var(--transition-fast);
            cursor: pointer;
            flex-shrink: 0;
            position: relative;
        }
        .nav-tab:hover {
            color: var(--brand-500);
            background: rgba(13, 138, 62, 0.05);
        }
        .nav-tab.active {
            color: #fff;
            background: var(--brand-500);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(13, 138, 62, 0.3);
        }
        .nav-tab .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 1.2s infinite;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.6);
            }
        }
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-main);
            padding: 6px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .header-search {
                max-width: 100%;
                order: 10;
                flex: 1 1 100%;
            }
            .header-cta {
                gap: 4px;
            }
            .header-cta .btn {
                padding: 7px 12px;
                font-size: 0.78rem;
            }
            .nav-tabs {
                gap: 0;
                padding: 4px 0;
            }
            .nav-tab {
                padding: 7px 11px;
                font-size: 0.78rem;
                border-radius: 18px;
            }
        }
        @media (max-width: 520px) {
            .header-top {
                gap: 8px;
                padding: 8px 0;
            }
            .logo-link {
                font-size: 1.1rem;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
                border-radius: 6px;
            }
            .header-cta .btn-outline {
                display: none;
            }
            .nav-tab {
                padding: 6px 9px;
                font-size: 0.73rem;
                border-radius: 16px;
            }
        }

        /* Hero */
        .hero-section {
            position: relative;
            background: var(--dark);
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(27, 30, 36, 0.88) 0%, rgba(13, 138, 62, 0.7) 60%, rgba(27, 30, 36, 0.82) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
            width: 100%;
        }
        .hero-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            line-height: 1.25;
            margin-bottom: 8px;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 10px;
            max-width: 600px;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        .hero-tag {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            font-size: 0.8rem;
            color: #fff;
            backdrop-filter: blur(4px);
            transition: all var(--transition-fast);
            cursor: pointer;
            white-space: nowrap;
        }
        .hero-tag:hover {
            background: rgba(255, 255, 255, 0.28);
            color: #fff;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        /* Hero实时数据卡片 */
        .hero-live-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 20px;
        }
        .hero-live-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border-radius: var(--radius-md);
            padding: 12px 14px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.18);
            transition: all var(--transition-fast);
            cursor: pointer;
            min-width: 0;
        }
        .hero-live-card:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.35);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .hero-live-card .match-teams {
            font-weight: 700;
            font-size: 0.85rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .hero-live-card .match-score {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.04em;
        }
        .hero-live-card .match-status {
            font-size: 0.7rem;
            color: #ffcc00;
            font-weight: 600;
        }
        .hero-live-card .live-indicator {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff3b3b;
            animation: pulse-dot 1s infinite;
            margin-right: 4px;
            vertical-align: middle;
        }
        @media (max-width: 1024px) {
            .hero-live-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-section {
                min-height: 440px;
            }
        }
        @media (max-width: 520px) {
            .hero-live-cards {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .hero-live-card {
                padding: 10px;
            }
            .hero-live-card .match-score {
                font-size: 1.2rem;
            }
            .hero-title {
                font-size: 1.4rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-section {
                min-height: 380px;
            }
            .hero-tag {
                font-size: 0.7rem;
                padding: 4px 9px;
            }
        }

        /* 板块通用 */
        .section {
            padding: var(--section-gap) 0;
        }
        .section-header {
            margin-bottom: 32px;
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: -0.01em;
            margin: 0 0 6px 0;
        }
        .section-desc {
            font-size: 0.95rem;
            color: var(--muted);
            margin: 0;
        }
        .section-link {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand-500);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .section-link:hover {
            color: var(--brand-700);
            gap: 8px;
        }

        /* 数据概览卡片 */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        .data-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 16px 18px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
            cursor: pointer;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }
        .data-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--brand-200);
        }
        .data-card .data-label {
            font-size: 0.78rem;
            color: var(--muted);
            font-weight: 500;
            margin-bottom: 6px;
        }
        .data-card .data-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.02em;
        }
        .data-card .data-trend {
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 4px;
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .data-trend.up {
            color: #0d8a3e;
        }
        .data-trend.down {
            color: #e53e3e;
        }
        .data-trend.neutral {
            color: var(--muted);
        }
        .data-card .data-icon {
            position: absolute;
            top: 14px;
            right: 14px;
            font-size: 1.5rem;
            opacity: 0.2;
            color: var(--brand-500);
        }
        @media (max-width: 1024px) {
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        @media (max-width: 520px) {
            .data-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .data-card {
                padding: 12px 14px;
            }
            .data-card .data-value {
                font-size: 1.4rem;
            }
        }

        /* 分类入口卡片 */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .category-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .category-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
            border-color: var(--brand-200);
        }
        .category-card .cat-img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            background: #e5e7eb;
        }
        .category-card .cat-body {
            padding: 14px 16px;
        }
        .category-card .cat-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-main);
            margin: 0 0 4px 0;
        }
        .category-card .cat-desc {
            font-size: 0.8rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.4;
        }
        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 520px) {
            .category-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .category-card .cat-img {
                height: 100px;
            }
            .category-card .cat-body {
                padding: 10px 12px;
            }
        }

        /* 资讯列表 */
        .news-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .news-item {
            display: flex;
            gap: 14px;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 14px 16px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
            cursor: pointer;
            align-items: flex-start;
            border: 1px solid transparent;
        }
        .news-item:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--brand-200);
            transform: translateX(2px);
        }
        .news-item .news-img {
            width: 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: #e5e7eb;
        }
        .news-item .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-item .news-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-main);
            margin: 0 0 4px 0;
            line-height: 1.4;
        }
        .news-item .news-summary {
            font-size: 0.8rem;
            color: var(--muted);
            margin: 0 0 6px 0;
            line-height: 1.45;
        }
        .news-item .news-meta {
            font-size: 0.72rem;
            color: #9ca3af;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .news-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.68rem;
            font-weight: 700;
            background: #fef3f2;
            color: #e53e3e;
        }
        .news-badge.hot {
            background: #fff7ed;
            color: #f05a28;
        }
        .news-badge.new {
            background: #ecfdf5;
            color: #0d8a3e;
        }
        @media (max-width: 520px) {
            .news-item {
                flex-direction: column;
                gap: 8px;
                padding: 12px;
            }
            .news-item .news-img {
                width: 100%;
                height: 120px;
            }
        }

        /* 专题推荐 */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .topic-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .topic-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--brand-200);
        }
        .topic-card .topic-img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            background: #e5e7eb;
        }
        .topic-card .topic-body {
            padding: 14px 16px;
        }
        .topic-card .topic-title {
            font-weight: 700;
            font-size: 1rem;
            margin: 0 0 4px 0;
            color: var(--text-main);
        }
        .topic-card .topic-guide {
            font-size: 0.8rem;
            color: var(--muted);
            margin: 0 0 8px 0;
            line-height: 1.4;
        }
        .topic-card .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }
        .topic-tag {
            display: inline-block;
            padding: 3px 9px;
            background: #f0f9ff;
            color: #0369a1;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }
        @media (max-width: 1024px) {
            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .topic-grid {
                grid-template-columns: 1fr;
            }
            .topic-card .topic-img {
                height: 120px;
            }
        }

        /* 用户评价 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }
        .review-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 18px;
            box-shadow: var(--shadow-card);
            border: 1px solid transparent;
            transition: all var(--transition-normal);
        }
        .review-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--brand-100);
        }
        .review-card .review-stars {
            color: #e8b828;
            font-size: 0.85rem;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }
        .review-card .review-text {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.6;
            margin: 0 0 10px 0;
        }
        .review-card .review-author {
            font-size: 0.75rem;
            color: var(--muted);
            font-weight: 500;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }

        /* FAQ */
        .faq-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-card);
            border-left: 3px solid transparent;
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        .faq-item:hover {
            border-left-color: var(--brand-500);
            box-shadow: var(--shadow-card-hover);
        }
        .faq-item .faq-q {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-main);
            margin: 0 0 8px 0;
        }
        .faq-item .faq-a {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.6;
            margin: 0;
        }
        @media (max-width: 520px) {
            .faq-item {
                padding: 14px 16px;
            }
        }

        /* CTA */
        .cta-section {
            background: var(--dark);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #fff;
            margin: 0 20px;
        }
        .cta-section .cta-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 8px 0;
        }
        .cta-section .cta-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
            margin: 0 0 20px 0;
        }
        @media (max-width: 520px) {
            .cta-section {
                padding: 32px 20px;
                margin: 0 10px;
                border-radius: var(--radius-lg);
            }
            .cta-section .cta-title {
                font-size: 1.2rem;
            }
        }

        /* Footer */
        .site-footer {
            background: #1b1e24;
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 28px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 32px;
        }
        .footer-brand {
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: 0.82rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }
        .footer-col h4 {
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            margin: 0 0 10px 0;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.8;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 8px;
        }
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.75rem;
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .footer-bottom-links {
                gap: 8px;
                font-size: 0.7rem;
            }
        }

        /* 辅助 */
        .divider {
            border: none;
            border-top: 1px solid var(--border);
            margin: 0;
        }
        .text-brand {
            color: var(--brand-500);
        }
        .text-accent {
            color: var(--accent);
        }
        .text-gold {
            color: var(--gold);
        }
        .fw-800 {
            font-weight: 800;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* 热榜表格 */
        .hot-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .hot-table th {
            background: #f9fafb;
            padding: 12px 14px;
            text-align: left;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--muted);
            border-bottom: 2px solid var(--border);
        }
        .hot-table td {
            padding: 11px 14px;
            border-bottom: 1px solid var(--border);
            color: var(--text-main);
            font-weight: 500;
        }
        .hot-table tr:hover td {
            background: #f9fdf9;
        }
        .hot-table .rank-num {
            font-weight: 800;
            color: var(--brand-500);
            font-size: 1.1rem;
        }
        @media (max-width: 520px) {
            .hot-table {
                font-size: 0.75rem;
            }
            .hot-table th,
            .hot-table td {
                padding: 8px 6px;
            }
        }

        /* 服务卡片 */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .service-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .service-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--brand-200);
        }
        .service-card .svc-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
            display: block;
        }
        .service-card .svc-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin: 0 0 4px 0;
        }
        .service-card .svc-desc {
            font-size: 0.78rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.4;
        }
        @media (max-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .service-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .service-card {
                padding: 14px 10px;
            }
            .service-card .svc-icon {
                font-size: 1.6rem;
            }
        }

/* roulang page: category6 */
:root {
            --primary-deep: #0a1628;
            --primary: #0f1b33;
            --primary-light: #162544;
            --accent-blue: #1e88e5;
            --accent-cyan: #00b8d4;
            --accent-orange: #ff6d00;
            --accent-green: #00c853;
            --accent-red: #ff1744;
            --accent-amber: #ffab00;
            --text-primary: #1a1a2e;
            --text-secondary: #4a5568;
            --text-muted: #788896;
            --text-light: #a0aec0;
            --bg-page: #f0f3f7;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --bg-dark-card: #162544;
            --bg-deep-card: #111d33;
            --border-light: #e2e8f0;
            --border-medium: #cbd5e0;
            --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
            --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
            --shadow-lg: 0 8px 28px rgba(10, 22, 40, 0.12);
            --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.16);
            --radius-xs: 4px;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --font-xs: 0.72rem;
            --font-sm: 0.82rem;
            --font-base: 0.95rem;
            --font-md: 1.05rem;
            --font-lg: 1.2rem;
            --font-xl: 1.45rem;
            --font-2xl: 1.8rem;
            --font-3xl: 2.2rem;
            --font-4xl: 2.8rem;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s ease;
            --nav-height: 56px;
            --tab-height: 44px;
            --max-width: 1280px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.65;
            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;
            outline: none;
        }
        input {
            font-family: inherit;
            outline: none;
        }
        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            background: var(--primary-deep);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            gap: 16px;
            flex-wrap: wrap;
        }
        .header-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: var(--font-xl);
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.02em;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .header-brand .brand-icon {
            font-size: 1.5em;
            line-height: 1;
        }
        .header-search-wrap {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 6px 14px;
            gap: 8px;
            flex: 0 1 320px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all var(--transition-fast);
        }
        .header-search-wrap:focus-within {
            background: rgba(255, 255, 255, 0.18);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.15);
        }
        .header-search-wrap input {
            background: transparent;
            border: none;
            color: #fff;
            font-size: var(--font-sm);
            width: 100%;
            min-width: 0;
        }
        .header-search-wrap input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }
        .header-search-wrap .search-icon {
            color: rgba(255, 255, 255, 0.55);
            font-size: var(--font-md);
            flex-shrink: 0;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-header {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: var(--font-sm);
            font-weight: 600;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-header-primary {
            background: var(--accent-orange);
            color: #fff;
            box-shadow: 0 2px 10px rgba(255, 109, 0, 0.35);
        }
        .btn-header-primary:hover {
            background: #e65100;
            box-shadow: 0 4px 16px rgba(255, 109, 0, 0.5);
            transform: translateY(-1px);
        }
        .btn-header-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
        }
        .btn-header-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        /* Tabs nav */
        .nav-tabs-bar {
            background: var(--primary);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-tabs-bar::-webkit-scrollbar {
            display: none;
        }
        .nav-tabs {
            display: flex;
            gap: 2px;
            padding: 0;
            min-width: max-content;
        }
        .nav-tab {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 16px;
            font-size: var(--font-sm);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all var(--transition-fast);
            position: relative;
            letter-spacing: 0.01em;
            border-radius: 0;
        }
        .nav-tab:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-tab.active {
            color: #ffffff;
            border-bottom-color: var(--accent-cyan);
            background: rgba(0, 184, 212, 0.08);
        }
        .nav-tab .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-red);
            animation: livePulse 1.2s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px var(--accent-red);
            }
            50% {
                opacity: 0.35;
                box-shadow: 0 0 10px var(--accent-red);
            }
        }
        .nav-tab .tab-badge {
            font-size: 0.65rem;
            background: var(--accent-orange);
            color: #fff;
            padding: 2px 7px;
            border-radius: 10px;
            font-weight: 700;
            letter-spacing: 0.03em;
        }

        /* Mobile nav toggle */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            padding: 6px;
            cursor: pointer;
        }

        /* ========== MAIN ========== */
        .site-main {
            flex: 1;
        }

        /* ========== HERO ========== */
        .hero-analytics {
            background: linear-gradient(170deg, #0a1628 0%, #0f1b33 35%, #132040 70%, #0f1b33 100%);
            padding: 36px 0 44px;
            position: relative;
            overflow: hidden;
        }
        .hero-analytics::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 184, 212, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-analytics::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(30, 136, 229, 0.06) 0%, transparent 65%);
            pointer-events: none;
        }
        .hero-analytics .container {
            position: relative;
            z-index: 1;
        }
        .hero-top-row {
            display: flex;
            align-items: flex-start;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .hero-intro {
            flex: 0 0 280px;
            min-width: 240px;
        }
        .hero-intro h1 {
            font-size: var(--font-4xl);
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 0.03em;
            line-height: 1.15;
            margin-bottom: 10px;
        }
        .hero-intro h1 .highlight {
            color: var(--accent-cyan);
            position: relative;
        }
        .hero-intro .hero-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: var(--font-md);
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .hero-intro .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }
        .hero-tag {
            font-size: var(--font-xs);
            padding: 5px 12px;
            border-radius: 14px;
            font-weight: 600;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .hero-tag-live {
            background: rgba(255, 23, 68, 0.2);
            color: #ff6b7a;
            border: 1px solid rgba(255, 23, 68, 0.3);
        }
        .hero-tag-hot {
            background: rgba(255, 109, 0, 0.2);
            color: #ff9d4d;
            border: 1px solid rgba(255, 109, 0, 0.3);
        }
        .hero-tag-new {
            background: rgba(0, 200, 83, 0.2);
            color: #5cff82;
            border: 1px solid rgba(0, 200, 83, 0.3);
        }
        .hero-actions-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .btn-hero {
            padding: 10px 22px;
            border-radius: 22px;
            font-size: var(--font-sm);
            font-weight: 700;
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-hero-primary {
            background: var(--accent-cyan);
            color: #0a1628;
            box-shadow: 0 4px 16px rgba(0, 184, 212, 0.4);
        }
        .btn-hero-primary:hover {
            background: #00d4f0;
            box-shadow: 0 6px 22px rgba(0, 184, 212, 0.55);
            transform: translateY(-2px);
        }
        .btn-hero-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.4);
        }
        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        /* Hero data grid */
        .hero-data-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
        }
        .hero-data-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 14px 12px;
            text-align: center;
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
            min-width: 0;
        }
        .hero-data-card:hover {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .hero-data-card .data-value {
            font-size: var(--font-2xl);
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 0.02em;
            line-height: 1;
            margin-bottom: 4px;
        }
        .hero-data-card .data-value.accent-cyan {
            color: var(--accent-cyan);
        }
        .hero-data-card .data-value.accent-green {
            color: var(--accent-green);
        }
        .hero-data-card .data-value.accent-orange {
            color: var(--accent-orange);
        }
        .hero-data-card .data-value.accent-amber {
            color: var(--accent-amber);
        }
        .hero-data-card .data-label {
            font-size: var(--font-xs);
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.02em;
            line-height: 1.3;
        }
        .hero-data-card .data-trend {
            font-size: 0.65rem;
            font-weight: 700;
            margin-top: 3px;
            letter-spacing: 0.03em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2px;
        }
        .trend-up {
            color: var(--accent-green);
        }
        .trend-down {
            color: var(--accent-red);
        }
        .trend-stable {
            color: var(--accent-amber);
        }
        .hero-data-card .live-indicator {
            position: absolute;
            top: 8px;
            right: 10px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent-red);
            animation: livePulse 1.2s ease-in-out infinite;
        }

        /* ========== SECTION COMMON ========== */
        .section {
            padding: 40px 0;
        }
        .section-sm {
            padding: 28px 0;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 22px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-title {
            font-size: var(--font-2xl);
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title .title-icon {
            font-size: 1.3em;
            line-height: 1;
        }
        .section-link {
            font-size: var(--font-sm);
            font-weight: 600;
            color: var(--accent-blue);
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .section-link:hover {
            color: #1565c0;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        /* ========== METRICS GRID ========== */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .metric-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 14px;
            position: relative;
        }
        .metric-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: var(--accent-cyan);
        }
        .metric-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            font-weight: 700;
        }
        .metric-icon.blue {
            background: #e3f2fd;
            color: #1565c0;
        }
        .metric-icon.cyan {
            background: #e0f7fa;
            color: #00838f;
        }
        .metric-icon.orange {
            background: #fff3e0;
            color: #e65100;
        }
        .metric-icon.green {
            background: #e8f5e9;
            color: #2e7d32;
        }
        .metric-info .metric-value {
            font-size: var(--font-xl);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 3px;
        }
        .metric-info .metric-label {
            font-size: var(--font-xs);
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }
        .metric-info .metric-note {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-top: 2px;
        }

        /* ========== HOT RANKING ========== */
        .ranking-panel {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        .ranking-col {
            padding: 20px 24px;
            border-right: 1px solid var(--border-light);
        }
        .ranking-col:last-child {
            border-right: none;
        }
        .ranking-col h3 {
            font-size: var(--font-lg);
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            cursor: pointer;
            font-size: var(--font-sm);
        }
        .ranking-item:hover {
            background: #f7fafc;
        }
        .ranking-pos {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: var(--font-xs);
            flex-shrink: 0;
            background: #edf2f7;
            color: var(--text-secondary);
        }
        .ranking-pos.top {
            background: #ff6d00;
            color: #fff;
        }
        .ranking-pos.top2 {
            background: #1e88e5;
            color: #fff;
        }
        .ranking-pos.top3 {
            background: #00b8d4;
            color: #fff;
        }
        .ranking-name {
            flex: 1;
            font-weight: 600;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ranking-value {
            font-weight: 700;
            color: var(--accent-blue);
            font-size: var(--font-sm);
            white-space: nowrap;
        }

        /* ========== REPORT CARDS ========== */
        .report-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        .report-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .report-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .report-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .report-card-body {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .report-card-body .report-tag {
            display: inline-block;
            font-size: var(--font-xs);
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.03em;
            align-self: flex-start;
        }
        .tag-analysis {
            background: #e3f2fd;
            color: #1565c0;
        }
        .tag-prediction {
            background: #fff3e0;
            color: #e65100;
        }
        .tag-review {
            background: #e8f5e9;
            color: #2e7d32;
        }
        .tag-special {
            background: #fce4ec;
            color: #c62828;
        }
        .report-card-body h3 {
            font-size: var(--font-md);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
        }
        .report-card-body .report-desc {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
        }
        .report-card-body .report-meta {
            display: flex;
            gap: 12px;
            font-size: var(--font-xs);
            color: var(--text-muted);
            align-items: center;
            flex-wrap: wrap;
        }

        /* ========== TREND BARS ========== */
        .trend-section-inner {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }
        .trend-bars {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .trend-bar-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .trend-bar-label {
            width: 120px;
            font-size: var(--font-sm);
            font-weight: 600;
            color: var(--text-secondary);
            flex-shrink: 0;
            text-align: right;
        }
        .trend-bar-track {
            flex: 1;
            height: 22px;
            background: #edf2f7;
            border-radius: 11px;
            overflow: hidden;
            position: relative;
        }
        .trend-bar-fill {
            height: 100%;
            border-radius: 11px;
            transition: width 0.6s ease;
            display: flex;
            align-items: center;
            padding-left: 10px;
            font-size: 0.7rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.03em;
            min-width: 40px;
        }
        .fill-blue {
            background: linear-gradient(90deg, #1e88e5, #42a5f5);
        }
        .fill-cyan {
            background: linear-gradient(90deg, #00b8d4, #26c6da);
        }
        .fill-orange {
            background: linear-gradient(90deg, #ff6d00, #ff9100);
        }
        .fill-green {
            background: linear-gradient(90deg, #00c853, #69f0ae);
        }
        .fill-purple {
            background: linear-gradient(90deg, #7c4dff, #b388ff);
        }
        .trend-bar-value {
            width: 50px;
            font-weight: 700;
            font-size: var(--font-sm);
            color: var(--text-primary);
            flex-shrink: 0;
            text-align: left;
        }

        /* ========== NEWS LIST ========== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 16px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .news-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--accent-cyan);
        }
        .news-item .news-date {
            font-size: var(--font-xs);
            color: var(--text-muted);
            white-space: nowrap;
            flex-shrink: 0;
            min-width: 70px;
            font-weight: 500;
            padding-top: 2px;
        }
        .news-item .news-content {
            flex: 1;
            min-width: 0;
        }
        .news-item .news-content h4 {
            font-size: var(--font-base);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 3px;
            line-height: 1.4;
        }
        .news-item .news-content p {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item .news-badge {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            letter-spacing: 0.04em;
            flex-shrink: 0;
            margin-top: 3px;
        }
        .badge-hot {
            background: #ff1744;
            color: #fff;
        }
        .badge-new {
            background: #00c853;
            color: #fff;
        }
        .badge-rec {
            background: #ff6d00;
            color: #fff;
        }

        /* ========== TOPIC GRID ========== */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .topic-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: all var(--transition-normal);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .topic-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--accent-blue);
        }
        .topic-card .topic-icon {
            font-size: 2.2rem;
            line-height: 1;
        }
        .topic-card h3 {
            font-size: var(--font-base);
            font-weight: 700;
            color: var(--text-primary);
        }
        .topic-card .topic-desc {
            font-size: var(--font-xs);
            color: var(--text-muted);
            line-height: 1.5;
        }
        .topic-card .topic-tags {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .topic-card .topic-mini-tag {
            font-size: 0.6rem;
            padding: 2px 7px;
            border-radius: 9px;
            font-weight: 600;
            background: #edf2f7;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
        }

        /* ========== REVIEWS ========== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .review-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
        }
        .review-card:hover {
            box-shadow: var(--shadow-md);
        }
        .review-stars {
            color: #ffab00;
            font-size: var(--font-sm);
            letter-spacing: 2px;
            margin-bottom: 6px;
        }
        .review-text {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 8px;
        }
        .review-author {
            font-size: var(--font-xs);
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ========== FAQ ========== */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .faq-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--accent-cyan);
        }
        .faq-item .faq-q {
            font-weight: 700;
            font-size: var(--font-base);
            color: var(--text-primary);
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .faq-item .faq-q .faq-icon {
            color: var(--accent-cyan);
            flex-shrink: 0;
            font-weight: 900;
        }
        .faq-item .faq-a {
            font-size: var(--font-sm);
            color: var(--text-secondary);
            line-height: 1.65;
            padding-left: 22px;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #0f1b33 0%, #162544 50%, #0f1b33 100%);
            padding: 48px 0;
            text-align: center;
            border-radius: var(--radius-xl);
            margin: 0 0 40px;
        }
        .cta-section .container {
            max-width: 700px;
        }
        .cta-section h2 {
            font-size: var(--font-3xl);
            font-weight: 900;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.03em;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.7);
            font-size: var(--font-md);
            margin-bottom: 22px;
            line-height: 1.6;
        }
        .cta-form {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-form input {
            padding: 12px 20px;
            border-radius: 26px;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: var(--font-sm);
            width: 300px;
            max-width: 100%;
            transition: all var(--transition-fast);
        }
        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .cta-form input:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.2);
        }
        .btn-cta {
            padding: 12px 28px;
            border-radius: 26px;
            font-size: var(--font-base);
            font-weight: 700;
            background: var(--accent-orange);
            color: #fff;
            letter-spacing: 0.03em;
            transition: all var(--transition-fast);
            white-space: nowrap;
            box-shadow: 0 4px 18px rgba(255, 109, 0, 0.4);
        }
        .btn-cta:hover {
            background: #e65100;
            box-shadow: 0 6px 24px rgba(255, 109, 0, 0.55);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0a1628;
            color: rgba(255, 255, 255, 0.75);
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 28px;
            margin-bottom: 24px;
        }
        .footer-brand {
            font-size: var(--font-lg);
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: var(--font-sm);
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }
        .footer-col h4 {
            font-size: var(--font-sm);
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: var(--font-sm);
            color: rgba(255, 255, 255, 0.5);
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            text-align: center;
            font-size: var(--font-xs);
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 8px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: color var(--transition-fast);
            font-size: var(--font-xs);
        }
        .footer-bottom-links a:hover {
            color: var(--accent-cyan);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1120px) {
            .hero-data-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .metrics-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .topic-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .ranking-panel {
                grid-template-columns: 1fr;
            }
            .ranking-col {
                border-right: none;
                border-bottom: 1px solid var(--border-light);
            }
            .ranking-col:last-child {
                border-bottom: none;
            }
            .report-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-top-row {
                flex-direction: column;
            }
            .hero-intro {
                flex: 0 0 auto;
                width: 100%;
            }
            .hero-intro h1 {
                font-size: var(--font-3xl);
            }
            .hero-data-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .hero-data-card {
                padding: 10px 8px;
            }
            .hero-data-card .data-value {
                font-size: var(--font-lg);
            }
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .report-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .reviews-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .news-item {
                flex-wrap: wrap;
                gap: 6px;
            }
            .header-search-wrap {
                flex: 0 0 100%;
                order: 3;
                max-width: 100%;
            }
            .header-top {
                gap: 10px;
            }
            .header-actions {
                order: 2;
            }
            .header-brand {
                order: 1;
            }
            .nav-tab {
                padding: 8px 11px;
                font-size: 0.75rem;
                gap: 3px;
            }
            .section-title {
                font-size: var(--font-xl);
            }
            .ranking-panel {
                grid-template-columns: 1fr;
            }
            .cta-section {
                padding: 32px 16px;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: var(--font-2xl);
            }
            .cta-form {
                flex-direction: column;
                align-items: center;
            }
            .cta-form input {
                width: 100%;
                max-width: 340px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                text-align: center;
            }
            .trend-bar-label {
                width: 80px;
                font-size: 0.7rem;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .nav-tabs-bar {
                display: block;
            }
        }

        @media (max-width: 520px) {
            .hero-data-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .hero-data-card {
                padding: 8px 6px;
                border-radius: var(--radius-sm);
            }
            .hero-data-card .data-value {
                font-size: var(--font-md);
            }
            .hero-data-card .data-label {
                font-size: 0.6rem;
            }
            .hero-intro h1 {
                font-size: var(--font-2xl);
            }
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .metric-card {
                padding: 12px 10px;
                gap: 8px;
            }
            .metric-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .topic-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .report-card-img {
                height: 150px;
            }
            .trend-bar-label {
                width: 60px;
                font-size: 0.65rem;
            }
            .trend-bar-value {
                width: 36px;
                font-size: 0.7rem;
            }
            .nav-tab {
                padding: 7px 9px;
                font-size: 0.7rem;
            }
            .btn-header {
                padding: 6px 12px;
                font-size: 0.7rem;
            }
            .header-brand {
                font-size: var(--font-md);
            }
            .section {
                padding: 24px 0;
            }
            .container {
                padding: 0 10px;
            }
        }

/* roulang page: category7 */
:root {
            --color-brand: #2563eb;
            --color-brand-dark: #1d4ed8;
            --color-accent: #f97316;
            --color-accent-glow: #fb923c;
            --color-bg: #f8fafc;
            --color-surface: #ffffff;
            --color-text: #1e293b;
            --color-text-muted: #64748b;
            --color-text-weak: #94a3b8;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --color-live: #ef4444;
            --color-live-glow: #fca5a5;
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
            --radius-2xl: 1.25rem;
            --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
            --shadow-nav: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.03);
            --transition-fast: 150ms ease;
            --transition-smooth: 250ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            line-height: 1.7;
            background-color: var(--color-bg);
            color: var(--color-text);
            font-size: 16px;
        }

        a {
            color: inherit;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        .container {
            max-width: 1260px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (max-width: 768px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        /* Header & Navigation */
        .site-header {
            background: var(--color-surface);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-nav);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .header-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-brand-dark);
            letter-spacing: -0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color var(--transition-fast);
        }
        .header-logo:hover {
            color: var(--color-brand);
        }
        .header-logo .logo-icon {
            font-size: 1.6rem;
        }
        .header-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-brand-sm {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 16px;
            background: var(--color-brand);
            color: #fff;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-brand-sm:hover {
            background: var(--color-brand-dark);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
            transform: translateY(-1px);
        }
        .btn-brand-sm:focus-visible {
            outline: 3px solid rgba(37, 99, 235, 0.4);
            outline-offset: 2px;
        }

        /* Nav Tabs */
        .nav-tabs-wrapper {
            border-top: 1px solid var(--color-border-light);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-tabs-wrapper::-webkit-scrollbar {
            display: none;
        }
        .nav-tabs {
            display: flex;
            gap: 4px;
            padding: 6px 0;
            white-space: nowrap;
            min-width: max-content;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 9px 16px;
            border-radius: 9999px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-muted);
            transition: all var(--transition-fast);
            cursor: pointer;
            position: relative;
            white-space: nowrap;
        }
        .nav-tab:hover {
            color: var(--color-brand);
            background: rgba(37, 99, 235, 0.05);
        }
        .nav-tab.active {
            color: #fff;
            background: var(--color-brand);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
        }
        .nav-tab:focus-visible {
            outline: 2px solid rgba(37, 99, 235, 0.5);
            outline-offset: 2px;
        }
        .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-live);
            animation: livePulse 1.4s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes livePulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
            }
        }
        @keyframes liveGlow {
            0%,
            100% {
                box-shadow: 0 0 4px 0 rgba(239, 68, 68, 0.5);
            }
            50% {
                box-shadow: 0 0 16px 4px rgba(239, 68, 68, 0.25);
            }
        }
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #fef2f2;
            color: #dc2626;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 9999px;
            animation: liveGlow 2s ease-in-out infinite;
            letter-spacing: 0.03em;
        }
        .live-badge .live-dot-sm {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #dc2626;
            animation: livePulse 1.4s ease-in-out infinite;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1b3478 70%, #152456 100%);
            padding: 60px 0 50px;
            color: #fff;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 1;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
        }
        .banner-breadcrumb {
            display: flex;
            gap: 6px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .banner-breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
            transition: color var(--transition-fast);
        }
        .banner-breadcrumb a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .banner-breadcrumb .sep {
            color: rgba(255, 255, 255, 0.4);
        }
        .page-banner h1 {
            font-size: 2.4rem;
            font-weight: 800;
            margin: 0 0 10px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .page-banner .banner-sub {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 620px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0 32px;
            }
            .page-banner h1 {
                font-size: 1.6rem;
            }
            .page-banner .banner-sub {
                font-size: 0.9rem;
            }
        }

        /* Section Styles */
        .section {
            padding: 48px 0;
        }
        .section-sm {
            padding: 32px 0;
        }
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text);
            margin: 0 0 6px;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            margin: 0 0 28px;
        }
        .section-header {
            margin-bottom: 28px;
        }
        .section-header-center {
            text-align: center;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .section {
                padding: 32px 0;
            }
            .section-title {
                font-size: 1.25rem;
            }
        }

        /* Data Cards Grid */
        .data-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .data-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 640px) {
            .data-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        .data-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 18px 16px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .data-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: #cbd5e1;
        }
        .data-card .data-icon {
            font-size: 1.3rem;
            margin-bottom: 6px;
        }
        .data-card .data-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-text);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .data-card .data-label {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }
        .data-card .data-trend {
            font-size: 0.72rem;
            margin-top: 4px;
            font-weight: 500;
        }
        .data-card .data-trend.up {
            color: #16a34a;
        }
        .data-card .data-trend.down {
            color: #dc2626;
        }
        .data-card .data-trend.neutral {
            color: var(--color-text-muted);
        }
        .data-card.card-accent-top {
            border-top: 3px solid var(--color-brand);
        }
        .data-card.card-accent-live {
            border-left: 3px solid var(--color-live);
        }

        /* Live Match Cards */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .match-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
        }
        .match-card {
            background: var(--color-surface);
            border-radius: var(--radius-xl);
            padding: 20px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .match-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .match-card .match-status-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        .match-card .match-league {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }
        .match-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 8px;
        }
        .match-card .team-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-text);
            text-align: center;
            flex: 1;
            line-height: 1.2;
        }
        .match-card .match-score {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-text);
            padding: 4px 12px;
            background: #f8fafc;
            border-radius: 8px;
            letter-spacing: 0.04em;
            min-width: 60px;
            text-align: center;
        }
        .match-card .match-score.live-score {
            color: #dc2626;
            animation: liveGlow 2s ease-in-out infinite;
        }
        .match-card .match-meta {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-top: 6px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .match-card .btn-watch {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 12px;
            padding: 8px 18px;
            background: var(--color-brand);
            color: #fff;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            width: 100%;
            justify-content: center;
        }
        .match-card .btn-watch:hover {
            background: var(--color-brand-dark);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
            transform: translateY(-1px);
        }

        /* Platform Cards */
        .platform-cards {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .platform-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 640px) {
            .platform-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        .platform-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 20px 14px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .platform-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: #cbd5e1;
        }
        .platform-card .platform-icon {
            font-size: 2.2rem;
            margin-bottom: 8px;
            display: block;
        }
        .platform-card .platform-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--color-text);
        }
        .platform-card .platform-detail {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-top: 3px;
        }

        /* League Section */
        .league-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .league-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .league-grid {
                grid-template-columns: 1fr;
            }
        }
        .league-card {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            aspect-ratio: 16 / 10;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
        }
        .league-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .league-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .league-card .league-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 16px;
        }
        .league-card .league-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            margin: 0;
        }
        .league-card .league-count {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 520px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--color-surface);
            border-radius: var(--radius-xl);
            padding: 22px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-smooth);
        }
        .review-card:hover {
            box-shadow: var(--shadow-card-hover);
        }
        .review-card .review-stars {
            color: #f59e0b;
            font-size: 0.85rem;
            margin-bottom: 6px;
            letter-spacing: 2px;
        }
        .review-card .review-text {
            font-size: 0.9rem;
            color: var(--color-text);
            line-height: 1.6;
        }
        .review-card .review-author {
            font-size: 0.78rem;
            color: var(--color-text-muted);
            margin-top: 8px;
            font-weight: 500;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-item:hover {
            border-color: #cbd5e1;
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-text);
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: #f8fafc;
        }
        .faq-question:focus-visible {
            outline: 2px solid rgba(37, 99, 235, 0.4);
            outline-offset: -2px;
        }
        .faq-question .faq-icon {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            font-size: 0.88rem;
            color: var(--color-text-muted);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 16px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #1d4ed8 100%);
            color: #fff;
            border-radius: var(--radius-2xl);
            padding: 40px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            z-index: 1;
        }
        .cta-section>* {
            position: relative;
            z-index: 2;
        }
        .cta-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 8px;
        }
        .cta-section p {
            font-size: 0.95rem;
            opacity: 0.9;
            max-width: 500px;
            margin: 0 auto 20px;
        }
        .btn-cta-lg {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 28px;
            background: #fff;
            color: var(--color-brand-dark);
            border-radius: 9999px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }
        .btn-cta-lg:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
            background: #f0f9ff;
        }

        /* Footer */
        .site-footer {
            background: var(--surface-dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 48px 0 28px;
            font-size: 0.88rem;
            margin-top: 40px;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        @media (max-width: 768px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-brand {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
            font-size: 0.82rem;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 0 10px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            transition: color var(--transition-fast);
            font-size: 0.82rem;
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 16px;
            text-align: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.45);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 10px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: color var(--transition-fast);
            font-size: 0.75rem;
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }

        /* Responsive utility */
        @media (max-width: 768px) {
            .hide-mobile {
                display: none !important;
            }
            .header-top {
                padding: 8px 0;
            }
            .header-logo {
                font-size: 1.25rem;
            }
        }
        @media (min-width: 769px) {
            .show-mobile-only {
                display: none !important;
            }
        }

        /* Tag styles */
        .tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 9999px;
            font-size: 0.72rem;
            font-weight: 500;
            background: #f1f5f9;
            color: var(--color-text-muted);
            border: 1px solid #e2e8f0;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .tag:hover {
            background: #e2e8f0;
            color: var(--color-text);
        }
        .tag.tag-hot {
            background: #fef2f2;
            color: #dc2626;
            border-color: #fecaca;
        }
        .tag.tag-new {
            background: #eff6ff;
            color: #2563eb;
            border-color: #bfdbfe;
        }

/* roulang page: category5 */
:root {
            --primary: #16a34a;
            --primary-dark: #15803d;
            --primary-light: #dcfce7;
            --secondary: #1e3a5f;
            --secondary-light: #334155;
            --accent: #f59e0b;
            --accent-light: #fef3c7;
            --bg: #f1f5f9;
            --bg-card: #ffffff;
            --bg-dark: #0f172a;
            --text: #1e293b;
            --text-weak: #64748b;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10), 0 3px 10px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.13), 0 4px 12px rgba(0, 0, 0, 0.06);
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1280px;
            --nav-height: 56px;
            --header-total-height: 120px;
        }

        *,
        *::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: 15px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition);
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        input {
            font-family: inherit;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 10px 16px;
            font-size: 14px;
            transition: all var(--transition);
            background: #fff;
            color: var(--text);
        }
        input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
            outline: none;
        }
        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .site-header {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
        }
        .header-logo {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }
        .header-logo .logo-icon {
            font-size: 1.6rem;
            color: var(--primary);
            animation: pulse-icon 2.5s ease-in-out infinite;
        }
        @keyframes pulse-icon {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.18);
            }
        }
        .header-search {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg);
            border-radius: 50px;
            padding: 6px 8px 6px 18px;
            border: 1px solid var(--border);
            flex: 1;
            max-width: 420px;
            transition: all var(--transition);
        }
        .header-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
            background: #fff;
        }
        .header-search input {
            border: none;
            background: transparent;
            padding: 6px 0;
            flex: 1;
            min-width: 0;
            font-size: 14px;
            outline: none;
            box-shadow: none;
            border-radius: 0;
        }
        .header-search input:focus {
            box-shadow: none;
            border: none;
            outline: none;
        }
        .header-search button {
            background: var(--primary);
            color: #fff;
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            transition: all var(--transition);
            letter-spacing: 0.2px;
        }
        .header-search button:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
        .header-cta-sm {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .btn-live-pulse {
            background: #ef4444;
            color: #fff;
            border-radius: 50px;
            padding: 9px 18px;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 7px;
            animation: live-glow 1.8s ease-in-out infinite;
            letter-spacing: 0.3px;
        }
        @keyframes live-glow {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
            }
        }
        .btn-live-pulse .dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #fff;
            animation: blink-dot 0.8s ease-in-out infinite;
        }
        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.25;
            }
        }
        .btn-live-pulse:hover {
            background: #dc2626;
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
            animation: none;
        }

        /* Nav Tabs */
        .nav-row {
            background: var(--secondary);
        }
        .nav-tabs {
            display: flex;
            align-items: center;
            gap: 2px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 4px 0;
        }
        .nav-tabs::-webkit-scrollbar {
            display: none;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 10px 16px;
            font-size: 13.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.78);
            border-radius: 8px;
            white-space: nowrap;
            transition: all var(--transition);
            letter-spacing: 0.1px;
            flex-shrink: 0;
            position: relative;
        }
        .nav-tab:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-tab.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.18);
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }
        .nav-tab .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #ef4444;
            display: inline-block;
            animation: blink-dot 0.8s ease-in-out infinite;
        }

        /* Mobile nav toggle */
        .mobile-nav-toggle {
            display: none;
            background: none;
            font-size: 1.5rem;
            color: var(--secondary);
            padding: 6px;
            border-radius: var(--radius-sm);
        }
        @media (max-width: 860px) {
            .mobile-nav-toggle {
                display: block;
            }
            .header-search {
                max-width: 200px;
                padding: 4px 6px 4px 12px;
            }
            .header-search button {
                padding: 7px 14px;
                font-size: 12px;
            }
            .btn-live-pulse {
                padding: 7px 12px;
                font-size: 11px;
                gap: 4px;
            }
            .header-logo {
                font-size: 1.1rem;
            }
            .nav-tabs {
                gap: 0;
                padding: 4px 6px;
            }
            .nav-tab {
                padding: 8px 11px;
                font-size: 12px;
                border-radius: 6px;
            }
        }
        @media (max-width: 600px) {
            .header-top {
                flex-wrap: wrap;
                gap: 8px;
            }
            .header-search {
                order: 3;
                max-width: 100%;
                flex: 1 1 100%;
                min-width: 100%;
            }
            .header-cta-sm {
                order: 2;
            }
            .header-logo {
                order: 1;
            }
            .nav-tab {
                padding: 7px 9px;
                font-size: 11px;
                gap: 3px;
            }
        }

        /* Page Banner */
        .page-banner {
            background: linear-gradient(170deg, #0f1a2e 0%, #1a2f44 30%, #1e3a5f 60%, #162d4a 100%);
            position: relative;
            overflow: hidden;
            padding: 40px 0 36px;
            color: #fff;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.18;
            z-index: 0;
        }
        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
            z-index: 1;
        }
        .page-banner .container {
            position: relative;
            z-index: 2;
        }
        .banner-breadcrumb {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .banner-breadcrumb a {
            color: rgba(255, 255, 255, 0.75);
        }
        .banner-breadcrumb a:hover {
            color: #fff;
        }
        .banner-title-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }
        .banner-title {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.4px;
            line-height: 1.2;
            color: #fff;
        }
        .banner-title .highlight {
            color: var(--accent);
            position: relative;
        }
        .banner-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            line-height: 1.6;
        }
        .banner-stats-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .banner-stat-mini {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius);
            padding: 10px 16px;
            text-align: center;
            min-width: 80px;
            backdrop-filter: blur(6px);
            transition: all var(--transition);
            cursor: default;
        }
        .banner-stat-mini:hover {
            background: rgba(255, 255, 255, 0.16);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        .banner-stat-mini .stat-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: -0.5px;
        }
        .banner-stat-mini .stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 2px;
        }
        .banner-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }
        .banner-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            padding: 7px 15px;
            font-size: 12.5px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .banner-tag:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            transform: translateY(-1px);
        }
        .banner-tag .tag-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }
        @media (max-width: 768px) {
            .banner-title {
                font-size: 1.4rem;
            }
            .banner-stats-row {
                gap: 8px;
            }
            .banner-stat-mini {
                padding: 8px 11px;
                min-width: 60px;
            }
            .banner-stat-mini .stat-num {
                font-size: 1.2rem;
            }
            .banner-tag {
                padding: 5px 10px;
                font-size: 11px;
            }
        }

        /* Section */
        .section {
            padding: 44px 0;
        }
        .section-sm {
            padding: 28px 0;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 22px;
            flex-wrap: wrap;
        }
        .section-title {
            font-size: 1.35rem;
            font-weight: 750;
            color: var(--secondary);
            letter-spacing: -0.2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title .title-icon {
            color: var(--primary);
            font-size: 1.3rem;
        }
        .section-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .section-link:hover {
            color: var(--primary-dark);
            gap: 8px;
        }

        /* Team Card Grid */
        .team-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 14px;
        }
        .team-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
            border-color: #cbd5e1;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11), 0 5px 14px rgba(0, 0, 0, 0.05);
        }
        .team-card-img {
            position: relative;
            height: 140px;
            overflow: hidden;
            background: #e2e8f0;
        }
        .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-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: #1e293b;
            font-size: 10.5px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            letter-spacing: 0.3px;
            z-index: 2;
        }
        .team-card-body {
            padding: 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .team-card-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--secondary);
            letter-spacing: -0.2px;
            line-height: 1.3;
        }
        .team-card-league {
            font-size: 12px;
            color: var(--text-weak);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .team-card-stats {
            display: flex;
            gap: 12px;
            margin-top: 4px;
            font-size: 12px;
            color: var(--text-weak);
            flex-wrap: wrap;
        }
        .team-card-stats span {
            background: var(--bg);
            padding: 3px 9px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--text);
            font-size: 11px;
        }
        .team-card-stats .win {
            color: #16a34a;
        }
        .team-card-stats .draw {
            color: #f59e0b;
        }
        .team-card-stats .loss {
            color: #ef4444;
        }
        @media (max-width: 520px) {
            .team-card-grid {
                grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
                gap: 10px;
            }
            .team-card-img {
                height: 100px;
            }
            .team-card-body {
                padding: 10px 12px;
            }
            .team-card-name {
                font-size: 0.9rem;
            }
        }

        /* Data indicator row */
        .data-indicator-row {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }
        .data-indicator {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 16px 18px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition);
            cursor: default;
        }
        .data-indicator:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
            border-color: #cbd5e1;
        }
        .data-indicator .ind-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .ind-icon.green {
            background: #dcfce7;
            color: #16a34a;
        }
        .ind-icon.blue {
            background: #dbeafe;
            color: #2563eb;
        }
        .ind-icon.amber {
            background: #fef3c7;
            color: #f59e0b;
        }
        .ind-icon.red {
            background: #fee2e2;
            color: #ef4444;
        }
        .ind-icon.purple {
            background: #ede9fe;
            color: #7c3aed;
        }
        .ind-icon.teal {
            background: #ccfbf1;
            color: #0d9488;
        }
        .data-indicator .ind-info .ind-val {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--secondary);
            letter-spacing: -0.3px;
        }
        .data-indicator .ind-info .ind-label {
            font-size: 12px;
            color: var(--text-weak);
        }
        .data-indicator .ind-info .ind-trend {
            font-size: 11px;
            font-weight: 600;
            margin-top: 2px;
        }
        .ind-trend.up {
            color: #16a34a;
        }
        .ind-trend.down {
            color: #ef4444;
        }

        /* News list */
        .news-list-compact {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .news-item-compact {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 12px 16px;
            border: 1px solid var(--border);
            transition: all var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }
        .news-item-compact:hover {
            box-shadow: var(--shadow);
            border-color: #cbd5e1;
            transform: translateX(3px);
        }
        .news-item-compact .news-date {
            font-size: 11px;
            color: var(--text-muted);
            white-space: nowrap;
            font-weight: 500;
            min-width: 50px;
        }
        .news-item-compact .news-title {
            flex: 1;
            font-weight: 600;
            font-size: 14px;
            color: var(--secondary);
            line-height: 1.4;
        }
        .news-item-compact .news-badge {
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .badge-hot {
            background: #fee2e2;
            color: #ef4444;
        }
        .badge-new {
            background: #dcfce7;
            color: #16a34a;
        }
        .badge-rec {
            background: #fef3c7;
            color: #d97706;
        }
        @media (max-width: 520px) {
            .news-item-compact {
                flex-wrap: wrap;
                gap: 6px;
                padding: 10px 12px;
            }
            .news-item-compact .news-title {
                font-size: 12.5px;
                flex: 1 1 100%;
            }
        }

        /* Topic cards */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 14px;
        }
        .topic-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }
        .topic-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .topic-card-img {
            height: 150px;
            overflow: hidden;
            background: #e2e8f0;
        }
        .topic-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .topic-card:hover .topic-card-img img {
            transform: scale(1.05);
        }
        .topic-card-body {
            padding: 14px 16px;
        }
        .topic-card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        .topic-card-body p {
            font-size: 12.5px;
            color: var(--text-weak);
            line-height: 1.5;
        }
        .topic-card-body .topic-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .topic-tags span {
            font-size: 10.5px;
            background: var(--bg);
            padding: 3px 9px;
            border-radius: 50px;
            color: var(--text-weak);
            font-weight: 500;
        }
        @media (max-width: 520px) {
            .topic-grid {
                grid-template-columns: 1fr;
            }
            .topic-card-img {
                height: 120px;
            }
        }

        /* Reviews */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 14px;
        }
        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .review-card:hover {
            box-shadow: var(--shadow);
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }
        .review-stars {
            color: #f59e0b;
            font-size: 13px;
            letter-spacing: 2px;
            margin-bottom: 6px;
        }
        .review-text {
            font-size: 13.5px;
            color: var(--text);
            line-height: 1.6;
        }
        .review-author {
            font-size: 12px;
            color: var(--text-weak);
            margin-top: 8px;
            font-weight: 600;
        }
        @media (max-width: 520px) {
            .review-grid {
                grid-template-columns: 1fr;
            }
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
        }
        .faq-item:hover {
            box-shadow: var(--shadow);
        }
        .faq-q {
            padding: 16px 20px;
            font-weight: 700;
            font-size: 14.5px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .faq-q .faq-arrow {
            transition: transform var(--transition);
            font-size: 12px;
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-a {
            padding: 0 20px 16px;
            font-size: 13.5px;
            color: var(--text-weak);
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-a {
            display: block;
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 40%, #166534 100%);
            border-radius: var(--radius-xl);
            padding: 38px 32px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
            z-index: 0;
        }
        .cta-block>* {
            position: relative;
            z-index: 1;
        }
        .cta-block h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .cta-block p {
            font-size: 14px;
            opacity: 0.85;
            margin-bottom: 18px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-block .btn-cta-lg {
            display: inline-block;
            background: #fff;
            color: #16a34a;
            font-weight: 700;
            font-size: 15px;
            padding: 12px 30px;
            border-radius: 50px;
            letter-spacing: 0.2px;
            transition: all var(--transition);
            box-shadow: var(--shadow-md);
        }
        .cta-block .btn-cta-lg:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: #15803d;
        }
        @media (max-width: 520px) {
            .cta-block {
                padding: 28px 18px;
            }
            .cta-block h3 {
                font-size: 1.2rem;
            }
        }

        /* Footer */
        .site-footer {
            background: var(--bg-dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 40px 0 20px;
            font-size: 13px;
            line-height: 1.8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 28px;
            margin-bottom: 24px;
        }
        .footer-brand {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }
        .footer-desc {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }
        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.2px;
        }
        .footer-col ul li {
            margin-bottom: 4px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 6px;
            font-size: 12px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: color var(--transition);
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }
        .footer-bottom p {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.35);
            margin: 3px 0;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Utility */
        .text-primary {
            color: var(--primary);
        }
        .text-accent {
            color: var(--accent);
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-2 {
            margin-bottom: 8px;
        }
        .mb-4 {
            margin-bottom: 16px;
        }
        .gap-sm {
            gap: 8px;
        }

/* roulang page: category3 */
:root {
            --primary: #1a5c3a;
            --primary-dark: #0f3d24;
            --primary-light: #2d8a4e;
            --accent: #e8b830;
            --accent-light: #f5d066;
            --bg: #f0f2f5;
            --bg-alt: #e8eaef;
            --card-bg: #ffffff;
            --card-bg-alt: #f9fafb;
            --text: #1a1a2e;
            --text-heading: #0f1923;
            --text-muted: #6b7280;
            --text-weak: #9ca3af;
            --border: #e0e3e8;
            --border-light: #eef0f4;
            --danger: #e03131;
            --success: #2b8a3e;
            --warning: #e67700;
            --live: #ff3b3b;
            --info: #1c7ed6;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.11);
            --radius-xs: 4px;
            --radius-sm: 6px;
            --radius: 8px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 20px;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', monospace;
            --transition-fast: 0.15s ease;
            --transition: 0.25s ease;
            --transition-slow: 0.35s ease;
            --nav-height: 56px;
            --nav-tabs-height: 44px;
            --container-max: 1280px;
            --container-narrow: 960px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.65;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            letter-spacing: 0.01em;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-fast);
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary-light);
            outline-offset: 2px;
            border-radius: var(--radius-xs);
        }
        input {
            font-family: inherit;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 10px 14px;
            font-size: 0.95rem;
            transition: border var(--transition-fast), box-shadow var(--transition-fast);
            background: var(--card-bg);
            color: var(--text);
        }
        input:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.08);
            outline: none;
        }
        ul {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-heading);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.2rem;
        }
        h2 {
            font-size: 1.65rem;
        }
        h3 {
            font-size: 1.25rem;
        }
        h4 {
            font-size: 1.05rem;
        }
        table {
            border-collapse: collapse;
            width: 100%;
        }
        th,
        td {
            text-align: left;
            padding: 10px 12px;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.9rem;
        }
        th {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            white-space: nowrap;
            background: var(--card-bg-alt);
            position: sticky;
            top: 0;
            z-index: 1;
        }
        tr:hover td {
            background: rgba(26, 92, 58, 0.02);
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        .container-narrow {
            max-width: var(--container-narrow);
        }

        /* Header */
        .site-header {
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid var(--border-light);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            gap: 16px;
        }
        .header-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary-dark);
            white-space: nowrap;
            letter-spacing: -0.02em;
        }
        .header-brand .brand-icon {
            font-size: 1.5rem;
        }
        .header-search {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--bg);
            border-radius: 20px;
            padding: 0 6px 0 14px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            max-width: 260px;
            width: 100%;
        }
        .header-search:focus-within {
            border-color: var(--primary-light);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(26, 92, 58, 0.05);
        }
        .header-search input {
            border: none;
            background: transparent;
            padding: 8px 4px;
            font-size: 0.85rem;
            width: 100%;
            border-radius: 20px;
        }
        .header-search input:focus {
            outline: none;
            box-shadow: none;
        }
        .header-search button {
            background: var(--primary);
            color: #fff;
            border-radius: 16px;
            padding: 7px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .header-search button:hover {
            background: var(--primary-dark);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-header-cta {
            background: var(--accent);
            color: #1a1a1a;
            padding: 8px 16px;
            border-radius: 18px;
            font-weight: 700;
            font-size: 0.85rem;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-header-cta:hover {
            background: var(--accent-light);
            color: #1a1a1a;
        }

        /* Nav Tabs */
        .nav-tabs-wrapper {
            background: #fff;
            border-top: 1px solid var(--border-light);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-tabs-wrapper::-webkit-scrollbar {
            display: none;
        }
        .nav-tabs {
            display: flex;
            gap: 0;
            height: var(--nav-tabs-height);
            align-items: stretch;
            min-width: max-content;
            padding: 0 4px;
        }
        .nav-tab {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 15px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-muted);
            border-bottom: 3px solid transparent;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            cursor: pointer;
            border-radius: 0;
        }
        .nav-tab:hover {
            color: var(--text);
            background: rgba(0, 0, 0, 0.02);
        }
        .nav-tab.active {
            color: var(--primary-dark);
            border-bottom-color: var(--primary);
            font-weight: 700;
        }
        .nav-tab .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--live);
            display: inline-block;
            animation: livePulse 1.5s infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
            }
            50% {
                opacity: 0.5;
                box-shadow: 0 0 0 6px rgba(255, 59, 59, 0);
            }
        }
        .nav-tab .badge-new {
            font-size: 0.6rem;
            background: var(--danger);
            color: #fff;
            padding: 2px 6px;
            border-radius: 8px;
            font-weight: 700;
            letter-spacing: 0.03em;
            line-height: 1;
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            padding: 6px;
            color: var(--text);
            cursor: pointer;
            line-height: 1;
        }

        /* Main */
        main {
            min-height: 60vh;
        }

        /* Section */
        .section {
            padding: 36px 0;
        }
        .section-sm {
            padding: 20px 0;
        }
        .section-lg {
            padding: 50px 0;
        }
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-heading);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .section-header {
            margin-bottom: 22px;
        }
        .section-header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        /* Banner */
        .page-banner {
            background: linear-gradient(135deg, #0f2b1a 0%, #1a4a2e 30%, #1a5c3a 60%, #1e6b44 100%);
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 50px 0;
            position: relative;
            color: #fff;
            min-height: 200px;
            display: flex;
            align-items: center;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 27, 26, 0.55) 0%, rgba(15, 33, 24, 0.75) 100%);
            z-index: 0;
        }
        .page-banner .container {
            position: relative;
            z-index: 1;
        }
        .page-banner h1 {
            color: #fff;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        .page-banner .banner-sub {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            margin-top: 6px;
            max-width: 600px;
        }
        .banner-breadcrumb {
            display: flex;
            gap: 6px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        .banner-breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
        }
        .banner-breadcrumb a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .banner-breadcrumb .sep {
            color: rgba(255, 255, 255, 0.45);
        }

        /* Data overview cards */
        .data-overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }
        .data-card {
            background: var(--card-bg);
            border-radius: var(--radius-sm);
            padding: 16px 14px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .data-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
            border-color: var(--primary-light);
        }
        .data-card .data-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 4px;
        }
        .data-card .data-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-heading);
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        .data-card .data-trend {
            font-size: 0.75rem;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .data-trend.up {
            color: var(--success);
        }
        .data-trend.down {
            color: var(--danger);
        }
        .data-trend.stable {
            color: var(--text-muted);
        }
        .data-card .data-icon {
            position: absolute;
            top: 10px;
            right: 12px;
            font-size: 1.4rem;
            opacity: 0.25;
        }
        .data-card.live-card {
            border-left: 4px solid var(--live);
        }
        .data-card.live-card .data-value {
            color: var(--live);
        }

        /* League selector */
        .league-tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .league-tab {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            background: var(--card-bg);
            border: 1.5px solid var(--border);
            color: var(--text-muted);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .league-tab:hover {
            border-color: var(--primary-light);
            color: var(--text);
        }
        .league-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* Standings table */
        .standings-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            overflow: hidden;
            margin-bottom: 20px;
        }
        .standings-card-header {
            padding: 14px 18px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            background: var(--card-bg-alt);
        }
        .standings-card-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .standings-card-header .league-flag {
            font-size: 1.3rem;
        }
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .standings-table {
            min-width: 640px;
            font-size: 0.88rem;
        }
        .standings-table th {
            background: #fafbfc;
            font-size: 0.75rem;
            padding: 10px 10px;
        }
        .standings-table td {
            padding: 9px 10px;
            vertical-align: middle;
        }
        .standings-table .pos-col {
            width: 40px;
            text-align: center;
            font-weight: 700;
        }
        .standings-table .team-col {
            min-width: 140px;
            font-weight: 600;
        }
        .standings-table .num-col {
            text-align: center;
            width: 44px;
        }
        .standings-table .highlight-row {
            background: rgba(26, 92, 58, 0.04);
        }
        .pos-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.82rem;
        }
        .pos-badge.top1 {
            background: #ffd700;
            color: #3d2e00;
        }
        .pos-badge.top2 {
            background: #d4d4d4;
            color: #2a2a2a;
        }
        .pos-badge.top3 {
            background: #cd9a5b;
            color: #3d2200;
        }
        .pos-badge.ucl {
            background: #e8f4fd;
            color: #0d5fa8;
        }
        .pos-badge.normal {
            background: #f5f5f5;
            color: #555;
        }
        .trend-arrow {
            font-size: 0.8rem;
        }
        .trend-arrow.up {
            color: var(--success);
        }
        .trend-arrow.down {
            color: var(--danger);
        }
        .trend-arrow.same {
            color: var(--text-muted);
        }
        .form-dots {
            display: flex;
            gap: 3px;
        }
        .form-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        .form-dot.w {
            background: #2b8a3e;
        }
        .form-dot.d {
            background: #adb5bd;
        }
        .form-dot.l {
            background: #e03131;
        }

        /* Team cards grid */
        .team-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 14px;
        }
        .team-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 14px;
            cursor: pointer;
        }
        .team-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--primary-light);
        }
        .team-card .team-rank {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            min-width: 30px;
            text-align: center;
        }
        .team-card .team-info {
            flex: 1;
            min-width: 0;
        }
        .team-card .team-name {
            font-weight: 700;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .team-card .team-points {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .team-card .team-badge-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            background: #e9ecef;
            flex-shrink: 0;
        }

        /* Analysis cards */
        .analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }
        .analysis-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
        }
        .analysis-card:hover {
            box-shadow: var(--shadow);
        }
        .analysis-card h4 {
            font-size: 0.95rem;
            margin-bottom: 6px;
        }
        .analysis-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .analysis-card .highlight-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin: 4px 0;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 16px 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 0.95rem;
            user-select: none;
            background: var(--card-bg);
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: var(--card-bg-alt);
        }
        .faq-question .faq-icon {
            font-size: 1.1rem;
            transition: transform var(--transition);
            color: var(--primary);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition);
            padding: 0 18px;
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 18px 18px;
        }

        /* CTA */
        .cta-card {
            background: linear-gradient(135deg, #1a5c3a 0%, #0f3d24 100%);
            border-radius: var(--radius-lg);
            padding: 36px 30px;
            color: #fff;
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .cta-card::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }
        .cta-card h3 {
            color: #fff;
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }
        .cta-card p {
            color: rgba(255, 255, 255, 0.8);
            margin: 8px 0 18px;
            position: relative;
            z-index: 1;
        }
        .btn-cta {
            display: inline-block;
            background: var(--accent);
            color: #1a1a1a;
            padding: 12px 28px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 1rem;
            position: relative;
            z-index: 1;
            transition: all var(--transition-fast);
            letter-spacing: 0.01em;
        }
        .btn-cta:hover {
            background: #f5d066;
            color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 184, 48, 0.35);
        }

        /* Footer */
        .site-footer {
            background: #111820;
            color: rgba(255, 255, 255, 0.7);
            padding: 44px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 24px;
        }
        .footer-brand {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            text-align: center;
            font-size: 0.78rem;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 10px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.78rem;
            cursor: pointer;
        }
        .footer-bottom-links a:hover {
            color: var(--accent);
        }
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.75rem;
            margin: 3px 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .page-banner {
                padding: 35px 0;
                min-height: 160px;
            }
            .page-banner h1 {
                font-size: 1.7rem;
            }
            .data-overview-grid {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 8px;
            }
            .team-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 10px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .header-search {
                display: none;
            }
            .header-actions .btn-header-cta {
                font-size: 0.78rem;
                padding: 6px 12px;
                border-radius: 14px;
            }
            .header-brand {
                font-size: 1.1rem;
            }
            .nav-tab {
                padding: 8px 10px;
                font-size: 0.78rem;
                gap: 3px;
            }
            .nav-tabs {
                gap: 0;
            }
            .page-banner {
                padding: 28px 0;
                min-height: 130px;
            }
            .page-banner h1 {
                font-size: 1.4rem;
            }
            .page-banner .banner-sub {
                font-size: 0.85rem;
            }
            .section {
                padding: 24px 0;
            }
            .data-overview-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }
            .data-card {
                padding: 10px 8px;
            }
            .data-card .data-value {
                font-size: 1.2rem;
            }
            .data-card .data-label {
                font-size: 0.68rem;
            }
            .team-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 8px;
            }
            .standings-table {
                min-width: 500px;
                font-size: 0.78rem;
            }
            .standings-table th,
            .standings-table td {
                padding: 6px 6px;
                font-size: 0.72rem;
            }
            .analysis-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .league-tab {
                padding: 6px 10px;
                font-size: 0.75rem;
            }
            .cta-card {
                padding: 24px 18px;
            }
            .cta-card h3 {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .nav-tabs-wrapper {
                overflow-x: auto;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 12px;
            }
            .header-inner {
                height: 48px;
                gap: 8px;
            }
            .header-brand {
                font-size: 1rem;
            }
            .header-brand .brand-icon {
                font-size: 1.2rem;
            }
            .btn-header-cta {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .nav-tab {
                padding: 6px 8px;
                font-size: 0.7rem;
            }
            .page-banner {
                padding: 22px 0;
                min-height: 110px;
            }
            .page-banner h1 {
                font-size: 1.2rem;
            }
            .data-overview-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 5px;
            }
            .data-card {
                padding: 8px 7px;
                border-radius: var(--radius-xs);
            }
            .data-card .data-value {
                font-size: 1rem;
            }
            .data-card .data-label {
                font-size: 0.65rem;
            }
            .data-card .data-trend {
                font-size: 0.65rem;
            }
            .team-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .team-card {
                padding: 10px;
                gap: 8px;
                border-radius: var(--radius-sm);
            }
            .team-card .team-rank {
                font-size: 1.1rem;
                min-width: 22px;
            }
            .team-card .team-name {
                font-size: 0.8rem;
            }
            .standings-table {
                min-width: 420px;
                font-size: 0.7rem;
            }
            .standings-table th,
            .standings-table td {
                padding: 5px 4px;
                font-size: 0.68rem;
            }
            .section {
                padding: 18px 0;
            }
            .league-tabs {
                gap: 4px;
            }
            .league-tab {
                padding: 5px 8px;
                font-size: 0.7rem;
                border-radius: 14px;
            }
            .faq-question {
                padding: 12px 14px;
                font-size: 0.85rem;
            }
            .faq-answer {
                font-size: 0.8rem;
                padding: 0 14px;
            }
            .faq-item.open .faq-answer {
                padding: 0 14px 14px;
            }
            .cta-card {
                padding: 20px 14px;
                border-radius: var(--radius);
            }
            .btn-cta {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .footer-bottom-links {
                gap: 8px;
            }
            h1 {
                font-size: 1.3rem;
            }
            h2 {
                font-size: 1.1rem;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #0a8c3c;
            --primary-dark: #066b2d;
            --primary-light: #e6f7ed;
            --accent: #e63946;
            --accent-glow: #ff4757;
            --bg: #f5f6f8;
            --bg-white: #ffffff;
            --bg-dark: #1a1d23;
            --bg-card: #ffffff;
            --text: #1a1d23;
            --text-strong: #0d1117;
            --text-weak: #6b7280;
            --text-muted: #9ca3af;
            --border: #e5e7eb;
            --border-light: #f0f1f3;
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.11);
            --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.14);
            --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1280px;
            --nav-height: 60px;
            --tab-height: 44px;
            --header-total: 104px;
        }

        *,
        *::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: 15px;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        input,
        select {
            font-family: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        .site-header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-xs);
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
            padding: 0 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-strong);
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .brand-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-search {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--text-weak);
            transition: all var(--transition);
            border: 1px solid transparent;
        }

        .btn-search:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-cta-sm {
            padding: 8px 16px;
            border-radius: 20px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.01em;
        }

        .btn-cta-sm:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }

        /* NAV TABS */
        .nav-tabs-wrapper {
            border-top: 1px solid var(--border-light);
            background: var(--bg-white);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .nav-tabs-wrapper::-webkit-scrollbar {
            display: none;
        }

        .nav-tabs {
            display: flex;
            gap: 4px;
            padding: 6px 16px;
            max-width: var(--max-width);
            margin: 0 auto;
            height: var(--tab-height);
            align-items: center;
            white-space: nowrap;
            flex-wrap: nowrap;
        }

        .nav-tab {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-weak);
            transition: all var(--transition);
            white-space: nowrap;
            flex-shrink: 0;
            position: relative;
            letter-spacing: 0.01em;
        }

        .nav-tab:hover {
            color: var(--text);
            background: var(--bg);
        }

        .nav-tab.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(10, 140, 60, 0.3);
        }

        .nav-tab .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            margin-right: 4px;
            animation: pulse-dot 1.4s ease-in-out infinite;
            vertical-align: middle;
            position: relative;
            top: -1px;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6);
            }
            50% {
                opacity: 0.5;
                box-shadow: 0 0 0 6px rgba(230, 57, 70, 0);
            }
        }

        /* MAIN */
        .page-main {
            flex: 1;
        }

        /* PAGE BANNER */
        .page-banner {
            background: linear-gradient(170deg, #0d2818 0%, #0f3d22 40%, #0a2a18 100%);
            color: #fff;
            padding: 40px 0 44px;
            position: relative;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            pointer-events: none;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(10, 140, 60, 0.2);
            pointer-events: none;
            filter: blur(40px);
        }

        .page-banner .container {
            position: relative;
            z-index: 2;
        }

        .page-banner .banner-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: 5px 12px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 500;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }

        .page-banner .banner-badge .live-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-glow);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        .page-banner h1 {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            line-height: 1.25;
        }

        .page-banner .banner-sub {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            line-height: 1.5;
        }

        .banner-stats-row {
            display: flex;
            gap: 24px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .banner-stat {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .banner-stat strong {
            color: #fff;
            font-size: 1.1rem;
        }

        /* FILTER BAR */
        .filter-bar {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
            position: sticky;
            top: var(--header-total);
            z-index: 999;
            box-shadow: var(--shadow-xs);
        }

        .filter-bar .container {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }

        .filter-pill {
            padding: 6px 14px;
            border-radius: 18px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid var(--border);
            color: var(--text-weak);
            background: var(--bg-white);
            transition: all var(--transition);
            white-space: nowrap;
            cursor: pointer;
            letter-spacing: 0.01em;
        }

        .filter-pill:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .filter-pill.active-filter {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            font-weight: 600;
        }

        .filter-label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-weak);
            margin-right: 4px;
            white-space: nowrap;
        }

        /* LIVE SCORES GRID */
        .section-live-scores {
            padding: 28px 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .section-header h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-header h2 .live-badge {
            font-size: 0.7rem;
            background: var(--accent);
            color: #fff;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 600;
            animation: pulse-badge 2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        .section-header .update-time {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .scores-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .score-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 14px 12px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
            position: relative;
            box-shadow: var(--shadow-xs);
        }

        .score-card:hover {
            box-shadow: var(--shadow);
            border-color: #d1d5db;
            transform: translateY(-2px);
        }

        .score-card.is-live {
            border-left: 3px solid var(--accent);
        }

        .score-card.is-finished {
            border-left: 3px solid #9ca3af;
        }

        .score-card .card-league {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .score-card .card-league .dot-live {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        .score-card .card-league .dot-finished {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #9ca3af;
        }

        .score-card .card-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 6px;
        }

        .score-card .team-name {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-strong);
            flex: 1;
            text-align: center;
            line-height: 1.3;
        }

        .score-card .team-score {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-strong);
            min-width: 28px;
            text-align: center;
            letter-spacing: -0.02em;
        }

        .score-card .team-score.winner {
            color: var(--primary);
        }

        .score-card .vs-divider {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .score-card .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .score-card .card-meta .match-time {
            font-weight: 500;
            color: var(--accent);
        }

        .score-card .card-meta .match-time.finished-time {
            color: var(--text-muted);
        }

        .score-card .card-goal-tag {
            display: inline-block;
            font-size: 0.65rem;
            background: #fef3c7;
            color: #b45309;
            padding: 2px 6px;
            border-radius: 8px;
            font-weight: 600;
            margin-left: 4px;
        }

        /* HOT RANKING */
        .section-hot {
            padding: 28px 0;
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .hot-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .hot-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: var(--bg);
            border-radius: var(--radius);
            transition: all var(--transition);
        }

        .hot-item:hover {
            background: var(--primary-light);
            box-shadow: var(--shadow-xs);
        }

        .hot-rank {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .hot-rank.top1 {
            background: #fbbf24;
            color: #1a1d23;
        }
        .hot-rank.top2 {
            background: #c0c0c0;
            color: #1a1d23;
        }
        .hot-rank.top3 {
            background: #cd7f32;
            color: #fff;
        }
        .hot-rank.normal {
            background: #e5e7eb;
            color: var(--text-weak);
        }

        .hot-info {
            flex: 1;
            min-width: 0;
        }

        .hot-match-name {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-strong);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hot-league {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .hot-views {
            font-size: 0.7rem;
            color: var(--accent);
            font-weight: 600;
            white-space: nowrap;
        }

        /* INFO CARDS SECTION */
        .section-info-cards {
            padding: 32px 0;
        }

        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .info-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-xs);
            transition: all var(--transition);
            text-align: center;
        }

        .info-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .info-card .info-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius);
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin: 0 auto 12px;
        }

        .info-card h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 4px;
        }

        .info-card p {
            font-size: 0.78rem;
            color: var(--text-weak);
            line-height: 1.5;
        }

        /* NEWS SECTION */
        .section-news {
            padding: 28px 0;
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
        }

        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .news-item {
            display: flex;
            gap: 12px;
            padding: 14px;
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            background: var(--bg-card);
        }

        .news-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: #d1d5db;
        }

        .news-thumb {
            width: 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: #e5e7eb;
        }

        .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-body h4 {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-strong);
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-body .news-meta {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .news-body .news-excerpt {
            font-size: 0.75rem;
            color: var(--text-weak);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-tag {
            display: inline-block;
            font-size: 0.65rem;
            padding: 2px 7px;
            border-radius: 10px;
            font-weight: 600;
            margin-right: 4px;
        }

        .news-tag.hot-tag {
            background: #fee2e2;
            color: #b91c1c;
        }
        .news-tag.new-tag {
            background: #dbeafe;
            color: #1e40af;
        }
        .news-tag.recommend-tag {
            background: #fef3c7;
            color: #92400e;
        }

        /* REVIEWS */
        .section-reviews {
            padding: 32px 0;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .review-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 18px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-xs);
            transition: all var(--transition);
        }

        .review-card:hover {
            box-shadow: var(--shadow);
        }

        .review-stars {
            color: #f59e0b;
            font-size: 0.85rem;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .review-text {
            font-size: 0.82rem;
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .review-author {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .review-author::before {
            content: '— ';
        }

        /* FAQ */
        .section-faq {
            padding: 32px 0;
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .faq-item {
            padding: 16px 18px;
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            background: var(--bg);
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: #d1d5db;
            box-shadow: var(--shadow-xs);
        }

        .faq-item h3 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .faq-item p {
            font-size: 0.8rem;
            color: var(--text-weak);
            line-height: 1.6;
        }

        /* CTA */
        .section-cta {
            padding: 40px 0;
            text-align: center;
        }

        .cta-card {
            background: linear-gradient(135deg, #0a8c3c 0%, #066b2d 100%);
            border-radius: var(--radius-xl);
            padding: 36px 28px;
            color: #fff;
            box-shadow: var(--shadow-lg);
        }

        .cta-card h2 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .cta-card p {
            font-size: 0.9rem;
            opacity: 0.85;
            margin-bottom: 18px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta-lg {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 24px;
            background: #fff;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.95rem;
            transition: all var(--transition);
            letter-spacing: 0.01em;
        }

        .btn-cta-lg:hover {
            background: #f0fdf4;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        /* FOOTER */
        .site-footer {
            background: #111827;
            color: rgba(255, 255, 255, 0.75);
            padding: 40px 0 24px;
            font-size: 0.82rem;
            margin-top: auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 28px;
            margin-bottom: 24px;
        }

        .footer-brand {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .footer-desc {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }

        .footer-col h4 {
            font-size: 0.82rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            text-align: center;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 8px;
        }

        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.72rem;
            cursor: pointer;
            transition: color var(--transition);
        }

        .footer-bottom-links a:hover {
            color: #fff;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .scores-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .info-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .page-banner h1 {
                font-size: 1.6rem;
            }
            .news-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .scores-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .score-card {
                padding: 10px 8px;
            }
            .score-card .team-name {
                font-size: 0.72rem;
            }
            .score-card .team-score {
                font-size: 1.1rem;
                min-width: 22px;
            }
            .hot-list {
                grid-template-columns: 1fr;
            }
            .info-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-banner {
                padding: 28px 0 30px;
            }
            .page-banner h1 {
                font-size: 1.35rem;
            }
            .banner-stats-row {
                gap: 12px;
            }
            .nav-tab {
                font-size: 0.74rem;
                padding: 5px 10px;
            }
            .header-top {
                padding: 0 12px;
            }
            .brand-logo {
                font-size: 1rem;
            }
            .brand-logo .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
            .filter-pill {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .cta-card {
                padding: 24px 16px;
            }
            .cta-card h2 {
                font-size: 1.15rem;
            }
            .news-thumb {
                width: 70px;
                height: 50px;
            }
            .news-body h4 {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 520px) {
            .scores-grid {
                grid-template-columns: 1fr 1fr;
                gap: 6px;
            }
            .score-card {
                padding: 8px 6px;
                border-radius: var(--radius-sm);
            }
            .score-card .team-name {
                font-size: 0.68rem;
            }
            .score-card .team-score {
                font-size: 1rem;
                min-width: 18px;
            }
            .score-card .card-league {
                font-size: 0.62rem;
            }
            .score-card .card-meta {
                font-size: 0.62rem;
            }
            .info-cards-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .page-banner h1 {
                font-size: 1.2rem;
            }
            .page-banner .banner-sub {
                font-size: 0.8rem;
            }
            .nav-tabs {
                gap: 2px;
                padding: 4px 8px;
            }
            .nav-tab {
                font-size: 0.68rem;
                padding: 4px 8px;
                border-radius: 14px;
            }
            .filter-bar .container {
                gap: 4px;
            }
            .filter-pill {
                font-size: 0.65rem;
                padding: 4px 8px;
                border-radius: 12px;
            }
            .section-header h2 {
                font-size: 1rem;
            }
            .btn-cta-sm {
                font-size: 0.72rem;
                padding: 6px 12px;
            }
            .footer-bottom-links {
                gap: 8px;
                font-size: 0.65rem;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #1a3a5c;
            --primary-light: #1f4d75;
            --primary-dark: #0f2540;
            --accent: #2ecc71;
            --accent-light: #3ddb84;
            --accent-dark: #25a25a;
            --gold: #f0a500;
            --gold-light: #f7c948;
            --danger: #e74c3c;
            --warning: #f39c12;
            --bg: #f5f6f8;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --text: #1e293b;
            --text-soft: #475569;
            --text-muted: #94a3b8;
            --text-light: #cbd5e1;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --shadow-xs: 0 1px 2px 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.11);
            --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.14);
            --transition: 0.22s ease;
            --transition-fast: 0.14s ease;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, sans-serif;
            --font-mono: 'SF Mono', 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
            --container-max: 1260px;
            --header-height: 56px;
            --nav-height: 44px;
            --total-header: 100px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.65;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            background: none;
        }
        input {
            font-family: inherit;
            outline: none;
            border: none;
        }
        ul,
        ol {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--text);
        }
        h1 {
            font-size: 2rem;
        }
        h2 {
            font-size: 1.55rem;
        }
        h3 {
            font-size: 1.2rem;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 14px;
            }
        }

        /* ========== HEADER ========== */
        .site-header {
            background: var(--bg-white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
            width: 100%;
        }
        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--header-height);
            gap: 16px;
            padding: 0 4px;
        }
        .header-brand {
            display: flex;
            align-items: center;
            gap: 9px;
            font-weight: 800;
            font-size: 1.35rem;
            color: var(--primary);
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: -0.01em;
        }
        .header-brand .brand-icon {
            width: 36px;
            height: 36px;
            background: var(--accent);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            flex-shrink: 0;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: var(--bg);
            border-radius: 22px;
            padding: 7px 15px;
            gap: 8px;
            border: 1.5px solid var(--border);
            transition: var(--transition);
            flex: 1;
            max-width: 340px;
            min-width: 160px;
        }
        .header-search:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
            background: var(--bg-white);
        }
        .header-search input {
            flex: 1;
            background: transparent;
            font-size: 0.9rem;
            color: var(--text);
            min-width: 0;
        }
        .header-search input::placeholder {
            color: var(--text-muted);
        }
        .header-search .search-icon {
            color: var(--text-muted);
            font-size: 0.95rem;
            flex-shrink: 0;
        }
        .header-cta {
            background: var(--accent);
            color: #fff;
            padding: 8px 18px;
            border-radius: 22px;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--transition);
            flex-shrink: 0;
            letter-spacing: 0.01em;
        }
        .header-cta:hover {
            background: var(--accent-dark);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }
        .header-cta:active {
            transform: scale(0.97);
        }

        /* 导航行 */
        .nav-row {
            border-top: 1px solid var(--border-light);
            background: var(--bg-white);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-row::-webkit-scrollbar {
            display: none;
        }
        .nav-tabs {
            display: flex;
            align-items: stretch;
            gap: 0;
            min-width: max-content;
            height: var(--nav-height);
        }
        .nav-tab {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0 16px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-soft);
            white-space: nowrap;
            border-bottom: 2.5px solid transparent;
            transition: var(--transition-fast);
            cursor: pointer;
            letter-spacing: 0.005em;
            position: relative;
            flex-shrink: 0;
            user-select: none;
        }
        .nav-tab:hover {
            color: var(--primary);
            background: rgba(26, 58, 92, 0.03);
        }
        .nav-tab.active {
            color: var(--primary);
            border-bottom-color: var(--accent);
            font-weight: 700;
        }
        .nav-tab .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--danger);
            display: inline-block;
            animation: pulse-dot 1.6s infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5);
            }
            50% {
                opacity: 0.7;
                box-shadow: 0 0 0 6px rgba(231, 76, 60, 0);
            }
        }

        @media (max-width: 768px) {
            .header-top {
                height: 48px;
                gap: 10px;
            }
            .header-brand {
                font-size: 1.15rem;
                gap: 6px;
            }
            .header-brand .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 1.1rem;
                border-radius: 5px;
            }
            .header-search {
                max-width: 180px;
                padding: 6px 10px;
                font-size: 0.82rem;
            }
            .header-cta {
                padding: 6px 13px;
                font-size: 0.8rem;
                border-radius: 18px;
            }
            .nav-tab {
                padding: 0 11px;
                font-size: 0.8rem;
                gap: 3px;
            }
            .nav-row {
                border-top: 1px solid var(--border-light);
            }
            :root {
                --header-height: 48px;
                --nav-height: 38px;
                --total-header: 86px;
            }
        }
        @media (max-width: 520px) {
            .header-search {
                max-width: 120px;
                padding: 5px 8px;
            }
            .header-cta {
                padding: 5px 10px;
                font-size: 0.75rem;
            }
            .header-brand {
                font-size: 1rem;
            }
            .header-brand .brand-icon {
                width: 26px;
                height: 26px;
                font-size: 0.95rem;
            }
            .nav-tab {
                padding: 0 8px;
                font-size: 0.74rem;
            }
        }

        /* ========== MAIN ========== */
        .main-content {
            flex: 1;
            padding-bottom: 40px;
        }

        /* ========== HERO BANNER ========== */
        .hero-banner {
            background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
            color: #fff;
            padding: 38px 0 36px;
            position: relative;
            overflow: hidden;
            min-height: 180px;
            display: flex;
            align-items: center;
        }
        .hero-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.16;
            z-index: 0;
        }
        .hero-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(15, 37, 64, 0.5), transparent);
            z-index: 1;
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 20px;
            padding: 5px 14px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 10px;
            backdrop-filter: blur(4px);
        }
        .hero-badge .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-light);
            animation: pulse-dot 2s infinite;
        }
        .hero-banner h1 {
            color: #fff;
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 6px;
        }
        .hero-subtitle {
            color: rgba(255, 255, 255, 0.82);
            font-size: 1rem;
            margin-bottom: 14px;
            max-width: 600px;
            line-height: 1.55;
        }
        .hero-league-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .league-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: #fff;
            padding: 7px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            backdrop-filter: blur(3px);
            user-select: none;
        }
        .league-pill:hover {
            background: rgba(255, 255, 255, 0.22);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-1px);
        }
        .league-pill.active-pill {
            background: var(--accent);
            border-color: var(--accent);
            font-weight: 700;
            box-shadow: 0 2px 12px rgba(46, 204, 113, 0.35);
        }
        @media (max-width: 768px) {
            .hero-banner {
                padding: 26px 0 24px;
                min-height: 140px;
            }
            .hero-banner h1 {
                font-size: 1.55rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .league-pill {
                padding: 5px 11px;
                font-size: 0.78rem;
            }
        }

        /* ========== SECTION ========== */
        .section {
            padding: 36px 0;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .section-header h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-header h2 .sec-icon {
            width: 32px;
            height: 32px;
            border-radius: var(--radius-sm);
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .section-tag {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent-dark);
            background: rgba(46, 204, 113, 0.1);
            padding: 4px 10px;
            border-radius: 12px;
            white-space: nowrap;
        }
        .section-link {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }
        .section-link:hover {
            color: var(--accent-dark);
        }

        /* ========== STANDINGS TABLE ========== */
        .standings-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border: 1px solid var(--border-light);
        }
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 680px;
        }
        .standings-table thead {
            background: #f8fafc;
            border-bottom: 2px solid var(--border);
        }
        .standings-table thead th {
            padding: 12px 10px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: var(--text-soft);
            white-space: nowrap;
            text-align: center;
        }
        .standings-table thead th:first-child {
            text-align: left;
            padding-left: 16px;
            width: 44px;
        }
        .standings-table thead th.team-col {
            text-align: left;
            min-width: 150px;
        }
        .standings-table tbody td {
            padding: 11px 10px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
            font-weight: 500;
            white-space: nowrap;
        }
        .standings-table tbody td:first-child {
            text-align: left;
            padding-left: 16px;
            font-weight: 700;
            color: var(--text-soft);
            font-size: 0.85rem;
        }
        .standings-table tbody td.team-col {
            text-align: left;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        .standings-table .team-badge {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
        }
        .standings-table .pts-cell {
            font-weight: 800;
            font-size: 1rem;
            color: var(--primary);
        }
        .standings-table .form-dot {
            display: inline-block;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            font-size: 0.7rem;
            font-weight: 700;
            line-height: 22px;
            text-align: center;
            margin: 0 1px;
        }
        .form-dot.win {
            background: #d4edda;
            color: #155724;
        }
        .form-dot.draw {
            background: #fff3cd;
            color: #856404;
        }
        .form-dot.loss {
            background: #f8d7da;
            color: #721c24;
        }
        .standings-table tbody tr {
            transition: var(--transition-fast);
        }
        .standings-table tbody tr:hover {
            background: #f8fdf9;
        }
        .standings-table tbody tr.zone-ucl {
            border-left: 3px solid var(--accent);
        }
        .standings-table tbody tr.zone-uel {
            border-left: 3px solid var(--gold);
        }
        .standings-table tbody tr.zone-relegation {
            border-left: 3px solid var(--danger);
            background: #fffafa;
        }
        .zone-tag {
            display: inline-block;
            font-size: 0.65rem;
            padding: 2px 7px;
            border-radius: 10px;
            font-weight: 700;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .zone-tag.ucl {
            background: #d4edda;
            color: #155724;
        }
        .zone-tag.uel {
            background: #fff3cd;
            color: #856404;
        }
        .zone-tag.rel {
            background: #f8d7da;
            color: #721c24;
        }

        @media (max-width: 768px) {
            .standings-table {
                font-size: 0.8rem;
                min-width: 560px;
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 8px 6px;
            }
            .standings-table tbody td:first-child {
                padding-left: 8px;
            }
        }

        /* ========== STAT CARDS GRID ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        .stat-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 18px 16px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-xs);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .stat-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
            border-color: var(--border);
        }
        .stat-card .stat-label {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
            line-height: 1;
        }
        .stat-card .stat-trend {
            font-size: 0.78rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .stat-trend.up {
            color: var(--accent-dark);
        }
        .stat-trend.down {
            color: var(--danger);
        }
        .stat-trend.stable {
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .stat-card {
                padding: 14px 12px;
            }
            .stat-card .stat-value {
                font-size: 1.5rem;
            }
        }

        /* ========== COMPACT CARDS ========== */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .info-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-xs);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .info-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
        .info-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            background: #e9ecef;
        }
        .info-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        .info-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .info-card .card-body {
            padding: 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .info-card .card-tag {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--accent-dark);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .info-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.35;
        }
        .info-card p {
            font-size: 0.85rem;
            color: var(--text-soft);
            line-height: 1.5;
            flex: 1;
        }
        .info-card .card-link {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition);
        }
        .info-card .card-link:hover {
            color: var(--accent-dark);
        }
        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 520px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== TOP SCORERS LIST ========== */
        .scorers-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .scorer-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 12px 16px;
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }
        .scorer-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--border);
        }
        .scorer-rank {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .scorer-rank.rank-1 {
            background: #fff9e6;
            color: #b8860b;
            border: 2px solid #f0a500;
        }
        .scorer-rank.rank-2 {
            background: #f5f5f5;
            color: #666;
            border: 2px solid #bbb;
        }
        .scorer-rank.rank-3 {
            background: #fdf2ec;
            color: #a0522d;
            border: 2px solid #cd853f;
        }
        .scorer-rank.rank-other {
            background: #f8fafc;
            color: var(--text-muted);
            border: 2px solid #e2e8f0;
        }
        .scorer-info {
            flex: 1;
            min-width: 0;
        }
        .scorer-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text);
        }
        .scorer-team {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .scorer-goals {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--primary);
            flex-shrink: 0;
            text-align: right;
        }
        .scorer-goals small {
            font-weight: 500;
            font-size: 0.7rem;
            color: var(--text-muted);
            display: block;
        }
        @media (max-width: 520px) {
            .scorer-item {
                padding: 10px 12px;
                gap: 8px;
            }
            .scorer-rank {
                width: 28px;
                height: 28px;
                font-size: 0.78rem;
            }
            .scorer-name {
                font-size: 0.85rem;
            }
            .scorer-goals {
                font-size: 1rem;
            }
        }

        /* ========== TWO COL ========== */
        .two-col {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 20px;
            align-items: start;
        }
        @media (max-width: 768px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* ========== NEWS LIST ========== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .news-item {
            display: flex;
            gap: 14px;
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 14px 16px;
            border: 1px solid var(--border-light);
            transition: var(--transition);
            align-items: flex-start;
        }
        .news-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--border);
        }
        .news-thumb {
            width: 80px;
            height: 56px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: #e9ecef;
        }
        .news-body {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .news-body .news-date {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .news-body h4 {
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text);
        }
        .news-body p {
            font-size: 0.8rem;
            color: var(--text-soft);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-body .news-link {
            font-weight: 600;
            font-size: 0.78rem;
            color: var(--primary);
            align-self: flex-start;
        }
        @media (max-width: 520px) {
            .news-thumb {
                width: 60px;
                height: 44px;
            }
            .news-item {
                padding: 10px 12px;
                gap: 10px;
            }
            .news-body h4 {
                font-size: 0.82rem;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .faq-item {
            background: var(--bg-white);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-xs);
        }
        .faq-question {
            padding: 15px 18px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
            transition: var(--transition-fast);
            color: var(--text);
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .faq-arrow {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-muted);
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            background: var(--accent);
            color: #fff;
        }
        .faq-answer {
            padding: 0 18px 15px;
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.6;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.13;
            z-index: 0;
        }
        .cta-banner>* {
            position: relative;
            z-index: 1;
        }
        .cta-banner h2 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }
        .cta-banner p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 18px;
            font-size: 0.95rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 12px 28px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1rem;
            transition: var(--transition);
            letter-spacing: 0.01em;
        }
        .btn-cta:hover {
            background: var(--accent-light);
            box-shadow: 0 4px 20px rgba(46, 204, 113, 0.4);
            transform: translateY(-2px);
        }
        .btn-cta:active {
            transform: scale(0.96);
        }
        @media (max-width: 768px) {
            .cta-banner {
                padding: 26px 20px;
            }
            .cta-banner h2 {
                font-size: 1.25rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: #0f1f30;
            color: rgba(255, 255, 255, 0.75);
            padding: 36px 0 22px;
            margin-top: auto;
            font-size: 0.88rem;
            line-height: 1.7;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 28px;
            margin-bottom: 22px;
        }
        .footer-brand {
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.82rem;
            line-height: 1.6;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.82rem;
            transition: var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            text-align: center;
            font-size: 0.76rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 8px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.45);
            transition: var(--transition-fast);
            cursor: pointer;
            font-size: 0.76rem;
        }
        .footer-bottom-links a:hover {
            color: rgba(255, 255, 255, 0.75);
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-grid>div:first-child {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .footer-bottom-links {
                gap: 10px;
                font-size: 0.72rem;
            }
        }

        /* ========== MISC ========== */
        .text-accent {
            color: var(--accent);
        }
        .text-gold {
            color: var(--gold);
        }
        .mt-8 {
            margin-top: 8px;
        }
        .mt-12 {
            margin-top: 12px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .fw-800 {
            font-weight: 800;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

/* roulang page: category1 */
:root {
            --color-primary: #1a56db;
            --color-primary-dark: #1340a0;
            --color-primary-light: #3b82f6;
            --color-accent: #f59e0b;
            --color-accent-red: #ef4444;
            --color-accent-green: #10b981;
            --color-bg: #f8fafc;
            --color-bg-white: #ffffff;
            --color-bg-dark: #0f172a;
            --color-bg-card: #ffffff;
            --color-text: #1e293b;
            --color-text-secondary: #64748b;
            --color-text-muted: #94a3b8;
            --color-text-inverse: #f1f5f9;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', 'Monaco', monospace;
            --max-width: 1280px;
            --header-height: 132px;
        }

        *,
        *::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.6;
            color: var(--color-text);
            background-color: var(--color-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-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* Header / Nav */
        .site-header {
            background: var(--color-bg-white);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 20px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-primary-dark);
            white-space: nowrap;
            letter-spacing: -0.02em;
            transition: opacity var(--transition-fast);
        }
        .header-logo:hover {
            opacity: 0.85;
        }
        .header-logo .logo-icon {
            font-size: 1.8rem;
            line-height: 1;
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--color-bg);
            border: 2px solid var(--color-border);
            border-radius: 50px;
            padding: 0 4px 0 18px;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
            max-width: 360px;
            flex: 1;
        }
        .header-search:focus-within {
            border-color: var(--color-primary-light);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            background: var(--color-bg-white);
        }
        .header-search input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px 0;
            font-size: 0.9rem;
            color: var(--color-text);
            min-width: 0;
        }
        .header-search input::placeholder {
            color: var(--color-text-muted);
        }
        .header-search button {
            background: var(--color-primary);
            color: #fff;
            border-radius: 50px;
            padding: 9px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast);
        }
        .header-search button:hover {
            background: var(--color-primary-dark);
            transform: scale(1.03);
        }
        .header-search button:active {
            transform: scale(0.97);
        }

        .header-cta-btn {
            background: var(--color-accent);
            color: #1e293b;
            border-radius: 50px;
            padding: 10px 22px;
            font-size: 0.9rem;
            font-weight: 700;
            white-space: nowrap;
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }
        .header-cta-btn:hover {
            background: #e8900b;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
        }
        .header-cta-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
        }

        /* Nav Tabs */
        .nav-bar {
            border-top: 1px solid var(--color-border-light);
            background: var(--color-bg-white);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--color-border) transparent;
            padding-bottom: 2px;
        }
        .nav-bar::-webkit-scrollbar {
            height: 3px;
        }
        .nav-bar::-webkit-scrollbar-thumb {
            background: var(--color-border);
            border-radius: 3px;
        }
        .nav-tabs {
            display: flex;
            align-items: center;
            gap: 2px;
            padding: 6px 0;
            min-width: max-content;
            flex-wrap: nowrap;
        }
        .nav-tab {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 9px 16px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
            cursor: pointer;
            border: 2px solid transparent;
            background: transparent;
        }
        .nav-tab:hover {
            color: var(--color-primary);
            background: rgba(26, 86, 219, 0.04);
            border-color: rgba(26, 86, 219, 0.15);
        }
        .nav-tab.active {
            color: var(--color-primary);
            background: rgba(26, 86, 219, 0.08);
            border-color: rgba(26, 86, 219, 0.3);
            font-weight: 700;
        }
        .nav-tab .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-accent-red);
            animation: pulse-dot 1.4s infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 10px;
            }
            .header-search {
                order: 3;
                max-width: 100%;
                flex: 1 1 100%;
                min-width: 0;
            }
            .header-cta-btn {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
            .header-logo {
                font-size: 1.25rem;
            }
            .nav-tab {
                padding: 7px 12px;
                font-size: 0.8rem;
                gap: 3px;
            }
        }

        @media (max-width: 520px) {
            .header-top {
                gap: 8px;
                padding: 10px 0;
            }
            .header-logo {
                font-size: 1.1rem;
                gap: 6px;
            }
            .header-logo .logo-icon {
                font-size: 1.4rem;
            }
            .header-cta-btn {
                padding: 7px 14px;
                font-size: 0.75rem;
            }
            .header-search {
                padding: 0 2px 0 12px;
            }
            .header-search input {
                font-size: 0.8rem;
                padding: 8px 0;
            }
            .header-search button {
                padding: 7px 14px;
                font-size: 0.75rem;
            }
            .nav-tab {
                padding: 6px 10px;
                font-size: 0.75rem;
                border-radius: 40px;
            }
        }

        /* Main */
        .page-main {
            flex: 1;
        }

        /* Section spacing */
        .section {
            padding: 48px 0;
        }
        .section-sm {
            padding: 32px 0;
        }
        .section-lg {
            padding: 64px 0;
        }
        @media (max-width: 768px) {
            .section {
                padding: 32px 0;
            }
            .section-lg {
                padding: 40px 0;
            }
            .section-sm {
                padding: 20px 0;
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 36px;
        }
        .section-header h2 {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--color-text);
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .section-header p {
            font-size: 1rem;
            color: var(--color-text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.4rem;
            }
            .section-header p {
                font-size: 0.9rem;
            }
        }

        /* Banner */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1a56db 100%);
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            color: #fff;
            padding: 60px 0;
            min-height: 320px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.75) 100%);
            z-index: 1;
        }
        .page-banner .container {
            position: relative;
            z-index: 2;
        }
        .banner-content {
            max-width: 700px;
        }
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 16px;
            color: #fbbf24;
        }
        .banner-badge .live-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
            animation: pulse-dot 1.4s infinite;
        }
        .banner-content h1 {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .banner-content .banner-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 560px;
        }
        .banner-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 20px;
        }
        .banner-stat-item {
            display: flex;
            align-items: baseline;
            gap: 6px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        .banner-stat-item strong {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fbbf24;
            font-family: var(--font-mono);
            letter-spacing: -0.02em;
        }
        .banner-stat-item .trend-up {
            color: #10b981;
            font-size: 0.75rem;
            font-weight: 700;
        }
        .banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all var(--transition-normal);
            cursor: pointer;
            white-space: nowrap;
            letter-spacing: 0.01em;
        }
        .btn-primary {
            background: #f59e0b;
            color: #1e293b;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
        }
        .btn-primary:hover {
            background: #e8900b;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
        }
        .btn-outline-light {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.8);
            transform: translateY(-1px);
        }
        .btn-sm {
            padding: 8px 18px;
            font-size: 0.82rem;
            border-radius: 40px;
        }
        .btn:active {
            transform: scale(0.96);
        }
        .btn:focus-visible {
            outline: 3px solid rgba(245, 158, 11, 0.6);
            outline-offset: 3px;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0;
                min-height: 260px;
            }
            .banner-content h1 {
                font-size: 1.7rem;
            }
            .banner-content .banner-subtitle {
                font-size: 0.95rem;
            }
            .banner-stat-item strong {
                font-size: 1.3rem;
            }
            .banner-stats-row {
                gap: 14px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }

        /* Data Overview Cards */
        .data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 1024px) {
            .data-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        @media (max-width: 480px) {
            .data-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .data-card {
            background: var(--color-bg-white);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            cursor: default;
        }
        .data-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--color-primary-light);
        }
        .data-card .card-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
            line-height: 1;
        }
        .data-card .card-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--color-text);
            font-family: var(--font-mono);
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 4px;
        }
        .data-card .card-label {
            font-size: 0.82rem;
            color: var(--color-text-secondary);
            font-weight: 500;
            margin-bottom: 4px;
        }
        .data-card .card-trend {
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 3px;
            padding: 2px 8px;
            border-radius: 20px;
            background: #f0fdf4;
            color: #16a34a;
        }
        .data-card .card-trend.down {
            background: #fef2f2;
            color: #dc2626;
        }
        .data-card .card-trend.stable {
            background: #f8fafc;
            color: #64748b;
        }
        .data-card .corner-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            background: #fef3c7;
            color: #b45309;
            letter-spacing: 0.02em;
        }
        .data-card .corner-badge.live {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-bg 2s infinite;
        }
        @keyframes pulse-bg {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }
        @media (max-width: 768px) {
            .data-card {
                padding: 14px 12px;
            }
            .data-card .card-value {
                font-size: 1.4rem;
            }
            .data-card .card-label {
                font-size: 0.75rem;
            }
        }

        /* Match Data Cards */
        .match-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        @media (max-width: 1024px) {
            .match-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .match-card-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }
        .match-data-card {
            background: var(--color-bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
        }
        .match-data-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .match-data-card .card-img-wrap {
            position: relative;
            height: 180px;
            overflow: hidden;
            background: #e2e8f0;
        }
        .match-data-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .match-data-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }
        .match-data-card .card-img-wrap .img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
        }
        .match-data-card .card-img-wrap .img-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            color: #fff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .match-data-card .card-body {
            padding: 16px 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .match-data-card .card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--color-text);
            line-height: 1.4;
        }
        .match-data-card .card-body .card-meta {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 10px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .match-data-card .card-body .card-stats-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: auto;
        }
        .mini-stat {
            background: var(--color-bg);
            border-radius: var(--radius-sm);
            padding: 6px 12px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--color-text-secondary);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .mini-stat .ms-val {
            color: var(--color-primary);
            font-weight: 800;
        }

        /* League Distribution */
        .league-distro-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .league-distro-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .league-distro-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        .league-chip {
            background: var(--color-bg-white);
            border-radius: var(--radius-md);
            padding: 16px;
            text-align: center;
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            cursor: pointer;
        }
        .league-chip:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--color-primary-light);
        }
        .league-chip .lc-flag {
            font-size: 2rem;
            margin-bottom: 6px;
        }
        .league-chip .lc-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text);
            margin-bottom: 2px;
        }
        .league-chip .lc-count {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }
        .league-chip .lc-bar {
            height: 3px;
            background: var(--color-border);
            border-radius: 3px;
            margin-top: 8px;
            overflow: hidden;
        }
        .league-chip .lc-bar-fill {
            height: 100%;
            background: var(--color-primary);
            border-radius: 3px;
            transition: width var(--transition-slow);
        }

        /* Player Ranking */
        .ranking-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            background: var(--color-bg-white);
            border: 1px solid var(--color-border-light);
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            font-size: 0.9rem;
        }
        .ranking-table thead th {
            background: #f1f5f9;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
            color: var(--color-text);
            font-size: 0.82rem;
            letter-spacing: 0.02em;
            border-bottom: 2px solid var(--color-border);
            white-space: nowrap;
        }
        .ranking-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--color-border-light);
            vertical-align: middle;
        }
        .ranking-table tbody tr {
            transition: background var(--transition-fast);
        }
        .ranking-table tbody tr:hover {
            background: #f8fafc;
        }
        .rank-num {
            font-weight: 900;
            font-size: 1.1rem;
            color: var(--color-primary);
            font-family: var(--font-mono);
        }
        .rank-num.top {
            color: #f59e0b;
        }
        .rank-player {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rank-player .player-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #e2e8f0;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            overflow: hidden;
        }
        .rank-player .player-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .highlight-val {
            font-weight: 800;
            color: var(--color-accent);
            font-family: var(--font-mono);
            font-size: 1rem;
        }

        /* News / Update Feed */
        .news-feed-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid var(--color-border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--color-bg-white);
            box-shadow: var(--shadow-sm);
        }
        .news-feed-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 20px;
            border-bottom: 1px solid var(--color-border-light);
            transition: background var(--transition-fast);
            cursor: pointer;
        }
        .news-feed-item:last-child {
            border-bottom: none;
        }
        .news-feed-item:hover {
            background: #f8fafc;
        }
        .news-feed-item .nf-date {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            white-space: nowrap;
            min-width: 65px;
            font-weight: 500;
            padding-top: 2px;
        }
        .news-feed-item .nf-content {
            flex: 1;
            min-width: 0;
        }
        .news-feed-item .nf-content h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .news-feed-item .nf-content p {
            font-size: 0.82rem;
            color: var(--color-text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-feed-item .nf-tag {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            background: #fef3c7;
            color: #b45309;
            margin-top: 6px;
            letter-spacing: 0.02em;
        }
        .news-feed-item .nf-tag.new {
            background: #dcfce7;
            color: #16a34a;
        }
        .news-feed-item .nf-tag.hot {
            background: #fef2f2;
            color: #dc2626;
        }
        @media (max-width: 600px) {
            .news-feed-item {
                flex-direction: column;
                gap: 6px;
                padding: 14px 16px;
            }
        }

        /* Service Capability Tags */
        .capability-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .cap-tag {
            background: var(--color-bg-white);
            border: 2px solid var(--color-border);
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-text);
            transition: all var(--transition-normal);
            cursor: default;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .cap-tag:hover {
            border-color: var(--color-primary-light);
            background: rgba(26, 86, 219, 0.03);
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }
        .cap-tag .cap-icon {
            font-size: 1.1rem;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        @media (max-width: 1024px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .reviews-grid {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: var(--color-bg-white);
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            position: relative;
        }
        .review-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .review-card .review-stars {
            color: #f59e0b;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        .review-card .review-text {
            font-size: 0.9rem;
            color: var(--color-text);
            line-height: 1.7;
            margin-bottom: 12px;
            font-style: italic;
        }
        .review-card .review-author {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .review-card .review-author .ra-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--color-text-secondary);
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: var(--color-bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--color-primary-light);
            box-shadow: var(--shadow-md);
        }
        .faq-q {
            padding: 18px 22px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--color-text);
            user-select: none;
            transition: color var(--transition-fast);
        }
        .faq-q:hover {
            color: var(--color-primary);
        }
        .faq-q .faq-arrow {
            font-size: 0.7rem;
            transition: transform var(--transition-normal);
            flex-shrink: 0;
            color: var(--color-text-muted);
        }
        .faq-a {
            padding: 0 22px 18px;
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-a {
            display: block;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }
        .faq-item.open {
            border-color: var(--color-primary-light);
            box-shadow: var(--shadow-md);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a56db 0%, #1340a0 100%);
            color: #fff;
            text-align: center;
            padding: 56px 0;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            z-index: 1;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            z-index: 1;
        }
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        .cta-section h2 {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
        }
        .cta-section p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .cta-section .btn-primary {
            font-size: 1rem;
            padding: 14px 32px;
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
        }

        /* Footer */
        .site-footer {
            background: var(--color-bg-dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 48px 0 24px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-brand {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }
        .footer-desc {
            font-size: 0.85rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.5);
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        .footer-col ul li a:hover {
            color: #fbbf24;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.8;
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 8px;
        }
        .footer-bottom-links a,
        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            font-size: 0.78rem;
            transition: color var(--transition-fast);
        }
        .footer-bottom-links a:hover {
            color: #fbbf24;
        }

        /* Focus visible utility */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--color-primary-light);
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* Divider */
        .divider {
            border: none;
            border-top: 1px solid var(--color-border-light);
            margin: 0;
        }
