body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: #0d6efd !important;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            border-left: 5px solid #0d6efd;
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: bold;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .live-score {
            background-color: #fff;
            border-left: 5px solid #dc3545;
            padding: 15px;
            font-weight: bold;
        }
        .stats-table th {
            background-color: #0d6efd;
            color: white;
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background-color: #e9ecef;
            border-radius: 5px;
            text-decoration: none;
            color: #333;
            transition: background-color 0.3s;
        }
        .friendlink .flink:hover {
            background-color: #0d6efd;
            color: white;
        }
        footer {
            background-color: #212529;
            color: #adb5bd;
        }
        .contact-info a {
            color: #0d6efd;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        .analysis-content {
            line-height: 1.8;
            text-align: justify;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
