/* roulang page: index */
:root {
            --color-brand: #0f766e;
            --color-brand-dark: #115e59;
            --color-brand-light: #ccfbf1;
            --color-accent: #eab308;
            --color-accent-dark: #ca8a04;
            --color-alert: #ef4444;
            --color-surface: #f8fafc;
            --color-darkpanel: #1e293b;
            --color-text: #1e293b;
            --color-text-weak: #64748b;
            --color-border: #e2e8f0;
            --color-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.08), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.08);
            --transition-fast: 0.15s ease;
            --transition: 0.25s ease;
            --transition-slow: 0.35s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-surface);
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:focus-visible {
            outline: 2px solid var(--color-brand);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
        }
        button:focus-visible {
            outline: 2px solid var(--color-brand);
            outline-offset: 3px;
            border-radius: 6px;
        }
        input {
            font-family: inherit;
        }
        input:focus-visible {
            outline: 2px solid var(--color-brand);
            outline-offset: 2px;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #ffffff;
            border-bottom: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 60px;
            gap: 16px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--color-brand);
            white-space: nowrap;
        }
        .logo-area .logo-icon {
            font-size: 1.6rem;
            line-height: 1;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-weak);
            white-space: nowrap;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            color: var(--color-brand);
            background: var(--color-brand-light);
            border-color: transparent;
        }
        .nav-links a.active {
            color: #ffffff;
            background: var(--color-brand);
            border-color: var(--color-brand);
            font-weight: 600;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .search-mini {
            display: flex;
            align-items: center;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 24px;
            padding: 7px 14px;
            gap: 8px;
            transition: all var(--transition-fast);
            font-size: 0.85rem;
            color: var(--color-text-weak);
        }
        .search-mini:hover {
            border-color: var(--color-brand);
            box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.06);
        }
        .search-mini input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            width: 120px;
            color: var(--color-text);
        }
        .search-mini input::placeholder {
            color: #94a3b8;
        }
        .btn-nav-cta {
            background: var(--color-brand);
            color: #fff;
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all var(--transition-fast);
            border: 2px solid var(--color-brand);
        }
        .btn-nav-cta:hover {
            background: var(--color-brand-dark);
            border-color: var(--color-brand-dark);
            box-shadow: var(--shadow);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-text);
            padding: 6px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }
        .mobile-menu-btn:hover {
            background: var(--color-border-light);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: #ffffff;
            z-index: 999;
            padding: 20px 24px;
            flex-direction: column;
            gap: 6px;
            overflow-y: auto;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            display: block;
            padding: 12px 16px;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text);
            transition: all var(--transition-fast);
        }
        .mobile-nav-panel a:hover {
            background: var(--color-brand-light);
            color: var(--color-brand);
        }
        .mobile-nav-panel a.active {
            background: var(--color-brand);
            color: #fff;
            font-weight: 600;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .section-spacing {
            padding: 56px 0;
        }
        .section-spacing-lg {
            padding: 72px 0;
        }
        .section-spacing-sm {
            padding: 40px 0;
        }
        .section-title {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-weak);
            margin-bottom: 32px;
            line-height: 1.6;
        }
        .section-header {
            text-align: center;
            margin-bottom: 36px;
        }

        .hero-section {
            position: relative;
            background-image: url('assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            min-height: 520px;
            display: flex;
            align-items: center;
            color: #ffffff;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 61, 58, 0.88) 0%, rgba(15, 118, 110, 0.72) 50%, rgba(30, 41, 59, 0.78) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 60px 0;
        }
        .hero-content h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .hero-content .hero-desc {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 24px;
            max-width: 540px;
        }
        .hero-search-wrap {
            display: flex;
            align-items: center;
            background: #ffffff;
            border-radius: 30px;
            padding: 5px;
            max-width: 480px;
            box-shadow: var(--shadow-xl);
        }
        .hero-search-wrap input {
            flex: 1;
            border: none;
            outline: none;
            padding: 13px 18px;
            font-size: 0.95rem;
            border-radius: 30px;
            color: var(--color-text);
            background: transparent;
        }
        .hero-search-wrap input::placeholder {
            color: #94a3b8;
        }
        .hero-search-wrap button {
            background: var(--color-brand);
            color: #fff;
            border: none;
            padding: 12px 26px;
            border-radius: 26px;
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all var(--transition-fast);
        }
        .hero-search-wrap button:hover {
            background: var(--color-brand-dark);
            box-shadow: var(--shadow-lg);
        }
        .hero-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--color-alert);
            color: #fff;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 16px;
            animation: pulse-dot 2s infinite;
        }
        .hero-live-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            animation: pulse-dot-inner 2s infinite;
        }
        @keyframes pulse-dot {
            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);
            }
        }
        @keyframes pulse-dot-inner {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.4;
            }
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .card-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        .card-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        .card-league {
            background: #ffffff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            cursor: pointer;
            border: 1px solid var(--color-border-light);
        }
        .card-league:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--color-brand-light);
        }
        .card-league .card-img {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        .card-league .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .card-league:hover .card-img img {
            transform: scale(1.06);
        }
        .card-league .card-img .card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--color-brand);
            color: #fff;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.78rem;
            font-weight: 600;
            z-index: 2;
        }
        .card-league .card-body {
            padding: 16px 18px;
        }
        .card-league .card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 4px;
            color: var(--color-text);
        }
        .card-league .card-body p {
            font-size: 0.85rem;
            color: var(--color-text-weak);
            margin: 0;
            line-height: 1.5;
        }
        .card-league .card-body .card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            font-size: 0.8rem;
            color: var(--color-brand);
            font-weight: 500;
        }

        .score-strip {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--color-border-light);
        }
        .score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            border-bottom: 1px solid var(--color-border-light);
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .score-row:last-child {
            border-bottom: none;
        }
        .score-row:hover {
            background: #f8fdfc;
        }
        .score-row .team {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-text);
            min-width: 80px;
            text-align: center;
        }
        .score-row .score-display {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-brand);
            letter-spacing: 2px;
            min-width: 60px;
            text-align: center;
        }
        .score-row .score-display.live {
            color: var(--color-alert);
        }
        .score-row .status-tag {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: #fef3c7;
            color: #b45309;
            white-space: nowrap;
        }
        .score-row .status-tag.live-tag {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-dot 2.5s infinite;
        }
        .score-row .status-tag.finished-tag {
            background: #f0fdfa;
            color: #0f766e;
        }

        .table-standings {
            width: 100%;
            border-collapse: collapse;
            background: #ffffff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--color-border-light);
        }
        .table-standings thead {
            background: var(--color-darkpanel);
            color: #fff;
        }
        .table-standings thead th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 0.85rem;
            white-space: nowrap;
        }
        .table-standings tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--color-border-light);
            font-size: 0.9rem;
            color: var(--color-text);
            white-space: nowrap;
        }
        .table-standings tbody tr:hover {
            background: #f8fdfc;
        }
        .table-standings tbody tr:last-child td {
            border-bottom: none;
        }
        .table-standings .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
            background: var(--color-brand-light);
            color: var(--color-brand);
        }
        .table-standings .rank-badge.top3 {
            background: #fef3c7;
            color: #b45309;
        }

        .news-list-item {
            display: flex;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--color-border-light);
            align-items: flex-start;
            transition: all var(--transition-fast);
        }
        .news-list-item:hover {
            background: #f8fdfc;
            margin: 0 -12px;
            padding-left: 12px;
            padding-right: 12px;
            border-radius: var(--radius);
        }
        .news-list-item .news-thumb {
            width: 140px;
            height: 90px;
            border-radius: var(--radius);
            overflow: hidden;
            flex-shrink: 0;
            background: #e2e8f0;
        }
        .news-list-item .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-list-item .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-list-item .news-info h3 {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 6px;
            color: var(--color-text);
            line-height: 1.4;
        }
        .news-list-item .news-info .news-summary {
            font-size: 0.85rem;
            color: var(--color-text-weak);
            margin: 0 0 8px;
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-item .news-info .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.78rem;
            color: #94a3b8;
        }
        .news-list-item .news-info .news-meta a {
            color: var(--color-brand);
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .news-list-item .news-info .news-meta a:hover {
            color: var(--color-brand-dark);
            text-decoration: underline;
        }

        .topic-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition);
        }
        .topic-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .topic-card .topic-img {
            height: 180px;
            overflow: hidden;
        }
        .topic-card .topic-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .topic-card:hover .topic-img img {
            transform: scale(1.05);
        }
        .topic-card .topic-body {
            padding: 18px;
        }
        .topic-card .topic-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0 0 6px;
            color: var(--color-text);
        }
        .topic-card .topic-body p {
            font-size: 0.85rem;
            color: var(--color-text-weak);
            margin: 0 0 10px;
            line-height: 1.55;
        }
        .topic-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }
        .topic-tags span {
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 14px;
            background: var(--color-brand-light);
            color: var(--color-brand);
            font-weight: 500;
        }
        .topic-link {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-brand);
            transition: color var(--transition-fast);
        }
        .topic-link:hover {
            color: var(--color-brand-dark);
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border-light);
            padding: 18px 0;
            transition: all var(--transition-fast);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item .faq-q {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-text);
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            transition: color var(--transition-fast);
        }
        .faq-item .faq-q:hover {
            color: var(--color-brand);
        }
        .faq-item .faq-q .faq-icon {
            color: var(--color-brand);
            flex-shrink: 0;
            margin-top: 2px;
            font-weight: 700;
        }
        .faq-item .faq-a {
            font-size: 0.9rem;
            color: var(--color-text-weak);
            margin-top: 8px;
            margin-left: 26px;
            line-height: 1.65;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #ffffff;
            box-shadow: var(--shadow-lg);
        }
        .cta-section h2 {
            font-size: 1.7rem;
            font-weight: 700;
            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;
        }
        .btn-cta {
            display: inline-block;
            background: #ffffff;
            color: var(--color-brand);
            padding: 13px 32px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow);
        }
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            background: #f0fdfa;
        }

        .site-footer {
            background: var(--color-darkpanel);
            color: #cbd5e1;
            padding: 48px 0 28px;
            font-size: 0.88rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-grid h4 {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .footer-grid a {
            display: block;
            color: #94a3b8;
            padding: 4px 0;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-grid a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 24px;
            text-align: center;
            color: #94a3b8;
            font-size: 0.8rem;
            line-height: 2;
        }
        .footer-bottom a {
            color: #94a3b8;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: #ffffff;
        }
        .footer-bottom .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 8px;
        }
        .footer-friends {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 4px;
        }
        .footer-friends span {
            color: #64748b;
            font-size: 0.78rem;
        }

        @media (max-width: 1024px) {
            .header-inner {
                padding: 0 16px;
                height: 56px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.8rem;
            }
            .search-mini input {
                width: 80px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content {
                padding: 40px 0;
            }
            .hero-section {
                min-height: 420px;
            }
            .card-grid-3,
            .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-spacing {
                padding: 40px 0;
            }
            .section-spacing-lg {
                padding: 52px 0;
            }
            .cta-section {
                padding: 36px 28px;
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .search-mini {
                display: none;
            }
            .header-actions .btn-nav-cta {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-inner {
                height: 54px;
                padding: 0 14px;
            }
            .hero-section {
                min-height: 380px;
            }
            .hero-content h1 {
                font-size: 1.65rem;
            }
            .hero-content .hero-desc {
                font-size: 0.9rem;
            }
            .hero-search-wrap {
                max-width: 100%;
            }
            .hero-search-wrap button {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .card-grid-3,
            .card-grid-4 {
                grid-template-columns: 1fr 1fr;
            }
            .card-league .card-img {
                height: 130px;
            }
            .news-list-item {
                flex-direction: column;
                gap: 10px;
            }
            .news-list-item .news-thumb {
                width: 100%;
                height: 160px;
            }
            .table-standings thead th,
            .table-standings tbody td {
                padding: 10px 8px;
                font-size: 0.75rem;
            }
            .score-row {
                padding: 12px 14px;
                gap: 8px;
            }
            .score-row .team {
                font-size: 0.8rem;
                min-width: 50px;
            }
            .score-row .score-display {
                font-size: 1.2rem;
                min-width: 40px;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .section-spacing {
                padding: 32px 0;
            }
            .section-spacing-lg {
                padding: 40px 0;
            }
            .section-container {
                padding: 0 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .cta-section {
                padding: 28px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 520px) {
            .card-grid-3,
            .card-grid-4 {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 1.4rem;
            }
            .hero-section {
                min-height: 340px;
            }
            .hero-search-wrap {
                flex-direction: column;
                border-radius: 16px;
                padding: 8px;
                gap: 6px;
            }
            .hero-search-wrap input {
                width: 100%;
                padding: 12px 14px;
            }
            .hero-search-wrap button {
                width: 100%;
                border-radius: 12px;
                padding: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .footer-bottom .footer-links-row {
                gap: 10px;
                font-size: 0.75rem;
            }
            .score-row {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
                gap: 6px;
            }
            .table-standings {
                font-size: 0.7rem;
            }
            .table-standings thead th,
            .table-standings tbody td {
                padding: 7px 5px;
                font-size: 0.68rem;
            }
            .section-title {
                font-size: 1.2rem;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #1a7a3a;
            --primary-dark: #145e2c;
            --primary-light: #e8f5ec;
            --accent: #f5a623;
            --accent-dark: #d4891a;
            --dark: #1a1f2b;
            --dark-soft: #2a3040;
            --gray-soft: #f7f8fa;
            --text-main: #1e293b;
            --text-soft: #64748b;
            --text-muted: #94a3b8;
            --border-soft: #e2e8f0;
            --card-bg: #ffffff;
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 0.875rem;
            --radius-xl: 1.125rem;
            --radius-2xl: 1.5rem;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 2px 6px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
            --container-max: 1200px;
            --section-gap: 3.5rem;
        }

        *,
        *::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: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.65;
            color: var(--text-main);
            background-color: #fafbfc;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }
        button:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 6px;
        }
        input {
            font-family: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        /* Header & Navigation */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border-soft);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-nav);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            gap: 1.5rem;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 34px;
            height: 34px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
        }
        .logo-text {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--dark);
            white-space: nowrap;
            letter-spacing: -0.01em;
        }
        .logo-text span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.85rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-soft);
            white-space: nowrap;
            transition: all 0.2s ease;
            letter-spacing: 0.01em;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .nav-links a.active {
            color: #ffffff;
            background: var(--primary);
            font-weight: 600;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: var(--gray-soft);
            border-radius: 20px;
            padding: 0.4rem 0.9rem;
            gap: 0.4rem;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }
        .search-box:focus-within {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(26, 122, 58, 0.08);
        }
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            width: 130px;
            color: var(--text-main);
        }
        .search-box input::placeholder {
            color: var(--text-muted);
        }
        .search-icon {
            color: var(--text-soft);
            font-size: 0.9rem;
        }
        .btn-nav-cta {
            background: var(--accent);
            color: #fff;
            padding: 0.45rem 1.1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(245, 166, 35, 0.25);
        }
        .btn-nav-cta:hover {
            background: var(--accent-dark);
            box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
            transform: translateY(-1px);
        }

        /* Mobile menu toggle */
        .mobile-menu-btn {
            display: none;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: var(--gray-soft);
            color: var(--text-main);
            font-size: 1.2rem;
        }

        /* Page Banner */
        .page-banner {
            background: linear-gradient(135deg, #1a2e1a 0%, #1a3d24 40%, #0f2618 100%);
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 3.5rem 0;
            color: #ffffff;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 20, 10, 0.72);
            z-index: 0;
        }
        .page-banner .container {
            position: relative;
            z-index: 1;
        }
        .banner-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 0.8rem;
            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.5);
        }
        .banner-title {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }
        .banner-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            line-height: 1.6;
        }

        /* Section titles */
        .section-heading {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 1.8rem;
            flex-wrap: wrap;
        }
        .section-heading h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.01em;
        }
        .section-heading .badge-accent {
            background: var(--accent);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.7rem;
            border-radius: 12px;
            white-space: nowrap;
        }
        .section-heading .dot-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            flex-shrink: 0;
        }

        /* Score cards */
        .score-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 1.2rem 1.4rem;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-soft);
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .score-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: #d0d8e0;
            transform: translateY(-2px);
        }
        .score-match-info {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            min-width: 70px;
            font-size: 0.8rem;
            color: var(--text-soft);
        }
        .score-match-info .league-tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            width: fit-content;
        }
        .score-teams {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex: 1;
            min-width: 160px;
            justify-content: center;
        }
        .score-team {
            font-weight: 600;
            font-size: 0.95rem;
            text-align: center;
            color: var(--dark);
            min-width: 55px;
        }
        .score-number {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark);
            letter-spacing: 0.02em;
            min-width: 50px;
            text-align: center;
            background: var(--gray-soft);
            border-radius: 8px;
            padding: 0.3rem 0.5rem;
        }
        .score-number.live {
            color: #e53e3e;
            animation: pulse-live 1.4s ease-in-out infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .score-status {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-soft);
            min-width: 55px;
            text-align: center;
        }
        .score-status.live-tag {
            color: #e53e3e;
        }
        .score-status.finished-tag {
            color: var(--text-muted);
        }

        /* Standings table */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-soft);
            background: #fff;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 600px;
        }
        .standings-table thead th {
            background: #f1f5f9;
            padding: 0.75rem 0.8rem;
            text-align: left;
            font-weight: 600;
            color: var(--text-soft);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            white-space: nowrap;
            border-bottom: 2px solid var(--border-soft);
        }
        .standings-table tbody td {
            padding: 0.7rem 0.8rem;
            border-bottom: 1px solid #f1f5f9;
            white-space: nowrap;
        }
        .standings-table tbody tr:hover {
            background: #f8fafc;
        }
        .standings-table .pos-col {
            font-weight: 700;
            text-align: center;
            width: 40px;
        }
        .standings-table .team-col {
            font-weight: 600;
            color: var(--dark);
        }
        .standings-table .pts-col {
            font-weight: 700;
            color: var(--primary);
        }
        .standings-table .highlight-row {
            background: #fafff8;
        }
        .standings-table .highlight-row td {
            border-bottom-color: #e2f0e0;
        }

        /* Content cards */
        .content-card {
            background: #fff;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-soft);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }
        .content-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: #d0d8e0;
        }
        .content-card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }
        .content-card-body {
            padding: 1.1rem 1.3rem 1.3rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .content-card-tag {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary);
            background: var(--primary-light);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            width: fit-content;
            letter-spacing: 0.02em;
        }
        .content-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.4;
        }
        .content-card p {
            font-size: 0.85rem;
            color: var(--text-soft);
            line-height: 1.55;
        }
        .content-card .card-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }
        .btn-outline-sm {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.4rem 0.9rem;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.2s ease;
            width: fit-content;
        }
        .btn-outline-sm:hover {
            background: var(--primary);
            color: #fff;
        }

        /* Stats grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .stat-item {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 1.3rem 1.2rem;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-soft);
            text-align: center;
            transition: all 0.2s ease;
        }
        .stat-item:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-soft);
            margin-top: 0.3rem;
        }

        /* FAQ */
        .faq-item {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 1.2rem 1.5rem;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-soft);
            margin-bottom: 0.8rem;
            transition: all 0.2s ease;
        }
        .faq-item:hover {
            border-color: #d0d8e0;
        }
        .faq-item h4 {
            font-weight: 700;
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 0.4rem;
        }
        .faq-item p {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.6;
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, #1a7a3a 0%, #145e2c 100%);
            border-radius: var(--radius-2xl);
            padding: 2.5rem 2rem;
            text-align: center;
            color: #fff;
        }
        .cta-block h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }
        .cta-block p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1.3rem;
            font-size: 0.95rem;
        }
        .btn-cta-light {
            display: inline-block;
            background: #fff;
            color: var(--primary);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        .btn-cta-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            font-size: 0.85rem;
            margin-top: var(--section-gap);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.8rem;
            margin-bottom: 1.8rem;
        }
        .footer-grid h4 {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.7rem;
        }
        .footer-grid a {
            display: block;
            color: #94a3b8;
            padding: 0.2rem 0;
            transition: color 0.2s;
            font-size: 0.83rem;
        }
        .footer-grid a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 1.2rem;
            text-align: center;
            color: #94a3b8;
            font-size: 0.78rem;
            line-height: 1.8;
        }
        .footer-links-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .footer-links-row a {
            color: #94a3b8;
        }
        .footer-links-row a:hover {
            color: #fff;
        }
        .footer-friends {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.6rem;
            color: #94a3b8;
            font-size: 0.78rem;
        }
        .footer-friends span {
            color: #64748b;
        }
        .footer-bottom p {
            margin: 2px 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links a {
                padding: 0.35rem 0.6rem;
                font-size: 0.8rem;
            }
            .search-box input {
                width: 90px;
            }
            .banner-title {
                font-size: 1.8rem;
            }
            .score-card {
                padding: 1rem;
                gap: 0.6rem;
            }
            .score-number {
                font-size: 1.3rem;
                min-width: 40px;
                padding: 0.25rem 0.4rem;
            }
            .score-team {
                font-size: 0.82rem;
                min-width: 40px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                height: 52px;
                gap: 0.8rem;
            }
            .nav-links {
                display: none;
            }
            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: #fff;
                padding: 1rem;
                border-bottom: 2px solid var(--border-soft);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                z-index: 99;
                gap: 0.3rem;
                overflow-y: auto;
                max-height: 70vh;
            }
            .nav-links.mobile-open a {
                width: 100%;
                justify-content: center;
                padding: 0.6rem 1rem;
                border-radius: 10px;
                font-size: 0.9rem;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .search-box {
                display: none;
            }
            .btn-nav-cta {
                font-size: 0.78rem;
                padding: 0.4rem 0.8rem;
            }
            .page-banner {
                padding: 2.5rem 0;
            }
            .banner-title {
                font-size: 1.5rem;
            }
            .banner-subtitle {
                font-size: 0.9rem;
            }
            .section-heading h2 {
                font-size: 1.25rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.7rem;
            }
            .stat-value {
                font-size: 1.5rem;
            }
            .cta-block {
                padding: 1.8rem 1.2rem;
            }
            .cta-block h3 {
                font-size: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
            .score-card {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                gap: 0.8rem;
            }
            .score-teams {
                justify-content: center;
            }
            .score-match-info {
                align-items: center;
            }
            .score-status {
                text-align: center;
                min-width: auto;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 0.9rem;
                padding-right: 0.9rem;
            }
            .banner-title {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
            }
            .stat-item {
                padding: 1rem 0.8rem;
            }
            .stat-value {
                font-size: 1.3rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .content-card-body {
                padding: 0.9rem 1rem 1.1rem;
            }
            .content-card h3 {
                font-size: 0.95rem;
            }
            .standings-table {
                font-size: 0.75rem;
                min-width: 480px;
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 0.5rem 0.5rem;
            }
        }

/* roulang page: category6 */
:root {
            --primary: #1e3a5f;
            --primary-light: #2c5282;
            --primary-dark: #0f2440;
            --accent: #e63946;
            --accent-hover: #c1121f;
            --surface: #f8fafc;
            --surface-card: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --radius-card: 12px;
            --radius-btn: 8px;
            --radius-tag: 20px;
            --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 8px 28px rgba(0, 0, 0, 0.10);
            --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.05);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #1e293b;
            background-color: #f8fafc;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            font-size: inherit;
        }

        input {
            font-family: inherit;
            font-size: inherit;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Nav */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow-nav);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 20px;
            flex-wrap: nowrap;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
        }

        .logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .nav-links::-webkit-scrollbar {
            display: none;
        }

        .nav-links a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #475569;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: #f1f5f9;
        }

        .nav-links a.active {
            color: #ffffff;
            background: var(--accent);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(230, 57, 70, 0.25);
        }

        .nav-links a.active:hover {
            background: var(--accent-hover);
            color: #ffffff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-box-mini {
            display: flex;
            align-items: center;
            background: #f1f5f9;
            border-radius: 8px;
            padding: 7px 14px;
            gap: 8px;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }

        .search-box-mini:focus-within {
            border-color: var(--border);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.06);
        }

        .search-box-mini input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            width: 140px;
            color: #1e293b;
        }

        .search-box-mini input::placeholder {
            color: #94a3b8;
        }

        .search-icon {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        .btn-login {
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            background: transparent;
            border: 1.5px solid var(--border);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .btn-login:hover {
            border-color: var(--primary);
            background: #f8fafc;
        }

        .btn-cta-nav {
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            background: var(--accent);
            white-space: nowrap;
            transition: all var(--transition-fast);
            box-shadow: 0 2px 8px rgba(230, 57, 70, 0.2);
        }

        .btn-cta-nav:hover {
            background: var(--accent-hover);
            box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
            transform: translateY(-1px);
        }

        /* Mobile nav toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            padding: 6px;
            border-radius: 6px;
            cursor: pointer;
        }

        .mobile-menu-toggle:hover {
            background: #f1f5f9;
        }

        /* Hero / Banner */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #0f2440 0%, #1e3a5f 40%, #2c5282 100%);
            padding: 60px 0;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            z-index: 0;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 1;
        }

        .banner-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: var(--radius-tag);
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            backdrop-filter: blur(4px);
            margin-bottom: 16px;
        }

        .banner-title {
            font-size: 2.4rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 12px;
            line-height: 1.25;
            letter-spacing: 0.01em;
        }

        .banner-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            max-width: 600px;
            line-height: 1.6;
        }

        /* Breadcrumb */
        .breadcrumb-row {
            padding: 16px 0;
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumb-row a {
            color: #64748b;
        }
        .breadcrumb-row a:hover {
            color: var(--primary);
        }
        .breadcrumb-sep {
            color: #cbd5e1;
        }
        .breadcrumb-current {
            color: var(--primary);
            font-weight: 600;
        }

        /* Section titles */
        .section-title {
            font-size: 1.55rem;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 6px;
            letter-spacing: 0.01em;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: #64748b;
            margin: 0 0 28px;
        }

        .section-header {
            margin-bottom: 24px;
        }

        .section-spacing {
            padding: 48px 0;
        }

        /* Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 20px;
        }

        .content-card {
            background: #ffffff;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid var(--border-light);
        }

        .content-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: #dde4ef;
        }

        .content-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: #e2e8f0;
        }

        .content-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .content-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }

        .card-tag-overlay {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            font-size: 0.75rem;
            font-weight: 600;
            background: var(--accent);
            color: #fff;
            z-index: 1;
        }

        .content-card .card-body {
            padding: 18px 20px 20px;
        }

        .card-body .card-date {
            font-size: 0.78rem;
            color: #94a3b8;
            margin-bottom: 6px;
        }

        .card-body .card-title-link {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1e293b;
            line-height: 1.4;
            display: block;
            margin-bottom: 8px;
            transition: color var(--transition-fast);
        }

        .card-body .card-title-link:hover {
            color: var(--accent);
        }

        .card-body .card-excerpt {
            font-size: 0.88rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0 0 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-body .card-meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }

        .card-meta-tag {
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: var(--radius-tag);
            background: #f1f5f9;
            color: #475569;
            font-weight: 500;
        }

        .card-read-more {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary);
            transition: color var(--transition-fast);
        }

        .card-read-more:hover {
            color: var(--accent);
        }

        /* Match result block */
        .match-result-block {
            background: #ffffff;
            border-radius: var(--radius-card);
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            transition: all var(--transition-smooth);
        }

        .match-result-block:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: #dde4ef;
        }

        .match-teams {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 700;
            font-size: 1rem;
        }

        .match-score {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            min-width: 60px;
            text-align: center;
        }

        .match-info-tag {
            font-size: 0.75rem;
            color: #64748b;
            background: #f8fafc;
            padding: 4px 10px;
            border-radius: var(--radius-tag);
        }

        /* Stats grid */
        .stats-mini-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .stat-card {
            background: #ffffff;
            border-radius: var(--radius-card);
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
        }

        .stat-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.82rem;
            color: #64748b;
            font-weight: 500;
        }

        .stat-accent {
            color: var(--accent);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: #ffffff;
            border-radius: var(--radius-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }

        .faq-item:hover {
            border-color: #dde4ef;
            box-shadow: var(--shadow-card);
        }

        .faq-question {
            padding: 18px 20px;
            font-weight: 700;
            font-size: 0.95rem;
            color: #1e293b;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            user-select: none;
        }

        .faq-question .faq-icon {
            font-size: 0.7rem;
            color: #94a3b8;
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .faq-answer {
            padding: 0 20px 18px;
            font-size: 0.88rem;
            color: #475569;
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1e3a5f 0%, #0f2440 100%);
            border-radius: var(--radius-card);
            padding: 44px 36px;
            text-align: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            z-index: 0;
        }

        .cta-section>* {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 1.55rem;
            font-weight: 700;
            margin: 0 0 10px;
        }

        .cta-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 24px;
        }

        .btn-cta-large {
            display: inline-block;
            padding: 14px 32px;
            border-radius: var(--radius-btn);
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            background: var(--accent);
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
        }

        .btn-cta-large:hover {
            background: var(--accent-hover);
            box-shadow: 0 6px 22px rgba(230, 57, 70, 0.4);
            transform: translateY(-2px);
        }

        /* Footer */
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 28px;
            margin-bottom: 28px;
        }

        .footer-grid h4 {
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0 0 12px;
        }

        .footer-grid a,
        .footer-grid span {
            display: block;
            font-size: 0.82rem;
            color: #94a3b8;
            padding: 4px 0;
            transition: color var(--transition-fast);
        }

        .footer-grid a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            text-align: center;
            font-size: 0.78rem;
            color: #64748b;
            line-height: 1.8;
        }

        .footer-links-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .footer-links-row a {
            color: #94a3b8;
            font-size: 0.78rem;
        }
        .footer-links-row a:hover {
            color: #ffffff;
        }
        .footer-links-row span {
            color: #475569;
        }

        .footer-friends {
            margin: 6px 0;
            font-size: 0.76rem;
            color: #475569;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .footer-friends span {
            color: #64748b;
        }

        .footer-bottom p {
            margin: 2px 0;
            font-size: 0.76rem;
            color: #475569;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .banner-title {
                font-size: 1.9rem;
            }
            .card-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 16px;
            }
            .search-box-mini input {
                width: 100px;
            }
            .nav-links a {
                padding: 6px 12px;
                font-size: 0.82rem;
            }
            .header-inner {
                gap: 12px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #ffffff;
                flex-direction: column;
                padding: 12px 16px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
                border-top: 1px solid var(--border);
                gap: 2px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .header-actions {
                gap: 6px;
            }
            .search-box-mini input {
                width: 80px;
                font-size: 0.8rem;
            }
            .btn-login,
            .btn-cta-nav {
                padding: 6px 12px;
                font-size: 0.78rem;
            }
            .banner-title {
                font-size: 1.6rem;
            }
            .banner-subtitle {
                font-size: 0.9rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .section-spacing {
                padding: 32px 0;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .match-result-block {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            .match-teams {
                flex-direction: column;
                gap: 6px;
            }
            .stats-mini-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-section {
                padding: 28px 20px;
            }
            .cta-title {
                font-size: 1.3rem;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .page-banner {
                padding: 36px 0;
            }
            .logo-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                gap: 8px;
            }
            .search-box-mini {
                padding: 6px 10px;
            }
            .search-box-mini input {
                width: 60px;
                font-size: 0.75rem;
            }
            .btn-login,
            .btn-cta-nav {
                padding: 5px 10px;
                font-size: 0.72rem;
            }
            .banner-title {
                font-size: 1.35rem;
            }
            .section-spacing {
                padding: 24px 0;
            }
            .section-title {
                font-size: 1.15rem;
            }
            .stats-mini-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-value {
                font-size: 1.5rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .footer-links-row {
                gap: 6px;
                font-size: 0.7rem;
            }
            .content-card .card-body {
                padding: 14px;
            }
            .card-body .card-title-link {
                font-size: 0.95rem;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }
            .logo-text {
                font-size: 0.9rem;
            }
        }

        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }

/* roulang page: category3 */
:root {
            --color-primary: #1a5632;
            --color-primary-light: #2d7a4a;
            --color-primary-dark: #0f3d1f;
            --color-accent: #e8a817;
            --color-accent-light: #f5c84e;
            --color-accent-dark: #c48a0d;
            --color-surface: #f9fafb;
            --color-surface-alt: #f0f4f1;
            --color-text-main: #1a1f1c;
            --color-text-soft: #5c6b62;
            --color-text-muted: #88998f;
            --color-border-soft: #dde5df;
            --color-border-light: #eaf0ec;
            --radius-xl: 0.875rem;
            --radius-2xl: 1.125rem;
            --radius-3xl: 1.5rem;
            --shadow-card: 0 1px 3px rgba(15, 61, 31, 0.06), 0 1px 2px rgba(15, 61, 31, 0.04);
            --shadow-card-hover: 0 10px 28px rgba(15, 61, 31, 0.10), 0 4px 10px rgba(15, 61, 31, 0.06);
            --shadow-nav: 0 1px 0 rgba(15, 61, 31, 0.08);
            --transition-fast: 180ms ease;
            --transition-smooth: 280ms 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;
            padding: 0;
            font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            line-height: 1.65;
            color: var(--color-text-main);
            background-color: #ffffff;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        input {
            font-family: inherit;
        }

        .section-container {
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        @media (min-width: 768px) {
            .section-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .section-container {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-nav);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 1.25rem;
            flex-wrap: nowrap;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--color-primary-dark);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }

        @media (max-width: 520px) {
            .logo-text {
                font-size: 1rem;
            }
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
                border-radius: 8px;
            }
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0 0.25rem;
        }

        .nav-links::-webkit-scrollbar {
            display: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.85rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-text-soft);
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.01em;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            background: var(--color-surface-alt);
        }

        .nav-links a.active {
            color: #ffffff;
            background: var(--color-primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26, 86, 50, 0.25);
        }

        .nav-links a.active:hover {
            background: var(--color-primary-light);
            color: #ffffff;
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--color-surface);
            border: 1px solid var(--color-border-soft);
            border-radius: 24px;
            padding: 0.4rem 0.6rem 0.4rem 1rem;
            flex-shrink: 0;
            transition: all var(--transition-fast);
        }

        .search-box:focus-within {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.08);
            background: #fff;
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            width: 130px;
            color: var(--color-text-main);
        }

        .search-box input::placeholder {
            color: var(--color-text-muted);
        }

        .search-box button {
            background: var(--color-primary);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            transition: background var(--transition-fast);
            flex-shrink: 0;
        }

        .search-box button:hover {
            background: var(--color-primary-light);
        }

        @media (max-width: 1024px) {
            .search-box {
                display: none;
            }
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--color-text-main);
            padding: 0.4rem;
            border-radius: 8px;
            transition: background var(--transition-fast);
        }

        .mobile-menu-btn:hover {
            background: var(--color-surface-alt);
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 0.75rem 1.25rem;
                gap: 0.15rem;
                border-bottom: 1px solid var(--color-border-light);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                z-index: 99;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 0.65rem 1rem;
                border-radius: 8px;
                font-size: 0.95rem;
            }
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            min-height: 320px;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 61, 31, 0.82) 0%, rgba(15, 41, 22, 0.88) 100%);
            z-index: 1;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            padding: 3rem 0;
        }

        .breadcrumb-row {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.75rem;
            flex-wrap: wrap;
        }

        .breadcrumb-row a {
            color: rgba(255, 255, 255, 0.85);
            transition: color var(--transition-fast);
        }

        .breadcrumb-row a:hover {
            color: #fff;
        }

        .breadcrumb-row span.sep {
            color: rgba(255, 255, 255, 0.5);
        }

        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #fff;
            margin: 0 0 0.6rem;
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

        .page-banner .banner-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .page-banner {
                min-height: 240px;
            }
            .page-banner h1 {
                font-size: 1.8rem;
            }
            .page-banner .banner-sub {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 520px) {
            .page-banner {
                min-height: 200px;
            }
            .page-banner h1 {
                font-size: 1.5rem;
            }
            .page-banner .banner-sub {
                font-size: 0.85rem;
            }
        }

        /* Section spacing */
        .section-spacing {
            padding: 3.5rem 0;
        }

        @media (max-width: 768px) {
            .section-spacing {
                padding: 2.25rem 0;
            }
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--color-text-main);
            margin: 0 0 0.4rem;
            letter-spacing: -0.02em;
            position: relative;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-soft);
            margin: 0 0 1.75rem;
            line-height: 1.6;
        }

        .section-title-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 0.3rem;
        }

        .section-title-row .view-all {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-primary);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: gap var(--transition-fast);
            white-space: nowrap;
        }

        .section-title-row .view-all:hover {
            gap: 0.55rem;
            color: var(--color-primary-light);
        }

        /* Cards */
        .card-base {
            background: #fff;
            border-radius: var(--radius-xl);
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            overflow: hidden;
        }

        .card-base:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: var(--color-border-soft);
        }

        /* Match schedule card */
        .match-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.1rem 1.25rem;
            background: #fff;
            border-radius: var(--radius-xl);
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            flex-wrap: wrap;
        }

        .match-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: #c8d6cc;
        }

        .match-date-badge {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            background: var(--color-surface-alt);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            line-height: 1.1;
        }

        .match-date-badge .day {
            font-size: 1.3rem;
            color: var(--color-primary-dark);
        }

        .match-date-badge .mon {
            font-size: 0.7rem;
            color: var(--color-text-soft);
            text-transform: uppercase;
        }

        .match-info {
            flex: 1;
            min-width: 140px;
        }

        .match-teams {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-text-main);
            letter-spacing: -0.01em;
        }

        .match-meta {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: 2px;
        }

        .match-status {
            flex-shrink: 0;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .status-upcoming {
            background: #e8f5e9;
            color: #1a5632;
        }

        .status-live {
            background: #fde8e8;
            color: #c62828;
            animation: pulse-live 1.8s ease-in-out infinite;
        }

        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }

        .status-finished {
            background: #f0f0f0;
            color: #666;
        }

        /* Table styles */
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-xl);
            border: 1px solid var(--color-border-light);
            box-shadow: var(--shadow-card);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 600px;
        }

        .data-table thead {
            background: var(--color-surface-alt);
        }

        .data-table thead th {
            padding: 0.85rem 1rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--color-text-soft);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .data-table tbody td {
            padding: 0.75rem 1rem;
            border-top: 1px solid var(--color-border-light);
            color: var(--color-text-main);
            white-space: nowrap;
        }

        .data-table tbody tr {
            transition: background var(--transition-fast);
        }

        .data-table tbody tr:hover {
            background: #f9fdf9;
        }

        .rank-col {
            font-weight: 700;
            color: var(--color-primary);
            font-size: 0.95rem;
        }

        .team-col {
            font-weight: 600;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--color-border-light);
            padding: 1.1rem 0;
            transition: all var(--transition-fast);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-weight: 700;
            font-size: 1rem;
            color: var(--color-text-main);
            cursor: default;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            letter-spacing: -0.01em;
        }

        .faq-question .faq-icon {
            color: var(--color-primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .faq-answer {
            font-size: 0.92rem;
            color: var(--color-text-soft);
            margin-top: 0.45rem;
            padding-left: 1.6rem;
            line-height: 1.7;
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
            border-radius: var(--radius-2xl);
            padding: 3rem 2.5rem;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-block::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-block h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 0 0.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-block p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.82);
            margin: 0 0 1.5rem;
            position: relative;
            z-index: 1;
        }

        .btn-cta-white {
            display: inline-block;
            background: #fff;
            color: var(--color-primary-dark);
            font-weight: 700;
            padding: 0.7rem 2rem;
            border-radius: 28px;
            font-size: 0.95rem;
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
            border: none;
            cursor: pointer;
            letter-spacing: 0.01em;
        }

        .btn-cta-white:hover {
            background: #f0f4f1;
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 520px) {
            .cta-block {
                padding: 2rem 1.25rem;
                border-radius: var(--radius-xl);
            }
            .cta-block h3 {
                font-size: 1.25rem;
            }
        }

        /* Footer */
        .site-footer {
            background: #0f1a13;
            color: #c5cec8;
            padding: 3rem 0 1.5rem;
            font-size: 0.88rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
        }

        .footer-grid h4 {
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            margin: 0 0 0.75rem;
            letter-spacing: -0.01em;
        }

        .footer-grid a {
            display: block;
            color: #a0b0a5;
            padding: 0.2rem 0;
            transition: color var(--transition-fast);
            font-size: 0.85rem;
        }

        .footer-grid a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.25rem;
            text-align: center;
            color: #7a8c7f;
            font-size: 0.78rem;
            line-height: 1.8;
        }

        .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 1rem;
            margin-bottom: 0.5rem;
        }

        .footer-links-row a {
            color: #a0b0a5;
            transition: color var(--transition-fast);
        }

        .footer-links-row a:hover {
            color: #fff;
        }

        .footer-friends {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.3rem 0.8rem;
            margin-bottom: 0.5rem;
            color: #6b7d70;
            font-size: 0.78rem;
        }

        .footer-friends span {
            cursor: default;
        }

        .footer-bottom p {
            margin: 2px 0;
        }

        /* Responsive utilities */
        @media (max-width: 768px) {
            .hide-mobile {
                display: none !important;
            }
        }

        @media (min-width: 769px) {
            .show-mobile-only {
                display: none !important;
            }
        }

