:root {
            --primary-color: #1a365d;
            --secondary-color: #c53030;
            --accent-color: #2d3748;
            --light-bg: #f7fafc;
            --border-color: #e2e8f0;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .header-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a4365 100%);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(42, 67, 101, 0.9)), 
                        url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 100px 0;
        }
        .match-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .match-live {
            border-left: 4px solid var(--secondary-color);
        }
        .live-badge {
            background: var(--secondary-color);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-box {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 20px;
            height: 100%;
        }
        .flink {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px;
            background: var(--light-bg);
            border-radius: 6px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        .footer {
            background: var(--accent-color);
            color: #cbd5e0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }
        .btn-primary-custom {
            background: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        .btn-primary-custom:hover {
            background: #2a4365;
            border-color: #2a4365;
        }
        .content-section {
            padding: 80px 0;
        }
        .odd-box {
            background: white;
            border-radius: 8px;
            padding: 15px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }
        .odd-box:hover {
            border-color: var(--primary-color);
        }
        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }
        .news-card:hover {
            transform: translateY(-5px);
        }
        .news-date {
            color: var(--secondary-color);
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 50px 0;
            }
            .navbar-brand {
                font-size: 1.2rem;
            }
        }
        .contact-info-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        .seo-content {
            background: var(--light-bg);
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .data-table th {
            background: var(--primary-color);
            color: white;
        }
        .team-logo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 10px;
        }
