/* roulang page: index */
:root {
            --primary: #0d6b3d;
            --primary-light: #109954;
            --primary-dark: #085229;
            --accent: #f0a500;
            --accent-light: #f7c948;
            --bg: #f5f6f8;
            --surface: #ffffff;
            --surface-alt: #f0f2f5;
            --text: #1f2937;
            --text-secondary: #4b5563;
            --text-muted: #6b7280;
            --border: #e5e7eb;
            --border-light: #f0f1f3;
            --danger: #dc2626;
            --danger-bg: #fef2f2;
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.08);
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14), 0 6px 16px rgba(0, 0, 0, 0.08);
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', 'Monaco', monospace;
            --transition-fast: 0.15s ease;
            --transition: 0.25s ease;
            --transition-slow: 0.35s ease;
            --max-width: 1260px;
            --nav-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            -webkit-tap-highlight-color: transparent;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            font-size: inherit;
        }

        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-light);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            gap: 20px;
            height: 100%;
        }

        @media (max-width: 768px) {
            .header-inner {
                padding: 0 16px;
                gap: 12px;
            }
        }

        .logo {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 0;
            }
        }

        .nav-links a {
            padding: 8px 14px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.01em;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: rgba(13, 107, 61, 0.05);
        }

        .nav-links a.active {
            color: var(--primary);
            background: rgba(13, 107, 61, 0.08);
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.82rem;
            }
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-box {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--surface-alt);
            border-radius: 24px;
            padding: 8px 16px;
            gap: 8px;
            transition: all var(--transition-fast);
            border: 1.5px solid transparent;
            width: 200px;
        }

        .search-box:focus-within {
            border-color: var(--primary-light);
            background: var(--surface);
            box-shadow: var(--shadow-sm);
            width: 240px;
        }

        .search-box input {
            background: transparent;
            width: 100%;
            font-size: 0.85rem;
            color: var(--text);
        }

        .search-box input::placeholder {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .search-icon {
            color: var(--text-muted);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .search-shortcut {
            font-size: 0.7rem;
            color: var(--text-muted);
            background: var(--border-light);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: var(--font-mono);
            flex-shrink: 0;
            letter-spacing: 0.05em;
        }

        @media (max-width: 768px) {
            .search-box {
                width: 140px;
                padding: 7px 12px;
            }
            .search-box:focus-within {
                width: 160px;
            }
            .search-shortcut {
                display: none;
            }
        }

        @media (max-width: 520px) {
            .search-box {
                width: 110px;
                padding: 6px 10px;
                gap: 4px;
            }
            .search-box:focus-within {
                width: 130px;
            }
            .search-box input {
                font-size: 0.78rem;
            }
        }

        .btn-nav-cta {
            padding: 9px 18px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.85rem;
            background: var(--primary);
            color: #fff;
            white-space: nowrap;
            transition: all var(--transition-fast);
            letter-spacing: 0.02em;
            box-shadow: var(--shadow-xs);
        }

        .btn-nav-cta:hover {
            background: var(--primary-light);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }

        .btn-nav-cta:active {
            transform: scale(0.97);
        }

        @media (max-width: 768px) {
            .btn-nav-cta {
                padding: 7px 14px;
                font-size: 0.78rem;
                border-radius: 20px;
            }
        }

        /* Mobile hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
            cursor: pointer;
            z-index: 1001;
            flex-shrink: 0;
        }

        .hamburger span {
            width: 24px;
            height: 2.5px;
            background: var(--text);
            border-radius: 2px;
            transition: all var(--transition);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px 24px;
                gap: 2px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-lg);
                transform: translateY(-120%);
                opacity: 0;
                transition: all var(--transition);
                z-index: 999;
            }
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
            }
            .nav-links a {
                padding: 12px 16px;
                font-size: 0.95rem;
                border-radius: var(--radius-sm);
                width: 100%;
            }
            .header-right .btn-nav-cta {
                display: none;
            }
        }

        @media (max-width: 520px) {
            .search-box {
                width: 100px;
            }
            .search-box:focus-within {
                width: 115px;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(8, 40, 20, 0.88) 0%, rgba(13, 60, 35, 0.82) 40%, rgba(10, 50, 30, 0.9) 100%), url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 480px;
                align-items: flex-start;
                padding-top: 60px;
            }
        }

        @media (max-width: 520px) {
            .hero {
                min-height: 440px;
                padding-top: 40px;
            }
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 24px;
                text-align: center;
            }
        }

        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .hero-content h1 .highlight {
            color: var(--accent);
            position: relative;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 520px) {
            .hero-content h1 {
                font-size: 1.6rem;
            }
        }

        .hero-content .hero-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 480px;
        }

        @media (max-width: 768px) {
            .hero-content .hero-desc {
                max-width: 100%;
                margin: 0 auto 24px;
                font-size: 0.95rem;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .hero-buttons {
                justify-content: center;
            }
        }

        .btn-primary {
            padding: 13px 28px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 0.95rem;
            background: var(--accent);
            color: #1a1a1a;
            transition: all var(--transition-fast);
            letter-spacing: 0.02em;
            box-shadow: 0 4px 14px rgba(240, 165, 0, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            background: var(--accent-light);
            box-shadow: 0 6px 20px rgba(240, 165, 0, 0.5);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: scale(0.96);
        }

        .btn-outline-light {
            padding: 13px 28px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 0.95rem;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all var(--transition-fast);
            letter-spacing: 0.02em;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .hero-score-cards {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        @media (max-width: 768px) {
            .hero-score-cards {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }
        }

        .live-score-mini {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            transition: all var(--transition-fast);
            min-width: 200px;
        }

        .live-score-mini:hover {
            background: rgba(255, 255, 255, 0.16);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .live-score-mini {
                min-width: auto;
                flex: 1 1 140px;
                justify-content: center;
                padding: 10px 12px;
                gap: 8px;
            }
            .live-score-mini:hover {
                transform: translateY(-2px);
            }
        }

        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            flex-shrink: 0;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
            }
        }

        .live-score-mini .teams {
            font-weight: 600;
            font-size: 0.85rem;
            flex: 1;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .live-score-mini .score-num {
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--accent);
            font-family: var(--font-mono);
            letter-spacing: 0.04em;
        }

        .live-score-mini .minute {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
            flex-shrink: 0;
        }

        /* Section common */
        .section {
            padding: 64px 0;
        }

        @media (max-width: 768px) {
            .section {
                padding: 40px 0;
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.4rem;
            }
        }

        .section-header .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Score Dashboard */
        .score-dashboard {
            background: var(--surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 24px;
            margin-top: -20px;
            position: relative;
            z-index: 3;
            border: 1px solid var(--border-light);
        }

        @media (max-width: 768px) {
            .score-dashboard {
                padding: 16px;
                margin-top: 0;
                border-radius: var(--radius);
            }
        }

        .score-dashboard-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        @media (max-width: 1024px) {
            .score-dashboard-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 520px) {
            .score-dashboard-grid {
                grid-template-columns: 1fr;
            }
        }

        .score-match-card {
            background: var(--surface-alt);
            border-radius: var(--radius);
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: all var(--transition-fast);
            border: 1.5px solid transparent;
            cursor: default;
        }

        .score-match-card:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
            background: #fafbfc;
        }

        .score-match-card .match-status {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--danger);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .score-match-card .match-status .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--danger);
            animation: pulse-dot 1.6s ease-in-out infinite;
        }

        .score-match-card .match-teams {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text);
            letter-spacing: 0.01em;
        }

        .score-match-card .match-score-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .score-match-card .match-score {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-dark);
            font-family: var(--font-mono);
            letter-spacing: 0.06em;
        }

        .score-match-card .match-minute {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .score-match-card .match-league {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        /* Category Entry Cards */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 520px) {
            .category-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }

        .category-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

        .category-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--border);
        }

        .category-card .card-img-wrap {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #e8ecef;
        }

        .category-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .category-card:hover .card-img-wrap img {
            transform: scale(1.06);
        }

        .category-card .card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
        }

        .category-card .card-body {
            padding: 14px 16px;
        }

        .category-card .card-body h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            letter-spacing: 0.01em;
        }

        .category-card .card-body p {
            font-size: 0.78rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .category-card .card-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            background: rgba(13, 107, 61, 0.08);
            color: var(--primary);
            margin-top: 8px;
            letter-spacing: 0.02em;
        }

        @media (max-width: 520px) {
            .category-card .card-body {
                padding: 10px 12px;
            }
            .category-card .card-body h3 {
                font-size: 0.82rem;
            }
            .category-card .card-body p {
                font-size: 0.7rem;
            }
        }

        /* News list */
        .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        @media (max-width: 768px) {
            .news-list {
                grid-template-columns: 1fr;
            }
        }

        .news-item {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-light);
            display: flex;
            gap: 0;
            transition: all var(--transition);
            min-height: 120px;
        }

        .news-item:hover {
            box-shadow: var(--shadow);
            border-color: var(--border);
            transform: translateY(-2px);
        }

        .news-item .news-img {
            width: 160px;
            flex-shrink: 0;
            overflow: hidden;
            background: #e8ecef;
        }

        .news-item .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .news-item:hover .news-img img {
            transform: scale(1.05);
        }

        @media (max-width: 520px) {
            .news-item .news-img {
                width: 100px;
            }
        }

        .news-item .news-body {
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }

        .news-item .news-date {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-bottom: 4px;
            letter-spacing: 0.02em;
        }

        .news-item .news-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text);
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item .news-excerpt {
            font-size: 0.78rem;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .news-item .news-link {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.02em;
            align-self: flex-start;
            transition: color var(--transition-fast);
        }

        .news-item .news-link:hover {
            color: var(--primary-light);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        @media (max-width: 520px) {
            .news-item .news-body {
                padding: 10px 12px;
            }
            .news-item .news-title {
                font-size: 0.8rem;
            }
            .news-item .news-excerpt {
                font-size: 0.7rem;
                -webkit-line-clamp: 1;
            }
        }

        /* Stats panel */
        .stats-panel {
            background: var(--surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }

        .stats-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .stats-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
            min-width: 600px;
        }

        .stats-table thead th {
            background: var(--surface-alt);
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.78rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            border-bottom: 2px solid var(--border);
            white-space: nowrap;
        }

        .stats-table tbody td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text);
            white-space: nowrap;
        }

        .stats-table tbody tr {
            transition: background var(--transition-fast);
        }

        .stats-table tbody tr:hover {
            background: rgba(13, 107, 61, 0.03);
        }

        .stats-table .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.78rem;
            background: #e5e7eb;
            color: var(--text-secondary);
        }

        .stats-table .rank-badge.top3 {
            background: var(--primary);
            color: #fff;
        }

        .stats-table .team-name {
            font-weight: 600;
            color: var(--text);
        }

        .stats-table .pts-highlight {
            font-weight: 700;
            color: var(--primary-dark);
            font-family: var(--font-mono);
        }

        /* Special topics */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        @media (max-width: 1024px) {
            .topics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .topics-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
        }

        .topic-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }

        .topic-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--border);
        }

        .topic-card .topic-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #e8ecef;
        }

        .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 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .topic-card .topic-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
            letter-spacing: 0.01em;
        }

        .topic-card .topic-body p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }

        .topic-card .topic-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 12px;
        }

        .topic-tag {
            font-size: 0.7rem;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 12px;
            background: var(--surface-alt);
            color: var(--text-secondary);
            letter-spacing: 0.02em;
        }

        .topic-card .topic-link {
            margin-top: 14px;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--primary);
            letter-spacing: 0.02em;
            transition: color var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .topic-card .topic-link:hover {
            color: var(--primary-light);
        }

        /* FAQ */
        .faq-list {
            max-width: 760px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-xs);
        }

        .faq-item:hover {
            border-color: var(--border);
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 16px 20px;
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            user-select: none;
            letter-spacing: 0.01em;
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--surface-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            transition: all var(--transition-fast);
            color: var(--text-muted);
        }

        .faq-item.open .faq-icon {
            background: var(--primary);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px 16px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.12;
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 56px 24px;
        }

        .cta-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 1.4rem;
            }
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin-bottom: 24px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-section .btn-cta-large {
            padding: 14px 36px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            background: #fff;
            color: var(--primary-dark);
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-section .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
            background: #fefefe;
        }

        /* Footer */
        .site-footer {
            background: #111827;
            color: #d1d5db;
            padding: 48px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .footer-brand .footer-logo {
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .footer-brand p {
            font-size: 0.8rem;
            color: #9ca3af;
            line-height: 1.6;
        }

        .footer-col h4 {
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-col ul li a {
            font-size: 0.8rem;
            color: #9ca3af;
            transition: color var(--transition-fast);
            letter-spacing: 0.01em;
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #1f2937;
            padding-top: 20px;
            text-align: center;
            font-size: 0.75rem;
            color: #6b7280;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: center;
        }

        .footer-bottom .footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-bottom .footer-links a {
            color: #6b7280;
            font-size: 0.75rem;
            transition: color var(--transition-fast);
        }

        .footer-bottom .footer-links a:hover {
            color: #d1d5db;
        }

        .footer-bottom .beian-info {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            color: #6b7280;
            font-size: 0.7rem;
        }

        @media (max-width: 520px) {
            .footer-bottom .footer-links {
                gap: 10px;
            }
            .footer-bottom .beian-info {
                gap: 8px;
                flex-direction: column;
                align-items: center;
            }
        }

        /* Utility */
        .text-accent {
            color: var(--accent);
        }
        .text-primary {
            color: var(--primary);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

/* roulang page: category1 */
:root {
            --primary: #1a7a4c;
            --primary-dark: #0f5c37;
            --primary-light: #2ecc71;
            --accent: #e74c3c;
            --accent-hover: #c0392b;
            --bg-body: #f5f6f8;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --bg-dark: #0d1f14;
            --bg-dark-secondary: #132a1c;
            --text-primary: #1a1a2e;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --text-light: #a0aec0;
            --text-on-dark: #e2e8f0;
            --border-color: #e2e8f0;
            --border-light: #edf2f7;
            --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 6px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 14px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.13), 0 6px 20px rgba(0, 0, 0, 0.08);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.4s ease;
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1260px;
            --nav-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text-primary);
            background: var(--bg-body);
            overflow-x: hidden;
            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;
            border: none;
            outline: none;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: all var(--transition-base);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            gap: 28px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            flex-shrink: 0;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: rgba(26, 122, 76, 0.06);
        }

        .nav-links a.active {
            color: #fff;
            background: var(--primary);
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(26, 122, 76, 0.3);
        }

        .nav-links a.active:hover {
            background: var(--primary-dark);
            color: #fff;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg-body);
            border: 1.5px solid var(--border-color);
            border-radius: 28px;
            padding: 8px 16px;
            gap: 8px;
            transition: all var(--transition-fast);
            flex-shrink: 0;
            min-width: 200px;
        }

        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(26, 122, 76, 0.08);
            background: #fff;
        }

        .search-box i {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .search-box input {
            border: none;
            background: transparent;
            font-size: 0.9rem;
            color: var(--text-primary);
            width: 100%;
            min-width: 120px;
        }

        .search-box input::placeholder {
            color: var(--text-light);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            padding: 6px;
            border-radius: var(--radius-sm);
        }

        @media (max-width: 1024px) {
            .search-box {
                min-width: 150px;
            }
            .nav-links a {
                padding: 7px 11px;
                font-size: 0.82rem;
            }
            .logo-text {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                align-items: stretch;
                padding: 16px 20px;
                gap: 4px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: var(--shadow-lg);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                transition: all var(--transition-base);
                z-index: 999;
            }
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            .nav-links a {
                border-radius: var(--radius-sm);
                padding: 12px 16px;
                font-size: 0.95rem;
                justify-content: center;
            }
            .search-box {
                min-width: auto;
                flex: 1;
                max-width: 200px;
            }
            .header-inner {
                gap: 12px;
            }
        }

        @media (max-width: 520px) {
            .search-box {
                display: none;
            }
            .logo-text {
                font-size: 0.95rem;
            }
            .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .header-inner {
                padding: 0 14px;
                gap: 8px;
            }
        }

        /* ========== PAGE BANNER ========== */
        .page-banner {
            position: relative;
            background: linear-gradient(135deg, rgba(13, 31, 20, 0.88), rgba(15, 44, 26, 0.82)), url('assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 80px 0 70px;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, rgba(245, 246, 248, 0.15), transparent);
            pointer-events: none;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .banner-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 28px;
            padding: 6px 18px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            margin-bottom: 20px;
            backdrop-filter: blur(8px);
        }

        .banner-content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .banner-content p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto 28px;
        }

        .banner-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .banner-stat-item {
            text-align: center;
        }
        .banner-stat-item .stat-num {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-light);
        }
        .banner-stat-item .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 2px;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 50px 0 45px;
            }
            .banner-content h1 {
                font-size: 2rem;
            }
            .banner-content p {
                font-size: 1rem;
            }
            .banner-stats {
                gap: 24px;
            }
            .banner-stat-item .stat-num {
                font-size: 1.5rem;
            }
        }

        /* ========== SECTION STYLES ========== */
        .section {
            padding: 64px 0;
        }
        .section-sm {
            padding: 40px 0;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            line-height: 1.6;
        }
        .section-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .section-header .section-title {
            display: inline-block;
            position: relative;
        }
        .section-header .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            margin: 10px auto 0;
        }

        /* ========== LIVE SCORE CARDS ========== */
        .score-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 18px;
        }
        .score-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }
        .score-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }
        .score-card .match-status {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.03em;
        }
        .status-live {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-dot 1.4s infinite;
        }
        .status-finished {
            background: #f0fdf4;
            color: #16a34a;
        }
        .status-upcoming {
            background: #f8fafc;
            color: #64748b;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.4;
            }
        }
        .score-card .team {
            flex: 1;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
            line-height: 1.3;
        }
        .score-card .team-logo-placeholder {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg-body);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--text-muted);
            flex-shrink: 0;
            border: 2px solid var(--border-light);
        }
        .score-card .score-display {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            min-width: 60px;
            text-align: center;
            flex-shrink: 0;
        }
        .score-card .score-display.vs {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .score-card .match-info-row {
            font-size: 0.78rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 4px;
        }
        .score-card-inner {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        @media (max-width: 520px) {
            .score-card-grid {
                grid-template-columns: 1fr;
            }
            .score-card {
                padding: 16px 14px;
                gap: 10px;
            }
            .score-card .score-display {
                font-size: 1.3rem;
                min-width: 44px;
            }
            .score-card .team {
                font-size: 0.85rem;
            }
            .score-card .team-logo-placeholder {
                width: 34px;
                height: 34px;
                font-size: 0.7rem;
            }
        }

        /* ========== TABLE STYLES ========== */
        .standings-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            background: #fff;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 700px;
        }
        .standings-table thead {
            background: var(--bg-dark);
            color: #fff;
        }
        .standings-table thead th {
            padding: 14px 12px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            text-align: center;
            white-space: nowrap;
        }
        .standings-table thead th:first-child {
            text-align: left;
            padding-left: 20px;
        }
        .standings-table tbody td {
            padding: 13px 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }
        .standings-table tbody td:first-child {
            text-align: left;
            padding-left: 20px;
            font-weight: 600;
        }
        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }
        .standings-table tbody tr:hover {
            background: #f8fafb;
        }
        .standings-table .pos-highlight {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.8rem;
        }
        .pos-1 {
            background: #fef3c7;
            color: #b45309;
        }
        .pos-2 {
            background: #e5e7eb;
            color: #4b5563;
        }
        .pos-3 {
            background: #fed7aa;
            color: #9a3412;
        }
        .pos-4 {
            background: #f0fdf4;
            color: #166534;
        }
        .form-dot {
            display: inline-block;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            margin: 0 1.5px;
        }
        .form-w {
            background: #22c55e;
        }
        .form-d {
            background: #f59e0b;
        }
        .form-l {
            background: #ef4444;
        }

        /* ========== NEWS CARDS ========== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .news-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
        }
        .news-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: transparent;
        }
        .news-card-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .news-card-img .news-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 14px;
            letter-spacing: 0.02em;
        }
        .news-card-body {
            padding: 18px 16px;
        }
        .news-card-body h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
            color: var(--text-primary);
        }
        .news-card-body p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .news-card-body .news-meta {
            font-size: 0.75rem;
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .news-card-body .read-more {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.82rem;
        }
        .news-card-body .read-more:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        @media (max-width: 520px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            .news-card-img {
                height: 150px;
            }
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 600;
            font-size: 0.98rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
            user-select: none;
            gap: 12px;
        }
        .faq-question i {
            transition: transform var(--transition-base);
            color: var(--primary);
            flex-shrink: 0;
            font-size: 0.85rem;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-base);
            padding: 0 22px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            background: #fafbfc;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-secondary));
            padding: 60px 0;
            text-align: center;
            color: #fff;
            border-radius: var(--radius-lg);
            margin: 40px 24px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: rgba(46, 204, 113, 0.12);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
        }
        .btn-cta {
            display: inline-block;
            padding: 13px 32px;
            background: var(--primary-light);
            color: #000;
            font-weight: 700;
            border-radius: 28px;
            font-size: 0.95rem;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
            letter-spacing: 0.01em;
        }
        .btn-cta:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(46, 204, 113, 0.4);
            color: #000;
        }

        @media (max-width: 768px) {
            .cta-section {
                margin: 30px 16px 0;
                padding: 44px 20px;
                border-radius: var(--radius-md);
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-dark);
            color: var(--text-on-dark);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 36px;
        }
        .footer-logo {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff;
        }
        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.84rem;
            color: var(--text-light);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--primary-light);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 14px;
        }
        .footer-links a,
        .footer-links span {
            color: var(--text-light);
            font-size: 0.8rem;
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .footer-links a:hover {
            color: var(--primary-light);
        }
        .beian-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 8px;
            font-size: 0.78rem;
            color: var(--text-light);
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-brand {
                grid-column: 1/-1;
            }
            .site-footer {
                padding: 36px 0 24px;
                margin-top: 40px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #0f766e;
            --primary-dark: #0d5e56;
            --primary-light: #14b8a6;
            --primary-bg: #f0fdfa;
            --accent: #f59e0b;
            --accent-light: #fef3c7;
            --bg: #f8fafc;
            --surface: #ffffff;
            --text: #1e293b;
            --text-secondary: #64748b;
            --text-light: #94a3b8;
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --radius-sm: 8px;
            --radius: 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: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09), 0 4px 10px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.11), 0 6px 16px rgba(0, 0, 0, 0.06);
            --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::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: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: var(--bg);
            min-height: 100vh;
            letter-spacing: -0.01em;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        /* Header & Navigation */
        .site-header {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 20px;
        }

        .logo-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary);
            white-space: nowrap;
            letter-spacing: -0.02em;
            transition: color var(--transition);
        }

        .logo-brand:hover {
            color: var(--primary-dark);
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }

        .nav-links a {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: -0.005em;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-bg);
        }

        .nav-links a.active {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
            font-weight: 600;
        }

        .nav-links a.active:hover {
            background: var(--primary-dark);
            color: #fff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .search-trigger {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 0.95rem;
            transition: all var(--transition);
            border: 1px solid var(--border);
        }

        .search-trigger:hover {
            background: var(--surface);
            color: var(--primary);
            border-color: var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        .mobile-menu-btn {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: var(--bg);
            align-items: center;
            justify-content: center;
            color: var(--text);
            font-size: 1.2rem;
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .mobile-menu-btn:hover {
            background: var(--surface);
            color: var(--primary);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 7px 11px;
                font-size: 0.82rem;
                border-radius: 16px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 16px;
                gap: 6px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
                transform: translateY(-120%);
                opacity: 0;
                transition: all var(--transition-slow);
                z-index: 999;
                pointer-events: none;
            }
            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 12px 16px;
                font-size: 0.95rem;
                border-radius: var(--radius);
            }
            .header-actions .search-trigger {
                display: none;
            }
        }

        /* Page Banner */
        .page-banner {
            background: linear-gradient(170deg, #0f766e 0%, #0d5e56 30%, #115e59 60%, #0a4a44 100%);
            position: relative;
            overflow: hidden;
            padding: 60px 0 50px;
            color: #fff;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.15;
            pointer-events: none;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to top, var(--bg), transparent);
            pointer-events: none;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .banner-text {
            flex: 1;
        }

        .banner-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
            backdrop-filter: blur(4px);
        }

        .banner-text h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.03em;
        }

        .banner-text .subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 500px;
            line-height: 1.6;
        }

        .banner-stats {
            display: flex;
            gap: 20px;
            flex-shrink: 0;
        }

        .banner-stat-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            text-align: center;
            min-width: 100px;
        }

        .banner-stat-card .stat-num {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .banner-stat-card .stat-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 6px;
            letter-spacing: 0.03em;
        }

        @media (max-width: 768px) {
            .page-banner {
                padding: 40px 0 36px;
            }
            .banner-content {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }
            .banner-text h1 {
                font-size: 1.8rem;
            }
            .banner-text .subtitle {
                font-size: 0.95rem;
                max-width: 100%;
            }
            .banner-stats {
                justify-content: center;
                flex-wrap: wrap;
                gap: 12px;
            }
            .banner-stat-card {
                padding: 14px 18px;
                min-width: 80px;
            }
            .banner-stat-card .stat-num {
                font-size: 1.5rem;
            }
        }

        /* Section Styles */
        .section {
            padding: 56px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 36px;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }

        .section-header .section-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .section {
                padding: 36px 0;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
            .section-header {
                margin-bottom: 24px;
            }
        }

        /* Live Match Cards */
        .live-matches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 16px;
        }

        .match-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 18px 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .match-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }

        .match-card .live-dot {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            animation: pulse-dot 1.6s infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
            }
        }

        .match-team {
            text-align: center;
            flex: 1;
            min-width: 0;
        }

        .match-team .team-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .match-team .team-badge {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg);
            margin: 0 auto 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary);
            border: 2px solid var(--border);
        }

        .match-score {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.02em;
            min-width: 60px;
            text-align: center;
            flex-shrink: 0;
        }

        .match-info {
            font-size: 0.75rem;
            color: var(--text-light);
            text-align: center;
            flex-shrink: 0;
        }

        @media (max-width: 520px) {
            .live-matches-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .match-card {
                padding: 14px 12px;
                gap: 6px;
            }
            .match-score {
                font-size: 1.3rem;
                min-width: 44px;
            }
            .match-team .team-name {
                font-size: 0.82rem;
            }
            .match-team .team-badge {
                width: 36px;
                height: 36px;
                font-size: 0.85rem;
            }
        }

        /* Table Styles */
        .table-wrapper {
            background: var(--surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }

        .table-wrapper table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .table-wrapper thead th {
            background: #f8fafc;
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.8rem;
            letter-spacing: 0.03em;
            border-bottom: 2px solid var(--border);
            white-space: nowrap;
        }

        .table-wrapper tbody td {
            padding: 13px 12px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }

        .table-wrapper tbody tr {
            transition: background var(--transition);
        }

        .table-wrapper tbody tr:hover {
            background: #f8fafc;
        }

        .table-wrapper tbody tr:last-child td {
            border-bottom: none;
        }

        .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .team-cell .mini-badge {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
            border: 1px solid var(--border);
        }

        .rank-num {
            font-weight: 700;
            width: 28px;
            text-align: center;
            display: inline-block;
        }

        .rank-num.top4 {
            color: var(--primary);
        }

        .points-highlight {
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
        }

        .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        @media (max-width: 768px) {
            .table-wrapper table {
                font-size: 0.78rem;
            }
            .table-wrapper thead th,
            .table-wrapper tbody td {
                padding: 10px 8px;
            }
            .team-cell .mini-badge {
                width: 24px;
                height: 24px;
                font-size: 0.65rem;
            }
        }

        /* Scorer List */
        .scorer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 14px;
        }

        .scorer-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 16px 18px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition);
        }

        .scorer-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .scorer-rank {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--accent-light);
            color: #b45309;
            font-weight: 700;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .scorer-rank.gold {
            background: #fef3c7;
            color: #92400e;
        }

        .scorer-info {
            flex: 1;
            min-width: 0;
        }

        .scorer-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
        }

        .scorer-team {
            font-size: 0.78rem;
            color: var(--text-secondary);
        }

        .scorer-goals {
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        @media (max-width: 520px) {
            .scorer-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .scorer-card {
                padding: 12px 14px;
                gap: 10px;
            }
        }

        /* Schedule Cards */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 14px;
        }

        .schedule-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 16px 18px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .schedule-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
        }

        .schedule-date {
            font-size: 0.78rem;
            color: var(--text-light);
            text-align: center;
            flex-shrink: 0;
            min-width: 50px;
        }

        .schedule-date .s-day {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            display: block;
        }

        .schedule-matchup {
            flex: 1;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text);
            min-width: 0;
        }

        .schedule-vs {
            color: var(--text-light);
            font-weight: 400;
        }

        .schedule-time {
            font-size: 0.78rem;
            color: var(--primary);
            font-weight: 600;
            flex-shrink: 0;
        }

        @media (max-width: 520px) {
            .schedule-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        /* Team Data Cards */
        .team-data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .team-data-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }

        .team-data-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .team-data-img {
            height: 140px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .team-data-img .team-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            display: flex;
            align-items: flex-end;
            padding: 16px;
        }

        .team-data-img .team-overlay h4 {
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: -0.01em;
        }

        .team-data-body {
            padding: 16px;
        }

        .team-data-stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .team-data-stats span {
            background: var(--bg);
            padding: 5px 10px;
            border-radius: 14px;
            white-space: nowrap;
        }

        /* FAQ */
        .faq-list {
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .faq-item:hover {
            border-color: #cbd5e1;
        }

        .faq-question {
            padding: 16px 20px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            color: var(--text);
            user-select: none;
        }

        .faq-question .faq-icon {
            transition: transform var(--transition);
            color: var(--text-light);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow), padding var(--transition-slow);
            padding: 0 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(150deg, #0f766e 0%, #0d5e56 50%, #0a4a44 100%);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.12;
            pointer-events: none;
        }

        .cta-section>* {
            position: relative;
            z-index: 1;
        }

        .cta-section h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-size: 0.95rem;
            max-width: 450px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            display: inline-block;
            background: #fff;
            color: var(--primary);
            padding: 13px 28px;
            border-radius: 24px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all var(--transition);
            letter-spacing: -0.005em;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            background: #f0fdfa;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 32px 20px;
                border-radius: var(--radius-lg);
            }
            .cta-section h3 {
                font-size: 1.3rem;
            }
        }

        /* Footer */
        .site-footer {
            background: #1e293b;
            color: #cbd5e1;
            padding: 48px 0 28px;
            margin-top: 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-logo {
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.6;
        }

        .footer-col h4 {
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 12px;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 7px;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            color: #94a3b8;
            font-size: 0.82rem;
            transition: color var(--transition);
            cursor: default;
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: #64748b;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 10px;
        }

        .footer-links a,
        .footer-links span {
            color: #94a3b8;
            font-size: 0.8rem;
            cursor: default;
            transition: color var(--transition);
        }

        .footer-links a:hover {
            color: #fff;
        }

        .beian-info {
            margin-top: 8px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            font-size: 0.75rem;
            color: #64748b;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-brand {
                grid-column: 1/-1;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-links {
                gap: 10px;
            }
        }

        /* Utility */
        .text-accent {
            color: var(--accent);
        }
        .text-primary {
            color: var(--primary);
        }
        .fw-700 {
            font-weight: 700;
        }

/* roulang page: category2 */
:root {
            --primary: #1a5632;
            --primary-hover: #1e6b3c;
            --primary-light: #e8f5e9;
            --primary-dark: #0f3b20;
            --accent: #d4a853;
            --accent-light: #f9f0d9;
            --accent-dark: #b8922e;
            --bg: #fafbf9;
            --bg-white: #ffffff;
            --bg-soft: #f4f6f3;
            --bg-dark: #1a1f1b;
            --text: #1a1f1b;
            --text-secondary: #4a544c;
            --text-weak: #7a857c;
            --text-on-dark: #e8ece8;
            --border: #dee5df;
            --border-light: #edf1ee;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 9999px;
            --transition: 0.2s ease;
            --transition-slow: 0.35s ease;
            --font-sans: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --nav-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.65;
            color: var(--text);
            background-color: var(--bg);
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all var(--transition);
        }
        button:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        input {
            font-family: inherit;
            outline: none;
            border: 1px solid var(--border);
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
        }
        ul {
            list-style: none;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border-light);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition);
        }
        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            gap: 20px;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
        }
        .logo-text {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text);
            white-space: nowrap;
            letter-spacing: -0.01em;
        }
        .logo-text span {
            color: var(--primary);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            transition: all var(--transition);
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }
        .nav-links a.active {
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 600;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .header-search {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-soft);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            padding: 8px 16px;
            font-size: 0.85rem;
            color: var(--text-weak);
            transition: all var(--transition);
            cursor: text;
        }
        .header-search:hover {
            border-color: var(--primary);
            background: var(--bg-white);
        }
        .header-search input {
            border: none;
            background: transparent;
            width: 130px;
            font-size: 0.85rem;
            color: var(--text);
        }
        .header-search input::placeholder {
            color: var(--text-weak);
        }
        .header-search .search-icon {
            flex-shrink: 0;
            font-size: 1rem;
            color: var(--text-weak);
        }
        .btn-primary-sm {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all var(--transition);
        }
        .btn-primary-sm:hover {
            background: var(--primary-hover);
            color: #fff;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            padding: 6px;
            cursor: pointer;
        }

        /* Page Banner */
        .page-banner {
            position: relative;
            background: linear-gradient(170deg, #0f2a18 0%, #1a3d25 30%, #1a5632 60%, #0f3b20 100%);
            background-image: url('assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 60px 0 56px;
            color: #fff;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 42, 24, 0.75) 0%, rgba(26, 56, 50, 0.82) 100%);
            z-index: 1;
        }
        .page-banner .container {
            position: relative;
            z-index: 2;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.85);
        }
        .breadcrumb a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .breadcrumb .sep {
            opacity: 0.5;
        }
        .page-banner h1 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
            line-height: 1.25;
        }
        .page-banner .banner-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            line-height: 1.6;
        }
        .banner-badge-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 18px;
        }
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 500;
            color: #fff;
            backdrop-filter: blur(4px);
        }

        /* Section */
        .section {
            padding: 56px 0;
        }
        .section-header {
            margin-bottom: 32px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--primary);
            background: var(--primary-light);
            padding: 5px 12px;
            border-radius: var(--radius-full);
            margin-bottom: 10px;
        }
        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.01em;
            line-height: 1.3;
            margin-bottom: 6px;
        }
        .section-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.6;
        }

        /* Score Cards */
        .score-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 18px;
        }
        .score-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 20px;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .score-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #c5d0c8;
            transform: translateY(-2px);
        }
        .score-card .match-status {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            margin-bottom: 10px;
            letter-spacing: 0.03em;
        }
        .status-live {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-dot 1.6s ease-in-out infinite;
        }
        .status-finished {
            background: #f0fdf4;
            color: #15803d;
        }
        .status-upcoming {
            background: #f8fafc;
            color: #64748b;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        .score-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-weight: 700;
            font-size: 1rem;
        }
        .score-card .team-name {
            flex: 1;
            text-align: center;
            color: var(--text);
        }
        .score-card .score-display {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
            min-width: 50px;
            text-align: center;
        }
        .score-card .match-meta {
            font-size: 0.78rem;
            color: var(--text-weak);
            margin-top: 10px;
            text-align: center;
        }

        /* Table */
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            background: var(--bg-white);
            box-shadow: var(--shadow-sm);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 640px;
        }
        .data-table thead th {
            background: var(--bg-soft);
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 14px 12px;
            text-align: left;
            border-bottom: 2px solid var(--border);
            white-space: nowrap;
        }
        .data-table tbody td {
            padding: 12px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text);
            white-space: nowrap;
        }
        .data-table tbody tr:hover {
            background: #f9fbf8;
        }
        .data-table .rank-col {
            font-weight: 700;
            text-align: center;
            width: 50px;
        }
        .data-table .team-col {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .dot-red {
            background: #c41e3a;
        }
        .dot-blue {
            background: #004d98;
        }
        .dot-white-red {
            background: #c8102e;
        }
        .dot-green {
            background: #1a5632;
        }
        .dot-orange {
            background: #e87d1e;
        }
        .rank-zone {
            display: inline-block;
            width: 26px;
            height: 26px;
            line-height: 26px;
            text-align: center;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
        }
        .zone-cl {
            background: #e8f5e9;
            color: #15803d;
        }
        .zone-el {
            background: #eff6ff;
            color: #2563eb;
        }
        .zone-ec {
            background: #fffbe6;
            color: #b8922e;
        }
        .zone-rel {
            background: #fef2f2;
            color: #dc2626;
        }

        /* Team Cards */
        .team-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .team-card {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .team-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .team-card-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .team-card-img .overlay-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            backdrop-filter: blur(4px);
        }
        .team-card-body {
            padding: 16px;
        }
        .team-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
        }
        .team-card-body .team-stats {
            display: flex;
            gap: 14px;
            font-size: 0.78rem;
            color: var(--text-weak);
            margin-top: 8px;
            flex-wrap: wrap;
        }
        .team-card-body .team-stats span {
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }
        .team-card-body .team-stats strong {
            color: var(--text);
        }

        /* News */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 18px;
            background: var(--bg-white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .news-item:hover {
            box-shadow: var(--shadow-md);
            border-color: #c5d0c8;
        }
        .news-thumb {
            width: 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-info .news-date {
            font-size: 0.75rem;
            color: var(--text-weak);
            margin-bottom: 4px;
        }
        .news-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .news-info p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-info .read-more {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            margin-top: 6px;
            transition: color var(--transition);
        }
        .news-info .read-more:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
        }
        .faq-item {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: #c5d0c8;
            box-shadow: var(--shadow-sm);
        }
        .faq-q {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 16px 18px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            user-select: none;
            transition: background var(--transition);
        }
        .faq-q:hover {
            background: #fafcfa;
        }
        .faq-q .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            transition: all var(--transition);
        }
        .faq-a {
            padding: 0 18px 16px 52px;
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }
        .faq-item.open .faq-a {
            display: block;
        }
        .faq-item.open .faq-icon {
            background: var(--primary);
            color: #fff;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(160deg, #1a3d25, #1a5632, #0f3b20);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: #fff;
            margin: 0 24px;
        }
        .cta-section h2 {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }
        .cta-section p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
        }
        .btn-cta-lg {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #1a1f1b;
            padding: 14px 32px;
            border-radius: var(--radius-full);
            font-size: 1rem;
            font-weight: 700;
            transition: all var(--transition);
            box-shadow: 0 4px 20px rgba(212, 168, 83, 0.35);
        }
        .btn-cta-lg:hover {
            background: #e0b95e;
            color: #1a1f1b;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
        }

        /* Footer */
        .site-footer {
            background: #1a1f1b;
            color: #c5cdc7;
            padding: 48px 0 24px;
            font-size: 0.88rem;
            margin-top: 56px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
            gap: 36px;
            margin-bottom: 32px;
        }
        .footer-logo {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-brand p {
            font-size: 0.82rem;
            color: #9aa59d;
            line-height: 1.6;
        }
        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #e8ece8;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.82rem;
            color: #9aa59d;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #e8ece8;
        }
        .footer-bottom {
            border-top: 1px solid #2a302c;
            padding-top: 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 10px;
        }
        .footer-links a,
        .footer-links span {
            font-size: 0.78rem;
            color: #7a857c;
            transition: color var(--transition);
        }
        .footer-links a:hover {
            color: #c5cdc7;
        }
        .footer-bottom p {
            font-size: 0.78rem;
            color: #6b756d;
            margin-bottom: 4px;
        }
        .beian-info {
            font-size: 0.75rem;
            color: #5d6660;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .page-banner h1 {
                font-size: 1.9rem;
            }
            .score-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
            .team-card-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            .header-search input {
                width: 90px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 12px 20px;
                gap: 2px;
                border-bottom: 2px solid var(--border);
                box-shadow: var(--shadow-lg);
                z-index: 99;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 10px 16px;
                border-radius: var(--radius-md);
                font-size: 0.9rem;
                width: 100%;
            }
            .mobile-toggle {
                display: block;
            }
            .header-search {
                display: none;
            }
            .btn-primary-sm {
                font-size: 0.8rem;
                padding: 8px 14px;
            }
            .page-banner {
                padding: 40px 0 36px;
            }
            .page-banner h1 {
                font-size: 1.55rem;
            }
            .page-banner .banner-subtitle {
                font-size: 0.9rem;
            }
            .section {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .score-grid {
                grid-template-columns: 1fr;
            }
            .team-card-grid {
                grid-template-columns: 1fr 1fr;
            }
            .news-item {
                flex-direction: column;
            }
            .news-thumb {
                width: 100%;
                height: 140px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .cta-section {
                padding: 32px 20px;
                margin: 0 12px;
            }
            .cta-section h2 {
                font-size: 1.35rem;
            }
            .data-table {
                font-size: 0.78rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 14px;
            }
            .header-inner {
                padding: 0 14px;
                gap: 10px;
            }
            .logo-text {
                font-size: 1rem;
            }
            .logo-icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            .btn-primary-sm {
                padding: 7px 12px;
                font-size: 0.75rem;
            }
            .page-banner h1 {
                font-size: 1.3rem;
            }
            .team-card-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .banner-badge-row {
                gap: 6px;
            }
            .banner-badge {
                font-size: 0.7rem;
                padding: 4px 10px;
            }
            .footer-links {
                gap: 8px;
            }
        }

/* roulang page: category4 */
:root {
            --color-primary: #0f172a;
            --color-primary-light: #1e293b;
            --color-accent: #dc2626;
            --color-accent-hover: #b91c1c;
            --color-accent-soft: #fef2f2;
            --color-gold: #eab308;
            --color-gold-soft: #fefce8;
            --color-green: #10b981;
            --color-green-soft: #ecfdf5;
            --color-bg: #f8fafc;
            --color-surface: #ffffff;
            --color-text: #1e293b;
            --color-text-secondary: #64748b;
            --color-text-weak: #94a3b8;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
            --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 12px 36px rgba(15, 23, 42, 0.10);
            --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.13);
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 80px;
            --max-width: 1240px;
            --nav-height: 68px;
            --font-sans: 'Inter', 'PingFang SC', 'Noto Sans SC', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--color-text);
            background: var(--color-bg);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: inherit;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            font-size: inherit;
            transition: all var(--transition-fast);
        }

        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--color-border-light);
            height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: box-shadow var(--transition-smooth);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--space-lg);
            gap: var(--space-lg);
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--color-accent);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--color-primary);
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .logo-text span {
            color: var(--color-accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            flex-wrap: nowrap;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 24px;
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--color-text-secondary);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            background: var(--color-border-light);
        }

        .nav-links a.active {
            color: #ffffff;
            background: var(--color-accent);
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.28);
        }

        .nav-links a.active:hover {
            background: var(--color-accent-hover);
            color: #ffffff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            flex-shrink: 0;
        }

        .search-trigger {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--color-border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-secondary);
            font-size: 1rem;
            transition: all var(--transition-fast);
            cursor: pointer;
            border: none;
        }

        .search-trigger:hover {
            background: var(--color-border);
            color: var(--color-primary);
        }

        .btn-nav-cta {
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            background: var(--color-primary);
            color: #fff;
            white-space: nowrap;
            transition: all var(--transition-fast);
            cursor: pointer;
            border: none;
        }

        .btn-nav-cta:hover {
            background: var(--color-primary-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        .burger-btn {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: transparent;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            border: 1.5px solid var(--color-border);
            z-index: 1001;
            padding: 0;
        }

        .burger-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--color-text);
            border-radius: 2px;
            transition: all var(--transition-fast);
            transform-origin: center;
        }

        .burger-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .burger-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .burger-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile nav overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.6);
            z-index: 998;
            opacity: 0;
            transition: opacity var(--transition-smooth);
            pointer-events: none;
        }

        .mobile-nav-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            right: 0;
            width: 300px;
            max-width: 85vw;
            bottom: 0;
            background: #fff;
            z-index: 999;
            padding: var(--space-lg);
            flex-direction: column;
            gap: var(--space-sm);
            box-shadow: var(--shadow-xl);
            transform: translateX(100%);
            transition: transform var(--transition-smooth);
            overflow-y: auto;
        }

        .mobile-nav-panel.active {
            transform: translateX(0);
        }

        .mobile-nav-panel a {
            display: block;
            padding: 12px 16px;
            border-radius: 12px;
            font-weight: 500;
            font-size: 1rem;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
        }

        .mobile-nav-panel a:hover {
            background: var(--color-border-light);
            color: var(--color-primary);
        }

        .mobile-nav-panel a.active {
            background: var(--color-accent);
            color: #fff;
            font-weight: 600;
        }

        /* Hero / Banner */
        .page-hero {
            position: relative;
            padding: var(--space-3xl) 0 var(--space-2xl);
            background: var(--color-primary);
            background-image: url('assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center 40%;
            background-repeat: no-repeat;
            color: #ffffff;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.88) 60%, rgba(15, 23, 42, 0.94) 100%);
            z-index: 1;
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.22);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: var(--space-lg);
            letter-spacing: 0.02em;
        }

        .hero-badge .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
            }
        }

        .page-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: var(--space-md);
            max-width: 700px;
        }

        .page-hero .hero-desc {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            max-width: 580px;
            margin-bottom: var(--space-lg);
        }

        .hero-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-lg);
            align-items: center;
        }

        .hero-stat-item {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero-stat-item strong {
            font-size: 1.3rem;
            color: #fff;
            font-weight: 700;
        }

        /* Section shared */
        .section {
            padding: var(--space-3xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        .section-header h2 {
            font-size: 1.85rem;
            font-weight: 700;
            color: var(--color-primary);
            letter-spacing: -0.01em;
            margin-bottom: var(--space-sm);
        }

        .section-header p {
            font-size: 0.98rem;
            color: var(--color-text-secondary);
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--color-accent);
            background: var(--color-accent-soft);
            padding: 4px 12px;
            border-radius: 16px;
            margin-bottom: var(--space-sm);
        }

        /* Live score cards */
        .score-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: var(--space-lg);
        }

        .score-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .score-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }

        .score-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--color-text-weak);
        }

        .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #fef2f2;
            color: #dc2626;
            font-weight: 600;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 12px;
            animation: live-pulse 2s ease-in-out infinite;
        }

        @keyframes live-pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }

        .live-tag .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #dc2626;
        }

        .finished-tag {
            font-size: 0.75rem;
            color: var(--color-text-weak);
            font-weight: 500;
        }

        .score-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
        }

        .score-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: var(--space-xs);
            flex: 1;
            text-align: center;
        }

        .score-team .team-crest {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--color-border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-text-secondary);
        }

        .score-team .team-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text);
        }

        .score-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            flex-shrink: 0;
        }

        .score-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: 0.04em;
            line-height: 1;
        }

        .score-divider {
            font-size: 0.8rem;
            color: var(--color-text-weak);
        }

        .score-card-footer {
            font-size: 0.8rem;
            color: var(--color-text-weak);
            text-align: center;
        }

        /* Table style */
        .table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            background: var(--color-surface);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 0.9rem;
        }

        .data-table thead th {
            background: var(--color-primary);
            color: #fff;
            padding: 14px 12px;
            font-weight: 600;
            font-size: 0.82rem;
            text-align: center;
            white-space: nowrap;
            position: sticky;
            top: 0;
        }

        .data-table thead th:first-child {
            border-radius: var(--radius-lg) 0 0 0;
        }
        .data-table thead th:last-child {
            border-radius: 0 var(--radius-lg) 0 0;
        }

        .data-table tbody td {
            padding: 13px 12px;
            text-align: center;
            border-bottom: 1px solid var(--color-border-light);
            color: var(--color-text);
            font-weight: 500;
            white-space: nowrap;
        }

        .data-table tbody tr {
            transition: background var(--transition-fast);
        }

        .data-table tbody tr:hover {
            background: #f8fafc;
        }

        .data-table tbody tr:last-child td {
            border-bottom: none;
        }

        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.82rem;
        }

        .rank-top {
            background: #fef3c7;
            color: #b45309;
        }
        .rank-good {
            background: #e0f2fe;
            color: #0369a1;
        }
        .rank-mid {
            background: #f1f5f9;
            color: #64748b;
        }
        .rank-low {
            background: #fef2f2;
            color: #b91c1c;
        }

        .team-name-cell {
            text-align: left !important;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .team-mini-crest {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--color-border-light);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--color-text-secondary);
        }

        /* Fixture cards */
        .fixture-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
        }

        .fixture-item {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: var(--space-md) var(--space-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
            flex-wrap: wrap;
        }

        .fixture-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-border);
        }

        .fixture-date {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--color-accent);
            white-space: nowrap;
            min-width: 80px;
            text-align: center;
        }

        .fixture-matchup {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            flex: 1;
            justify-content: center;
            flex-wrap: wrap;
        }

        .fixture-team {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-text);
            white-space: nowrap;
        }

        .fixture-vs {
            font-size: 0.8rem;
            color: var(--color-text-weak);
            font-weight: 500;
            padding: 4px 12px;
            background: var(--color-border-light);
            border-radius: 12px;
        }

        .fixture-venue {
            font-size: 0.8rem;
            color: var(--color-text-weak);
            white-space: nowrap;
        }

        /* Team cards */
        .team-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: var(--space-lg);
        }

        .team-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-fast);
        }

        .team-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .team-card-img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .team-card-body {
            padding: var(--space-lg);
        }

        .team-card-body h4 {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--color-primary);
            margin-bottom: 4px;
        }

        .team-card-body .team-card-sub {
            font-size: 0.82rem;
            color: var(--color-text-weak);
            margin-bottom: var(--space-md);
        }

        .team-card-stats {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
        }

        .team-card-stat {
            text-align: center;
            flex: 1;
            min-width: 50px;
        }

        .team-card-stat .stat-val {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--color-accent);
        }

        .team-card-stat .stat-label {
            font-size: 0.72rem;
            color: var(--color-text-weak);
        }

        /* Stats dashboard */
        .stats-dashboard {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: var(--space-lg);
        }

        .stat-dash-card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border-light);
            text-align: center;
            transition: all var(--transition-fast);
        }

        .stat-dash-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .stat-dash-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-md);
            font-size: 1.3rem;
        }

        .stat-dash-icon.red {
            background: #fef2f2;
            color: #dc2626;
        }
        .stat-dash-icon.blue {
            background: #eff6ff;
            color: #2563eb;
        }
        .stat-dash-icon.green {
            background: #ecfdf5;
            color: #10b981;
        }
        .stat-dash-icon.amber {
            background: #fefce8;
            color: #eab308;
        }
        .stat-dash-icon.purple {
            background: #f5f3ff;
            color: #7c3aed;
        }

        .stat-dash-val {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .stat-dash-label {
            font-size: 0.85rem;
            color: var(--color-text-secondary);
            margin-top: 4px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-lg);
            font-weight: 600;
            font-size: 0.98rem;
            color: var(--color-primary);
            background: transparent;
            cursor: pointer;
            border: none;
            text-align: left;
            gap: var(--space-md);
            transition: background var(--transition-fast);
        }

        .faq-question:hover {
            background: #fafbfc;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--color-border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            transition: all var(--transition-fast);
        }

        .faq-item.open .faq-icon {
            background: var(--color-accent);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-smooth), padding var(--transition-smooth);
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding: 0 var(--space-lg) var(--space-lg);
            color: var(--color-text-secondary);
            line-height: 1.7;
            font-size: 0.9rem;
        }

        /* CTA */
        .cta-section {
            background: var(--color-primary);
            padding: var(--space-3xl) 0;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(220, 38, 38, 0.2);
            filter: blur(60px);
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -70px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(234, 179, 8, 0.18);
            filter: blur(50px);
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
            letter-spacing: -0.01em;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 480px;
            margin: 0 auto var(--space-lg);
            font-size: 0.98rem;
            line-height: 1.6;
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            background: #ffffff;
            color: var(--color-accent);
            cursor: pointer;
            border: none;
            transition: all var(--transition-fast);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-large:hover {
            background: #fef2f2;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 12px 26px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all var(--transition-fast);
            margin-left: var(--space-md);
        }

        .btn-outline-light:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: var(--space-3xl) 0 var(--space-lg);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }

        .footer-logo {
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: var(--space-sm);
        }

        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.7;
            color: #94a3b8;
            max-width: 280px;
        }

        .footer-col h4 {
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: var(--space-md);
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .footer-col ul li a,
        .footer-col ul li span {
            font-size: 0.85rem;
            color: #94a3b8;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .footer-col ul li a {
            cursor: pointer;
        }
        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: var(--space-lg);
            text-align: center;
            font-size: 0.8rem;
            color: #64748b;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-md);
            margin-bottom: var(--space-md);
        }

        .footer-links a,
        .footer-links span {
            font-size: 0.8rem;
            color: #94a3b8;
            transition: color var(--transition-fast);
            cursor: default;
        }
        .footer-links a {
            cursor: pointer;
        }
        .footer-links a:hover {
            color: #fff;
        }

        .beian-info {
            margin-top: var(--space-sm);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--space-md);
            font-size: 0.75rem;
            color: #64748b;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links a {
                padding: 6px 11px;
                font-size: 0.82rem;
            }
            .logo-text {
                font-size: 1rem;
            }
            .page-hero h1 {
                font-size: 2.1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-xl);
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .score-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .team-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            .stats-dashboard {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .header-actions .btn-nav-cta {
                display: none;
            }
            .burger-btn {
                display: flex;
            }
            .mobile-nav-overlay {
                display: block;
            }
            .mobile-nav-panel {
                display: flex;
            }
            .page-hero {
                padding: var(--space-2xl) 0 var(--space-xl);
            }
            .page-hero h1 {
                font-size: 1.7rem;
            }
            .page-hero .hero-desc {
                font-size: 0.95rem;
            }
            .section {
                padding: var(--space-2xl) 0;
            }
            .section-header h2 {
                font-size: 1.45rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-lg);
            }
            .score-grid {
                grid-template-columns: 1fr;
            }
            .team-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .stats-dashboard {
                grid-template-columns: repeat(2, 1fr);
            }
            .fixture-item {
                flex-direction: column;
                align-items: flex-start;
                gap: var(--space-sm);
                padding: var(--space-md);
            }
            .fixture-matchup {
                justify-content: flex-start;
            }
            .cta-section h2 {
                font-size: 1.4rem;
            }
            .btn-outline-light {
                margin-left: 0;
                margin-top: var(--space-sm);
            }
            .hero-meta-row {
                gap: var(--space-md);
            }
            .score-teams {
                gap: var(--space-sm);
            }
            .score-number {
                font-size: 1.5rem;
            }
            .score-team .team-crest {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 var(--space-md);
            }
            .header-inner {
                padding: 0 var(--space-md);
            }
            .page-hero h1 {
                font-size: 1.4rem;
            }
            .page-hero .hero-desc {
                font-size: 0.85rem;
            }
            .section-header h2 {
                font-size: 1.25rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            .footer-links {
                gap: var(--space-sm);
            }
            .stats-dashboard {
                grid-template-columns: 1fr 1fr;
            }
            .team-cards-grid {
                grid-template-columns: 1fr;
            }
            .hero-meta-row {
                flex-direction: column;
                align-items: flex-start;
                gap: var(--space-sm);
            }
            .data-table {
                min-width: 550px;
                font-size: 0.75rem;
            }
            .data-table thead th,
            .data-table tbody td {
                padding: 8px 6px;
            }
        }

