body {
            font-family: 'Microsoft YaHei', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            color: #0056b3;
            border-left: 5px solid #ffc107;
            padding-left: 15px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background-color: #e9ecef;
            border-radius: 5px;
            color: #0056b3;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .flink:hover {
            background-color: #0056b3;
            color: white;
        }
        .friendlink {
            background-color: #f1f8ff;
            padding: 40px 0;
            border-top: 2px solid #dee2e6;
            border-bottom: 2px solid #dee2e6;
        }
        .live-score {
            font-size: 1.5rem;
            font-weight: bold;
            color: #dc3545;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        footer {
            background-color: #343a40;
            color: white;
            padding: 30px 0;
        }
        .contact-info i {
            margin-right: 10px;
            color: #ffc107;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
        }
        .prediction-card {
            border-left: 5px solid #28a745;
        }
        .analysis-section {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
