:root {
            --primary-color: #0a2e5c;
            --secondary-color: #c8102e;
            --accent-color: #ffd700;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--accent-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 92, 0.85), rgba(10, 46, 92, 0.9)), url('https://images.unsplash.com/photo-1641898378540-5d1673240af9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 60px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            margin-bottom: 30px;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .badge-analysis {
            background: var(--secondary-color);
            color: white;
            font-size: 0.8rem;
        }
        .live-score {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 6px 15px rgba(26, 41, 128, 0.3);
        }
        .team-flag {
            width: 40px;
            height: auto;
            margin: 0 10px;
        }
        .data-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .table thead th {
            background: var(--primary-color);
            color: white;
            border: none;
        }
        .table tbody tr:hover {
            background-color: rgba(10, 46, 92, 0.05);
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #a50d24;
            border-color: #a50d24;
            transform: scale(1.05);
        }
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-color);
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            margin: 5px 10px;
            border-radius: 6px;
            transition: all 0.3s;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .flink:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            color: white;
            text-decoration: none;
        }
        .contact-info li {
            margin-bottom: 12px;
        }
        .contact-info i {
            color: var(--accent-color);
            width: 24px;
        }
        .analysis-content {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 40px;
        }
        .author-badge {
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
