body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        .navbar-brand {
            font-weight: bold;
            color: #0056b3;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.8)), url('https://images.unsplash.com/photo-1594736797933-d0cb259b9ee3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 20px;
            text-align: center;
        }
        .section-title {
            border-bottom: 3px solid #0056b3;
            padding-bottom: 10px;
            margin-bottom: 30px;
            color: #0056b3;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .btn-primary {
            background-color: #0056b3;
            border: none;
            border-radius: 5px;
            padding: 10px 25px;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #004494;
        }
        .footer {
            background-color: #20232a;
            color: white;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            margin: 5px 10px;
            padding: 5px 15px;
            background-color: #e9ecef;
            border-radius: 20px;
            color: #0056b3;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .flink:hover {
            background-color: #0056b3;
            color: white;
        }
        .live-score {
            background-color: #fff;
            border-left: 5px solid #28a745;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 5px;
        }
        .table-striped tbody tr:nth-of-type(odd) {
            background-color: rgba(0, 86, 179, 0.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 20px;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
        .analysis-text {
            line-height: 1.8;
            font-size: 1.1rem;
        }
