body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: #0056b3 !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 180, 0.8), rgba(0, 84, 180, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: #0056b3;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #ffc107;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .live-score {
            background-color: #e9f7fe;
            border-left: 5px solid #28a745;
            padding: 15px;
            border-radius: 5px;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(0, 86, 179, 0.05);
        }
        .friendlink .flink {
            display: inline-block;
            background-color: #f1f8ff;
            border: 1px solid #d1e7ff;
            border-radius: 8px;
            padding: 10px 20px;
            margin: 5px;
            color: #0056b3;
            text-decoration: none;
            transition: all 0.3s;
        }
        .friendlink .flink:hover {
            background-color: #0056b3;
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: #222;
            color: #ddd;
            padding-top: 30px;
        }
        footer a {
            color: #ffc107;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
            color: white;
        }
        .img-fluid {
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .analysis-article {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 25px;
            border-left: 4px solid #28a745;
        }
        .btn-primary {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