/* roulang page: category5 */
:root {
            --color-primary: #0f172a;
            --color-primary-light: #1e293b;
            --color-accent: #10b981;
            --color-accent-dark: #059669;
            --color-highlight: #f59e0b;
            --color-danger: #ef4444;
            --color-bg: #f1f5f9;
            --color-white: #ffffff;
            --color-text: #1e293b;
            --color-text-muted: #64748b;
            --color-text-light: #94a3b8;
            --color-border: #e2e8f0;
            --color-border-light: #f1f5f9;
            --color-card-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
            --color-card-shadow-hover: 0 10px 25px rgba(15, 23, 42, 0.1), 0 4px 8px rgba(15, 23, 42, 0.06);
            --color-nav-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.03);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --spacing-xs: 0.5rem;
            --spacing-sm: 0.75rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
            --spacing-2xl: 3rem;
            --spacing-3xl: 4rem;
            --font-xs: 0.75rem;
            --font-sm: 0.85rem;
            --font-md: 0.95rem;
            --font-lg: 1.1rem;
            --font-xl: 1.3rem;
            --font-2xl: 1.6rem;
            --font-3xl: 2rem;
            --font-4xl: 2.4rem;
            --font-5xl: 2.8rem;
            --transition-fast: 0.15s ease;
            --transition-normal: 0.25s ease;
            --transition-slow: 0.35s ease;
            --max-width: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background-color: var(--color-bg);
            color: var(--color-text);
            line-height: 1.65;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--spacing-lg);
        }

        /* Header / Navigation */
        .site-header {
            background: var(--color-white);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--color-nav-shadow);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 62px;
            gap: var(--spacing-lg);
        }

        .header-logo {
            font-size: var(--font-xl);
            font-weight: 700;
            color: var(--color-primary);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }

        .header-logo .logo-icon {
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: nowrap;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 0.9rem;
            border-radius: var(--radius-sm);
            font-size: var(--font-sm);
            font-weight: 500;
            color: var(--color-text-muted);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--color-primary);
            background: #f8fafc;
        }

        .nav-links a.active {
            color: var(--color-accent);
            font-weight: 600;
            background: #ecfdf5;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 24px;
            padding: 0.45rem 0.9rem;
            flex-shrink: 0;
            transition: all var(--transition-fast);
            cursor: pointer;
            min-width: 160px;
            max-width: 220px;
        }

        .header-search:hover {
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.06);
        }

        .header-search .search-icon {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .header-search .search-placeholder {
            color: var(--color-text-light);
            font-size: var(--font-sm);
            flex: 1;
        }

        .header-search .search-shortcut {
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: 4px;
            padding: 0.15rem 0.4rem;
            font-size: 0.7rem;
            color: var(--color-text-muted);
            font-weight: 500;
            flex-shrink: 0;
        }

        .header-cta {
            flex-shrink: 0;
            background: var(--color-accent);
            color: #fff;
            padding: 0.5rem 1.2rem;
            border-radius: 24px;
            font-size: var(--font-sm);
            font-weight: 600;
            transition: all var(--transition-fast);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .header-cta:hover {
            background: var(--color-accent-dark);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--color-primary);
            padding: 0.3rem;
            line-height: 1;
        }

        /* Page Banner */
        .page-banner {
            background: linear-gradient(160deg, #0f172a 0%, #1a2f3f 40%, #0d3320 100%);
            padding: var(--spacing-3xl) 0;
            position: relative;
            overflow: hidden;
            text-align: center;
            color: #fff;
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.2;
            z-index: 0;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, transparent 30%, rgba(15, 23, 42, 0.7) 100%);
            z-index: 1;
        }

        .page-banner-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .page-banner .banner-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #e2e8f0;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            font-size: var(--font-xs);
            font-weight: 500;
            letter-spacing: 0.04em;
            margin-bottom: var(--spacing-md);
            backdrop-filter: blur(4px);
        }

        .page-banner h1 {
            font-size: var(--font-5xl);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: var(--spacing-md);
            line-height: 1.2;
        }

        .page-banner h1 .highlight {
            color: var(--color-highlight);
            position: relative;
        }

        .page-banner .banner-desc {
            font-size: var(--font-lg);
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Section Common */
        .section {
            padding: var(--spacing-3xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-2xl);
        }

        .section-header .section-tag {
            display: inline-block;
            background: #ecfdf5;
            color: var(--color-accent-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: var(--font-xs);
            font-weight: 600;
            letter-spacing: 0.03em;
            margin-bottom: var(--spacing-sm);
        }

        .section-header h2 {
            font-size: var(--font-3xl);
            font-weight: 700;
            color: var(--color-primary);
            letter-spacing: -0.02em;
            margin-bottom: var(--spacing-sm);
        }

        .section-header .section-subtitle {
            color: var(--color-text-muted);
            font-size: var(--font-md);
            max-width: 520px;
            margin: 0 auto;
        }

        /* Live Score Cards */
        .score-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: var(--spacing-lg);
        }

        .score-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            box-shadow: var(--color-card-shadow);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .score-card:hover {
            box-shadow: var(--color-card-shadow-hover);
            transform: translateY(-3px);
            border-color: #d1fae5;
        }

        .score-card .match-status {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--spacing-md);
        }

        .score-card .status-badge {
            font-size: var(--font-xs);
            font-weight: 600;
            padding: 0.25rem 0.7rem;
            border-radius: 12px;
            letter-spacing: 0.02em;
        }

        .status-live {
            background: #fef2f2;
            color: #dc2626;
            animation: pulse-dot 1.5s infinite;
        }

        .status-finished {
            background: #f1f5f9;
            color: #64748b;
        }

        .status-upcoming {
            background: #eff6ff;
            color: #3b82f6;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .score-card .match-time {
            font-size: var(--font-xs);
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .score-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-md);
        }

        .score-card .team {
            text-align: center;
            flex: 1;
        }

        .score-card .team-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #f1f5f9;
            margin: 0 auto var(--spacing-xs);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-primary);
            border: 2px solid var(--color-border);
        }

        .score-card .team-name {
            font-weight: 600;
            font-size: var(--font-md);
            color: var(--color-primary);
        }

        .score-card .score-display {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: var(--font-4xl);
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: 0.02em;
            padding: 0 0.6rem;
            min-width: 80px;
            justify-content: center;
        }

        .score-card .score-display .score-num {
            line-height: 1;
        }

        .score-card .score-display .score-divider {
            color: #cbd5e1;
            font-weight: 300;
        }

        .score-card .score-display.live-score .score-num {
            color: #dc2626;
        }

        .score-card .match-info {
            font-size: var(--font-xs);
            color: var(--color-text-muted);
            text-align: center;
            padding-top: var(--spacing-sm);
            border-top: 1px solid var(--color-border-light);
        }

        /* Standings Table */
        .standings-wrapper {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--color-card-shadow);
            border: 1px solid var(--color-border-light);
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: var(--font-sm);
        }

        .standings-table thead th {
            background: #f8fafc;
            padding: 0.85rem var(--spacing-md);
            text-align: left;
            font-weight: 600;
            color: var(--color-text-muted);
            font-size: var(--font-xs);
            letter-spacing: 0.03em;
            text-transform: uppercase;
            border-bottom: 2px solid var(--color-border);
            white-space: nowrap;
        }

        .standings-table tbody td {
            padding: 0.75rem var(--spacing-md);
            border-bottom: 1px solid var(--color-border-light);
            vertical-align: middle;
        }

        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }

        .standings-table tbody tr:hover {
            background: #fafdfc;
        }

        .standings-table .rank-col {
            font-weight: 700;
            width: 50px;
            text-align: center;
        }

        .standings-table .rank-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 6px;
            vertical-align: middle;
        }

        .rank-acl {
            background: #10b981;
        }
        .rank-acl-qual {
            background: #f59e0b;
        }
        .rank-normal {
            background: #94a3b8;
        }
        .rank-relegation {
            background: #ef4444;
        }

        .standings-table .team-cell {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .standings-table .team-dot {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            flex-shrink: 0;
            display: inline-block;
        }

        .standings-table .pts-col {
            font-weight: 700;
            font-size: var(--font-md);
            color: var(--color-primary);
        }

        .standings-table .form-mini {
            display: flex;
            gap: 3px;
        }

        .form-mini span {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 3px;
            text-align: center;
            line-height: 20px;
            font-size: 0.65rem;
            font-weight: 700;
            color: #fff;
        }

        .form-w {
            background: #10b981;
        }
        .form-d {
            background: #f59e0b;
        }
        .form-l {
            background: #ef4444;
        }

        /* Schedule List */
        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .schedule-item {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg);
            box-shadow: var(--color-card-shadow);
            border: 1px solid var(--color-border-light);
            display: flex;
            align-items: center;
            gap: var(--spacing-lg);
            transition: all var(--transition-normal);
            flex-wrap: wrap;
        }

        .schedule-item:hover {
            box-shadow: var(--color-card-shadow-hover);
            border-color: #d1fae5;
        }

        .schedule-date {
            flex-shrink: 0;
            text-align: center;
            min-width: 70px;
        }

        .schedule-date .date-day {
            font-size: var(--font-3xl);
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
        }

        .schedule-date .date-month {
            font-size: var(--font-xs);
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .schedule-matchup {
            flex: 1;
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
            flex-wrap: wrap;
            justify-content: center;
            min-width: 200px;
        }

        .schedule-team {
            font-weight: 600;
            font-size: var(--font-md);
            color: var(--color-primary);
            text-align: center;
            min-width: 70px;
        }

        .schedule-vs {
            font-weight: 700;
            color: #cbd5e1;
            font-size: var(--font-lg);
        }

        .schedule-venue {
            font-size: var(--font-xs);
            color: var(--color-text-muted);
            flex-shrink: 0;
            text-align: right;
            min-width: 80px;
        }

        .schedule-remind-btn {
            flex-shrink: 0;
            background: var(--color-accent);
            color: #fff;
            border: none;
            padding: 0.45rem 1rem;
            border-radius: 20px;
            font-size: var(--font-xs);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .schedule-remind-btn:hover {
            background: var(--color-accent-dark);
            box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
        }

        /* Stats Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--spacing-lg);
        }

        .stat-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: var(--spacing-xl);
            box-shadow: var(--color-card-shadow);
            border: 1px solid var(--color-border-light);
            text-align: center;
            transition: all var(--transition-normal);
        }

        .stat-card:hover {
            box-shadow: var(--color-card-shadow-hover);
            transform: translateY(-2px);
        }

        .stat-card .stat-icon {
            font-size: 2rem;
            margin-bottom: var(--spacing-sm);
        }

        .stat-card .stat-value {
            font-size: var(--font-4xl);
            font-weight: 800;
            color: var(--color-primary);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .stat-card .stat-label {
            font-size: var(--font-sm);
            color: var(--color-text-muted);
            margin-top: var(--spacing-xs);
            font-weight: 500;
        }

        .stat-card .stat-change {
            font-size: var(--font-xs);
            font-weight: 600;
            margin-top: 0.3rem;
        }

        .stat-card .stat-change.up {
            color: #10b981;
        }
        .stat-card .stat-change.down {
            color: #ef4444;
        }

        /* News Cards */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: var(--spacing-lg);
        }

        .news-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--color-card-shadow);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            box-shadow: var(--color-card-shadow-hover);
            transform: translateY(-3px);
        }

        .news-card .news-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .news-card .news-body {
            padding: var(--spacing-lg);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card .news-date {
            font-size: var(--font-xs);
            color: var(--color-text-muted);
            margin-bottom: var(--spacing-xs);
        }

        .news-card .news-title {
            font-weight: 700;
            font-size: var(--font-md);
            color: var(--color-primary);
            margin-bottom: var(--spacing-sm);
            line-height: 1.4;
        }

        .news-card .news-excerpt {
            font-size: var(--font-sm);
            color: var(--color-text-muted);
            line-height: 1.6;
            flex: 1;
            margin-bottom: var(--spacing-md);
        }

        .news-card .news-link {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--color-accent);
            font-weight: 600;
            font-size: var(--font-sm);
            transition: gap var(--transition-fast);
        }

        .news-card .news-link:hover {
            gap: 0.6rem;
            color: var(--color-accent-dark);
        }

        /* FAQ */
        .faq-list {
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .faq-item {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: var(--spacing-lg);
            box-shadow: var(--color-card-shadow);
            border: 1px solid var(--color-border-light);
            transition: all var(--transition-normal);
            cursor: pointer;
        }

        .faq-item:hover {
            border-color: #d1fae5;
            box-shadow: var(--color-card-shadow-hover);
        }

        .faq-item .faq-question {
            font-weight: 700;
            font-size: var(--font-md);
            color: var(--color-primary);
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-sm);
        }

        .faq-item .faq-q-icon {
            color: var(--color-accent);
            font-weight: 800;
            flex-shrink: 0;
        }

        .faq-item .faq-answer {
            margin-top: var(--spacing-md);
            padding-top: var(--spacing-md);
            border-top: 1px solid var(--color-border-light);
            font-size: var(--font-sm);
            color: var(--color-text-muted);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(150deg, #0f172a 0%, #1a2f3f 50%, #0d3320 100%);
            padding: var(--spacing-3xl) 0;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: var(--font-3xl);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: var(--spacing-md);
        }

        .cta-section p {
            color: #cbd5e1;
            font-size: var(--font-md);
            max-width: 500px;
            margin: 0 auto var(--spacing-xl);
            line-height: 1.7;
        }

        .cta-section .cta-btn {
            display: inline-block;
            background: var(--color-highlight);
            color: #0f172a;
            padding: 0.75rem 2rem;
            border-radius: 28px;
            font-weight: 700;
            font-size: var(--font-md);
            transition: all var(--transition-normal);
            border: none;
            cursor: pointer;
            letter-spacing: 0.01em;
        }

        .cta-section .cta-btn:hover {
            background: #fbbf24;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        }

        /* Footer */
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: var(--spacing-3xl) 0 var(--spacing-xl);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-2xl);
            margin-bottom: var(--spacing-2xl);
        }

        .footer-brand .footer-logo {
            font-size: var(--font-xl);
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--spacing-sm);
            letter-spacing: -0.02em;
        }

        .footer-brand p {
            font-size: var(--font-sm);
            color: #94a3b8;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: var(--font-sm);
            font-weight: 600;
            margin-bottom: var(--spacing-md);
            letter-spacing: 0.02em;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-col ul li a,
        .footer-col ul li span {
            font-size: var(--font-sm);
            color: #94a3b8;
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: var(--spacing-lg);
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-md);
        }

        .footer-links a,
        .footer-links span {
            font-size: var(--font-xs);
            color: #94a3b8;
            transition: color var(--transition-fast);
            cursor: pointer;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-bottom p {
            font-size: var(--font-xs);
            color: #64748b;
        }

        .beian-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--spacing-md);
            font-size: var(--font-xs);
            color: #64748b;
            margin-top: var(--spacing-sm);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-xl);
            }
            .header-search {
                min-width: 120px;
                max-width: 160px;
            }
            .nav-links a {
                padding: 0.4rem 0.6rem;
                font-size: var(--font-xs);
            }
            .page-banner h1 {
                font-size: var(--font-4xl);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 62px;
                left: 0;
                right: 0;
                background: var(--color-white);
                flex-direction: column;
                padding: var(--spacing-md);
                border-bottom: 1px solid var(--color-border);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
                z-index: 999;
                gap: 0.15rem;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 0.7rem 1rem;
                border-radius: var(--radius-sm);
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-search {
                display: none;
            }
            .header-cta {
                padding: 0.4rem 0.8rem;
                font-size: var(--font-xs);
            }
            .score-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            .schedule-item {
                flex-direction: column;
                text-align: center;
                gap: var(--spacing-sm);
            }
            .schedule-venue {
                text-align: center;
            }
            .page-banner {
                min-height: 220px;
                padding: var(--spacing-2xl) 0;
            }
            .page-banner h1 {
                font-size: var(--font-3xl);
            }
            .standings-table {
                font-size: var(--font-xs);
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 0.5rem 0.4rem;
            }
            .section-header h2 {
                font-size: var(--font-2xl);
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 var(--spacing-md);
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
            .score-card .match-teams {
                gap: var(--spacing-sm);
            }
            .score-card .score-display {
                font-size: var(--font-2xl);
                min-width: 50px;
            }
            .score-card .team-avatar {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            .score-card .team-name {
                font-size: var(--font-sm);
            }
            .page-banner h1 {
                font-size: var(--font-2xl);
            }
            .page-banner .banner-desc {
                font-size: var(--font-sm);
            }
            .section {
                padding: var(--spacing-2xl) 0;
            }
            .footer-links {
                gap: var(--spacing-sm);
            }
            .header-inner {
                height: 54px;
            }
            .header-logo {
                font-size: var(--font-md);
            }
        }
