:root {
            --primary-color: #0d47a1;
            --secondary-color: #b71c1c;
            --accent-color: #ffc107;
            --dark-color: #1a237e;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
        }
        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;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?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;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            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);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .analysis-card {
            border-left: 5px solid var(--secondary-color);
        }
        .match-card {
            background: linear-gradient(to right, #0d47a1, #1a237e);
            color: white;
            border-radius: 10px;
        }
        .team-flag {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }
        .stats-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            border-top: 5px solid var(--primary-color);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .live-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
        }
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .footer {
            background-color: #1a1a1a;
            color: #ddd;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-color);
        }
        .copyright {
            background-color: #0d0d0d;
            color: #aaa;
            padding: 20px 0;
            font-size: 0.9rem;
        }
        .flink {
            display: inline-block;
            background-color: #2a2a2a;
            color: white;
            padding: 8px 15px;
            margin: 0 10px 10px 0;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .analysis-content {
            text-align: justify;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .highlight-text {
            background-color: rgba(255, 193, 7, 0.2);
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        .prediction-box {
            background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .prediction-result {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-color);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 100px 0 60px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-color);
        }
