:root {
            --primary-color: #1a365d;
            --secondary-color: #e63946;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1646441096033-5c7c7b294b80?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .match-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--secondary-color);
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .live-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 0.8; }
            50% { opacity: 1; }
            100% { opacity: 0.8; }
        }
        .stats-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        .analysis-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            border-left: 5px solid var(--accent-color);
            margin-bottom: 2rem;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background-color: #f1f8ff;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #d1e3ff;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 3rem;
        }
        .contact-info li {
            margin-bottom: 10px;
        }
        .contact-info i {
            color: var(--accent-color);
            width: 25px;
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        .btn-primary-custom:hover {
            background-color: #c1121f;
            border-color: #c1121f;
        }
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
        }
        .article-content {
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .team-logo {
                width: 45px;
                height: 45px;
            }
        }
