body {
            font-family: "Microsoft YaHei", sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            border-left: 5px solid #007bff;
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: bold;
            color: #0056b3;
        }
        .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);
        }
        .btn-primary {
            background-color: #0056b3;
            border-color: #004494;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #003375;
        }
        .live-score {
            background-color: #fff;
            border-left: 5px solid #dc3545;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        .friendlink .flink {
            display: inline-block;
            margin: 5px 10px;
            padding: 8px 15px;
            background-color: #e9ecef;
            border-radius: 5px;
            color: #0056b3;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .friendlink .flink:hover {
            background-color: #0056b3;
            color: white;
        }
        footer {
            background-color: #343a40;
            color: #adb5bd;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .analysis-text {
            line-height: 1.8;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
