:root {
            --primary-color: #1a3a8f;
            --secondary-color: #dc3545;
            --accent-color: #ffc107;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 58, 143, 0.9), rgba(26, 58, 143, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .live-match {
            background: linear-gradient(135deg, #1a3a8f, #2a4ab0);
            color: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .match-team {
            font-size: 1.2rem;
            font-weight: 600;
        }
        .match-score {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        .prediction-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .data-stat {
            text-align: center;
            padding: 25px 15px;
            border-radius: 10px;
            background: var(--light-color);
            margin-bottom: 20px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--gray-color);
            margin-top: 10px;
        }
        .analysis-box {
            background: white;
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .flink {
            display: inline-block;
            padding: 10px 25px;
            margin: 8px;
            background: var(--light-color);
            border-radius: 8px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            border-color: var(--primary-color);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-link {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: white;
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
                text-align: center;
            }
            .section-title {
                text-align: center;
            }
            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .match-score {
                font-size: 2rem;
            }
        }
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .img-fluid {
            border-radius: 10px;
            margin: 20px 0;
        }
        .table-analysis {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .table-analysis th {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
        }
        .table-analysis td {
            padding: 15px;
            vertical-align: middle;
        }
        .table-analysis tr:nth-child(even) {
            background: #f8f9fa;
        }
        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: #152b6f;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(26, 58, 143, 0.2);
        }
        .expert-card {
            border-top: 4px solid var(--secondary-color);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-bottom: 40px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 25px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