/* roulang page: category4 */
:root {
            --color-primary: #1a73e8;
            --color-primary-dark: #1557b0;
            --color-accent: #e8453c;
            --color-bg: #f8fafc;
            --color-card: #ffffff;
            --color-text: #1e293b;
            --color-text-soft: #475569;
            --color-muted: #94a3b8;
            --color-border: #e2e8f0;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 14px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.10), 0 10px 28px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.28s 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;
            padding: 0;
            font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            line-height: 1.65;
            background-color: #f8fafc;
            color: #1e293b;
            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;
        }

        input {
            font-family: inherit;
        }

        .section-container {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        @media (min-width: 768px) {
            .section-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        @media (min-width: 1024px) {
            .section-container {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: #ffffff;
            border-bottom: 1px solid var(--color-border);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.03);
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            gap: 1rem;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .logo-text {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f172a;
            white-space: nowrap;
        }
        .logo-text span {
            color: #1a73e8;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.15rem;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.4rem 0.7rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #475569;
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }
        .nav-links a:hover {
            color: #1a73e8;
            background: #eff6ff;
        }
        .nav-links a.active {
            color: #1a73e8;
            font-weight: 600;
            background: #eff6ff;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: #1a73e8;
            border-radius: 3px;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }
        .search-box {
            display: none;
            align-items: center;
            background: #f1f5f9;
            border-radius: 2rem;
            padding: 0.4rem 0.9rem;
            gap: 0.4rem;
            border: 1px solid transparent;
            transition: all var(--transition-fast);
        }
        .search-box:focus-within {
            border-color: #1a73e8;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.08);
        }
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 0.85rem;
            width: 140px;
            color: #1e293b;
        }
        .search-box input::placeholder {
            color: #94a3b8;
        }
        .btn-nav-cta {
            background: #1a73e8;
            color: #fff;
            border: none;
            padding: 0.45rem 1rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all var(--transition-fast);
            box-shadow: 0 2px 6px rgba(26, 115, 232, 0.25);
        }
        .btn-nav-cta:hover {
            background: #1557b0;
            box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 0.5rem;
            border: 1px solid #e2e8f0;
            background: #fff;
            cursor: pointer;
            flex-shrink: 0;
        }
        .mobile-menu-btn svg {
            width: 20px;
            height: 20px;
            color: #475569;
        }
        @media (min-width: 1024px) {
            .search-box {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
            .nav-links {
                gap: 0.2rem;
            }
            .nav-links a {
                padding: 0.4rem 0.75rem;
                font-size: 0.875rem;
            }
            .header-inner {
                height: 64px;
            }
        }
        @media (max-width: 1023px) {
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0.5rem 1rem;
                border-bottom: 1px solid #e2e8f0;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 99;
            }
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links a {
                padding: 0.7rem 1rem;
                border-radius: 0.5rem;
                font-size: 0.9rem;
                border-bottom: 1px solid #f1f5f9;
            }
            .nav-links a.active::after {
                display: none;
            }
            .nav-links a.active {
                border-left: 3px solid #1a73e8;
            }
            .header-actions .search-box {
                display: none;
            }
        }

        /* Banner */
        .page-banner {
            position: relative;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            min-height: 280px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(26, 115, 232, 0.55) 100%);
            z-index: 1;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            padding: 3rem 0;
        }

        /* Section spacing */
        .page-section {
            padding: 3rem 0;
        }
        @media (min-width: 768px) {
            .page-section {
                padding: 4rem 0;
            }
            .page-banner {
                min-height: 340px;
            }
        }

        /* Cards */
        .stat-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid #f1f5f9;
        }
        .stat-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: #e2e8f0;
        }
        .content-card {
            background: #fff;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
        }
        .content-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .content-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: #f1f5f9;
        }
        .content-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .content-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }
        .content-card .card-body {
            padding: 1.25rem 1.25rem 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Table */
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #fff;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        .standings-table thead {
            background: #f8fafc;
        }
        .standings-table th {
            padding: 0.8rem 0.6rem;
            font-weight: 600;
            color: #475569;
            text-align: center;
            font-size: 0.8rem;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .standings-table td {
            padding: 0.7rem 0.6rem;
            text-align: center;
            border-bottom: 1px solid #f1f5f9;
            white-space: nowrap;
        }
        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }
        .standings-table tbody tr:hover {
            background: #f8faff;
        }
        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.8rem;
        }
        .rank-top {
            background: #1a73e8;
            color: #fff;
        }
        .rank-high {
            background: #dbeafe;
            color: #1a73e8;
        }
        .rank-mid {
            background: #f1f5f9;
            color: #475569;
        }

        /* FAQ */
        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: var(--radius-lg);
            margin-bottom: 0.75rem;
            overflow: hidden;
            background: #fff;
            transition: all var(--transition-fast);
        }
        .faq-item summary {
            padding: 1rem 1.25rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: #1e293b;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            list-style: none;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '+';
            font-size: 1.3rem;
            color: #94a3b8;
            font-weight: 300;
            transition: transform 0.25s ease;
        }
        .faq-item[open] summary::after {
            content: '−';
            color: #1a73e8;
            transform: rotate(180deg);
        }
        .faq-item .faq-answer {
            padding: 0 1.25rem 1.1rem;
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .faq-item[open] {
            border-color: #bfdbfe;
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.04);
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a73e8 100%);
            border-radius: var(--radius-xl);
            padding: 2.5rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }
        .cta-block::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            pointer-events: none;
        }
        .cta-block>* {
            position: relative;
            z-index: 1;
        }
        .btn-cta-primary {
            display: inline-block;
            background: #fff;
            color: #1a73e8;
            font-weight: 700;
            padding: 0.7rem 2rem;
            border-radius: 2rem;
            font-size: 0.95rem;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }
        .btn-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            background: #f0f7ff;
        }
        .btn-outline-white {
            display: inline-block;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            font-weight: 600;
            padding: 0.6rem 1.8rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            background: transparent;
            cursor: pointer;
        }
        .btn-outline-white:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Tag */
        .tag {
            display: inline-block;
            padding: 0.25rem 0.7rem;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .tag-blue {
            background: #dbeafe;
            color: #1a73e8;
        }
        .tag-green {
            background: #dcfce7;
            color: #16a34a;
        }
        .tag-orange {
            background: #fff7ed;
            color: #ea580c;
        }
        .tag-red {
            background: #fef2f2;
            color: #dc2626;
        }

        /* Footer */
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
            font-size: 0.85rem;
        }
        .site-footer h4 {
            color: #f1f5f9;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        .site-footer a {
            color: #94a3b8;
            display: block;
            padding: 0.2rem 0;
            transition: color var(--transition-fast);
            font-size: 0.82rem;
        }
        .site-footer a:hover {
            color: #e2e8f0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 1.25rem;
            text-align: center;
            color: #64748b;
            font-size: 0.78rem;
            line-height: 1.8;
        }
        .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 0.3rem;
            margin-bottom: 0.6rem;
        }
        .footer-links-row a,
        .footer-links-row span {
            color: #94a3b8;
            font-size: 0.78rem;
        }
        .footer-links-row a:hover {
            color: #e2e8f0;
        }
        .footer-friends {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.76rem;
            color: #64748b;
        }
        .footer-friends span {
            color: #64748b;
        }

        /* Misc */
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #1a73e8;
            margin-bottom: 0.4rem;
        }
        .divider {
            width: 48px;
            height: 3px;
            background: #1a73e8;
            border-radius: 3px;
            margin: 0.6rem 0 1rem;
        }
        .text-balance {
            text-wrap: balance;
        }

        @media (max-width: 640px) {
            .standings-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                margin: 0 -1rem;
                padding: 0 1rem;
            }
            .standings-table {
                min-width: 640px;
                font-size: 0.78rem;
            }
            .standings-table th,
            .standings-table td {
                padding: 0.5rem 0.35rem;
                font-size: 0.72rem;
            }
            .page-banner {
                min-height: 220px;
            }
            .page-banner .banner-content {
                padding: 2rem 0;
            }
        }

/* roulang page: category2 */
:root {
            --brand-500: #1a8a4a;
            --brand-600: #166d3b;
            --brand-700: #12522c;
            --accent-500: #d97706;
            --accent-400: #f59e0b;
            --surface: #f8fafc;
            --card: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
            --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.10), 0 8px 28px rgba(0, 0, 0, 0.06);
            --shadow-nav: 0 2px 12px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.18s ease;
            --transition-smooth: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--surface);
            min-height: 100vh;
        }

        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;
        }

        input {
            font-family: inherit;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-nav);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 62px;
            gap: 16px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--brand-500);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--brand-700);
            white-space: nowrap;
            letter-spacing: -0.3px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .nav-links::-webkit-scrollbar {
            display: none;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 7px 14px;
            border-radius: 7px;
            font-size: 0.93rem;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--brand-600);
            background: #f0fdf4;
        }

        .nav-links a.active {
            color: #ffffff;
            background: var(--brand-500);
            font-weight: 600;
        }

        .nav-links a.active:hover {
            background: var(--brand-600);
            color: #ffffff;
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .search-input-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input-wrap input {
            width: 180px;
            padding: 8px 14px 8px 34px;
            border: 1.5px solid var(--border);
            border-radius: 20px;
            font-size: 0.88rem;
            outline: none;
            transition: all var(--transition-fast);
            background: #f8fafc;
            color: var(--text-primary);
        }

        .search-input-wrap input:focus {
            border-color: var(--brand-500);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(26, 138, 74, 0.08);
            width: 210px;
        }

        .search-input-wrap .search-icon {
            position: absolute;
            left: 12px;
            color: var(--text-muted);
            pointer-events: none;
            font-size: 0.9rem;
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 18px;
            background: var(--accent-500);
            color: #fff;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            white-space: nowrap;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .btn-nav-cta:hover {
            background: var(--accent-600);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            padding: 6px;
            cursor: pointer;
        }

        /* Banner */
        .page-banner {
            position: relative;
            background: url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            min-height: 340px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 40, 22, 0.82) 0%, rgba(18, 52, 34, 0.7) 40%, rgba(10, 40, 22, 0.78) 100%);
            z-index: 1;
        }

        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            width: 100%;
        }

        .page-banner .banner-badge {
            display: inline-block;
            background: var(--accent-400);
            color: #1e293b;
            padding: 5px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.4px;
            margin-bottom: 14px;
        }

        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 12px;
            letter-spacing: -0.5px;
            line-height: 1.25;
        }

        .page-banner .banner-subtitle {
            font-size: 1.12rem;
            color: rgba(255, 255, 255, 0.88);
            margin: 0 0 18px;
            max-width: 600px;
            line-height: 1.6;
        }

        .banner-stats-row {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }

        .banner-stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .banner-stat-item .stat-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent-400);
            line-height: 1;
        }

        /* Section */
        .section {
            padding: 56px 0;
        }

        .section-sm {
            padding: 40px 0;
        }

        .section-title {
            font-size: 1.55rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px;
            letter-spacing: -0.2px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 22px;
            background: var(--brand-500);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .section-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0 0 32px;
            line-height: 1.6;
        }

        /* Cards */
        .card {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition-smooth);
            border: 1px solid var(--border);
        }

        .card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
        }

        .card-body {
            padding: 18px 16px;
        }

        .card-tag {
            display: inline-block;
            background: #f0fdf4;
            color: var(--brand-600);
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .card-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0 0 6px;
            line-height: 1.4;
        }

        .card-text {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.55;
            margin: 0;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 10px;
        }

        /* Match card */
        .match-card {
            background: var(--card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: all var(--transition-smooth);
            flex-wrap: wrap;
        }

        .match-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: var(--brand-300);
        }

        .match-round {
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            background: var(--brand-500);
            padding: 4px 12px;
            border-radius: 14px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .match-teams {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-primary);
            flex: 1;
            min-width: 140px;
            text-align: center;
        }

        .match-info {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: right;
            flex-shrink: 0;
            line-height: 1.5;
        }

        .match-info strong {
            color: var(--text-primary);
            display: block;
        }

        /* Timeline */
        .timeline-list {
            list-style: none;
            padding: 0;
            margin: 0;
            border-left: 3px solid var(--brand-300);
            padding-left: 24px;
        }

        .timeline-list li {
            position: relative;
            margin-bottom: 22px;
            padding-left: 0;
        }

        .timeline-list li::before {
            content: '';
            position: absolute;
            left: -31px;
            top: 5px;
            width: 13px;
            height: 13px;
            background: var(--brand-500);
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px var(--brand-300);
        }

        .timeline-date {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--brand-600);
            margin-bottom: 3px;
        }

        .timeline-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
        }

        .timeline-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 12px;
            background: #fff;
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--brand-300);
            box-shadow: var(--shadow-card);
        }

        .faq-question {
            font-weight: 700;
            font-size: 1rem;
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
            user-select: none;
            background: #fafcfb;
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: #f0fdf4;
        }

        .faq-answer {
            padding: 0 20px 18px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* CTA */
        .cta-block {
            background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
            border-radius: 16px;
            padding: 44px 32px;
            text-align: center;
            color: #fff;
        }

        .cta-block h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 10px;
        }

        .cta-block p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin: 0 0 20px;
        }

        .btn-cta {
            display: inline-block;
            padding: 12px 28px;
            background: #fff;
            color: var(--brand-700);
            font-weight: 700;
            border-radius: 24px;
            font-size: 0.95rem;
            transition: all var(--transition-smooth);
            border: none;
        }

        .btn-cta:hover {
            background: var(--accent-400);
            color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        /* Footer */
        .site-footer {
            background: #0f1a14;
            color: #cbd5e1;
            padding: 44px 0 24px;
            font-size: 0.9rem;
            line-height: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-bottom: 28px;
        }

        .footer-grid h4 {
            color: #fff;
            font-weight: 700;
            margin: 0 0 10px;
            font-size: 1rem;
        }

        .footer-grid a {
            display: block;
            color: #94a3b8;
            transition: color var(--transition-fast);
            font-size: 0.88rem;
        }

        .footer-grid a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 18px;
            text-align: center;
            font-size: 0.82rem;
            color: #94a3b8;
            line-height: 2;
        }

        .footer-links-row {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-links-row a {
            color: #94a3b8;
        }

        .footer-links-row a:hover {
            color: #fff;
        }

        .footer-friends {
            margin-top: 6px;
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
            color: #94a3b8;
        }

        .footer-friends span {
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .header-search input {
                width: 130px;
            }
            .header-search input:focus {
                width: 160px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.85rem;
            }
            .page-banner h1 {
                font-size: 2.1rem;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                height: auto;
                flex-wrap: wrap;
                padding: 10px 16px;
                gap: 8px;
            }
            .logo-area {
                flex: 1;
            }
            .nav-links {
                order: 3;
                width: 100%;
                overflow-x: auto;
                gap: 2px;
                padding: 4px 0;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.82rem;
                border-radius: 5px;
            }
            .header-search {
                flex-shrink: 1;
            }
            .header-search input {
                width: 110px;
                font-size: 0.8rem;
            }
            .header-search input:focus {
                width: 140px;
            }
            .btn-nav-cta {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            .page-banner {
                min-height: 260px;
            }
            .page-banner h1 {
                font-size: 1.7rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.9rem;
            }
            .banner-stats-row {
                gap: 14px;
            }
            .banner-stat-item {
                font-size: 0.82rem;
            }
            .banner-stat-item .stat-num {
                font-size: 1.3rem;
            }
            .section {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .match-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .match-info {
                text-align: left;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
            .cta-block {
                padding: 28px 18px;
            }
            .cta-block h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 520px) {
            .header-inner {
                padding: 8px 12px;
                gap: 6px;
            }
            .logo-text {
                font-size: 1rem;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
                border-radius: 6px;
            }
            .nav-links a {
                padding: 5px 8px;
                font-size: 0.76rem;
            }
            .header-search input {
                width: 90px;
                padding: 6px 10px 6px 28px;
            }
            .header-search input:focus {
                width: 110px;
            }
            .btn-nav-cta {
                padding: 5px 10px;
                font-size: 0.75rem;
                border-radius: 16px;
            }
            .page-banner {
                min-height: 220px;
            }
            .page-banner h1 {
                font-size: 1.4rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.82rem;
            }
            .banner-stats-row {
                gap: 8px;
                flex-direction: column;
            }
            .section-container {
                padding: 0 12px;
            }
            .section {
                padding: 28px 0;
            }
            .section-title {
                font-size: 1.15rem;
            }
            .card-body {
                padding: 12px;
            }
            .card-title {
                font-size: 0.95rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 14px;
                text-align: center;
            }
            .footer-links-row {
                flex-direction: column;
                gap: 2px;
            }
            .timeline-list {
                padding-left: 18px;
            }
            .timeline-list li::before {
                left: -25px;
                width: 10px;
                height: 10px;
            }
        }

/* roulang page: category5 */
:root {
            --color-brand-600: #1a365d;
            --color-brand-700: #152d4f;
            --color-brand-800: #102340;
            --color-accent-500: #e2a83a;
            --color-accent-600: #c89122;
            --color-bg: #f7fafc;
            --color-surface: #ffffff;
            --color-text: #1a202c;
            --color-text-weak: #5a6c7d;
            --color-border: #e2e8f0;
            --color-border-light: #edf2f7;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.09), 0 4px 8px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.11), 0 8px 16px rgba(0, 0, 0, 0.06);
            --transition-fast: 0.18s ease;
            --transition-normal: 0.28s ease;
            --transition-slow: 0.4s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            background-color: #f7fafc;
            color: #1a202c;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:focus-visible {
            outline: 2px solid var(--color-accent-500);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            transition: all var(--transition-normal);
        }
        button:focus-visible {
            outline: 2px solid var(--color-accent-500);
            outline-offset: 3px;
            border-radius: 6px;
        }

        input {
            font-family: inherit;
        }
        input:focus-visible {
            outline: 2px solid var(--color-accent-500);
            outline-offset: 2px;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 62px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, #1a365d, #2c5282);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #e2a83a;
            font-weight: 700;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a365d;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #4a5568;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover {
            color: #1a365d;
            background: #f0f4f8;
        }
        .nav-links a.active {
            color: #1a365d;
            font-weight: 600;
            background: #edf2f9;
            box-shadow: inset 0 -2px 0 #e2a83a;
        }
        .header-search {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .header-search input {
            width: 180px;
            padding: 9px 14px;
            border: 1.5px solid #e2e8f0;
            border-radius: 20px;
            font-size: 0.85rem;
            background: #f8fafc;
            transition: all var(--transition-fast);
        }
        .header-search input:focus {
            border-color: #e2a83a;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(226, 168, 58, 0.1);
            width: 210px;
        }
        .btn-nav-cta {
            padding: 9px 20px;
            background: linear-gradient(135deg, #e2a83a, #c89122);
            color: #fff;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: none;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(200, 145, 34, 0.3);
        }
        .btn-nav-cta:hover {
            box-shadow: 0 4px 16px rgba(200, 145, 34, 0.45);
            transform: translateY(-1px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #1a365d;
            padding: 6px;
            border-radius: 6px;
        }
        @media (max-width: 1024px) {
            .header-search {
                display: none;
            }
            .nav-links {
                gap: 0;
            }
            .nav-links a {
                padding: 7px 10px;
                font-size: 0.82rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 62px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 12px 16px;
                border-bottom: 2px solid #e2e8f0;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                z-index: 99;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 11px 16px;
                border-radius: 8px;
                font-size: 0.9rem;
            }
            .header-inner {
                height: 56px;
                padding: 0 16px;
            }
        }
        @media (max-width: 520px) {
            .logo-text {
                font-size: 1rem;
            }
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 0.9rem;
            }
            .btn-nav-cta {
                padding: 7px 14px;
                font-size: 0.78rem;
            }
        }

        /* Banner */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, #102340 0%, #1a365d 40%, #1e4976 100%);
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            padding: 70px 0;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(12, 26, 49, 0.88) 0%, rgba(26, 54, 93, 0.78) 50%, rgba(30, 73, 118, 0.7) 100%);
            z-index: 1;
        }
        .page-banner .banner-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .page-banner .banner-badge {
            display: inline-block;
            background: rgba(226, 168, 58, 0.2);
            border: 1px solid rgba(226, 168, 58, 0.4);
            color: #f0c96d;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 16px;
            backdrop-filter: blur(4px);
        }
        .page-banner h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 12px;
            letter-spacing: -0.02em;
        }
        .page-banner .banner-desc {
            font-size: 1.1rem;
            color: #cbd5e0;
            max-width: 600px;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .page-banner {
                padding: 44px 0;
            }
            .page-banner h1 {
                font-size: 1.8rem;
            }
            .page-banner .banner-desc {
                font-size: 0.95rem;
            }
        }

        /* 板块 */
        .section-spacing {
            padding: 56px 0;
        }
        @media (max-width: 768px) {
            .section-spacing {
                padding: 36px 0;
            }
        }
        .section-label {
            display: inline-block;
            font-size: 0.82rem;
            font-weight: 600;
            color: #e2a83a;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a202c;
            margin: 0 0 8px;
            letter-spacing: -0.01em;
        }
        .section-sub {
            font-size: 0.95rem;
            color: #5a6c7d;
            margin-bottom: 28px;
            max-width: 640px;
            line-height: 1.65;
        }

        /* 数据卡片 */
        .data-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #edf2f7;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }
        .data-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
            border-color: #dbe4ed;
        }
        .data-card .data-card-label {
            font-size: 0.8rem;
            color: #5a6c7d;
            font-weight: 500;
            margin-bottom: 6px;
            letter-spacing: 0.03em;
        }
        .data-card .data-card-value {
            font-size: 2rem;
            font-weight: 700;
            color: #1a365d;
            letter-spacing: -0.02em;
        }
        .data-card .data-card-change {
            font-size: 0.82rem;
            font-weight: 600;
            margin-top: 4px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .data-card .data-card-change.up {
            color: #38a169;
        }
        .data-card .data-card-change.down {
            color: #c53030;
        }
        .data-card-accent {
            border-left: 4px solid #e2a83a;
        }

        /* 表格样式 */
        .data-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid #edf2f7;
            box-shadow: var(--shadow-sm);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            font-size: 0.9rem;
            min-width: 700px;
        }
        .data-table thead th {
            background: #f0f4f8;
            padding: 13px 16px;
            text-align: left;
            font-weight: 600;
            color: #1a365d;
            font-size: 0.82rem;
            letter-spacing: 0.03em;
            white-space: nowrap;
            border-bottom: 2px solid #dbe4ed;
        }
        .data-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid #f1f5f9;
            color: #2d3748;
            white-space: nowrap;
        }
        .data-table tbody tr:hover {
            background: #fafcfd;
        }
        .data-table tbody tr:last-child td {
            border-bottom: none;
        }
        .rank-dot {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.78rem;
            color: #fff;
        }
        .rank-dot.top1 {
            background: #e2a83a;
        }
        .rank-dot.top2 {
            background: #8a9bb5;
        }
        .rank-dot.top3 {
            background: #b87333;
        }
        .rank-dot.normal {
            background: #cbd5e0;
            color: #4a5568;
        }

        /* 图文区块 */
        .insight-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: #fff;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid #edf2f7;
        }
        .insight-block .insight-img {
            width: 100%;
            height: 100%;
            min-height: 300px;
            object-fit: cover;
            border-radius: 0;
        }
        .insight-block .insight-body {
            padding: 32px 36px 32px 8px;
        }
        .insight-block .insight-body h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: #1a202c;
            margin: 0 0 10px;
            letter-spacing: -0.01em;
        }
        .insight-block .insight-body p {
            color: #5a6c7d;
            line-height: 1.75;
            margin: 0 0 16px;
        }
        @media (max-width: 768px) {
            .insight-block {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .insight-block .insight-body {
                padding: 24px;
            }
            .insight-block .insight-img {
                min-height: 200px;
                max-height: 260px;
            }
        }

        /* 统计条 */
        .stat-bar-wrap {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .stat-bar-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .stat-bar-item .stat-bar-label {
            width: 100px;
            flex-shrink: 0;
            font-weight: 600;
            font-size: 0.88rem;
            color: #1a365d;
            text-align: right;
        }
        .stat-bar-item .stat-bar-track {
            flex: 1;
            height: 12px;
            background: #edf2f7;
            border-radius: 6px;
            overflow: hidden;
        }
        .stat-bar-item .stat-bar-fill {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, #e2a83a, #c89122);
            transition: width 0.8s ease;
        }
        .stat-bar-item .stat-bar-value {
            width: 48px;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 0.88rem;
            color: #1a202c;
        }

        /* FAQ */
        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            margin-bottom: 10px;
            border: 1px solid #edf2f7;
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: #dbe4ed;
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 600;
            color: #1a365d;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            user-select: none;
            background: #fafcfd;
            border: none;
            width: 100%;
            text-align: left;
            transition: background var(--transition-fast);
        }
        .faq-question:hover {
            background: #f0f4f8;
        }
        .faq-answer {
            padding: 0 22px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: #5a6c7d;
            line-height: 1.75;
            font-size: 0.93rem;
        }
        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 0 22px 20px;
        }
        .faq-item.open .faq-question {
            background: #f0f4f8;
            color: #1a365d;
        }
        .faq-arrow {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
            flex-shrink: 0;
            color: #8a9bb5;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: #e2a83a;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #1a365d, #152d4f);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(226, 168, 58, 0.08);
            pointer-events: none;
        }
        .cta-section h3 {
            font-size: 1.55rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 10px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            color: #cbd5e0;
            margin: 0 0 22px;
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
        }
        .btn-cta-lg {
            display: inline-block;
            padding: 14px 36px;
            background: #e2a83a;
            color: #1a202c;
            font-weight: 700;
            border-radius: 28px;
            font-size: 1rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 6px 20px rgba(226, 168, 58, 0.35);
            transition: all var(--transition-normal);
            border: none;
            cursor: pointer;
        }
        .btn-cta-lg:hover {
            background: #f0c96d;
            box-shadow: 0 8px 28px rgba(226, 168, 58, 0.5);
            transform: translateY(-2px);
        }

        /* Footer */
        .site-footer {
            background: #0c1a31;
            color: #cbd5e0;
            padding: 48px 0 24px;
            margin-top: 20px;
            border-top: 4px solid #e2a83a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 14px;
            letter-spacing: 0.02em;
        }
        .footer-grid a,
        .footer-grid span {
            display: block;
            color: #94a3b8;
            font-size: 0.88rem;
            padding: 4px 0;
            transition: color var(--transition-fast);
            cursor: pointer;
        }
        .footer-grid a:hover {
            color: #e2a83a;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.82rem;
            color: #7c8fa0;
        }
        .footer-bottom p {
            margin: 4px 0;
        }
        .footer-links-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin-bottom: 10px;
            font-size: 0.84rem;
        }
        .footer-links-row a {
            color: #94a3b8;
            cursor: pointer;
        }
        .footer-links-row a:hover {
            color: #e2a83a;
        }
        .footer-friends {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px 14px;
            font-size: 0.82rem;
            color: #7c8fa0;
            margin-bottom: 6px;
        }
        .footer-friends span {
            cursor: default;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        /* 动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .anim-fade-up {
            animation: fadeInUp 0.6s ease forwards;
        }
        .anim-delay-1 {
            animation-delay: 0.1s;
            opacity: 0;
        }
        .anim-delay-2 {
            animation-delay: 0.2s;
            opacity: 0;
        }
        .anim-delay-3 {
            animation-delay: 0.3s;
            opacity: 0;
        }

@media (max-width:768px) {
                    .insight-block[style*="direction:rtl"] {
                        direction: ltr !important;
                    }
                    .insight-block[style*="direction:rtl"] .insight-body {
                        padding: 24px !important;
                    }
                }
