body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        .navbar-brand {
            font-weight: bold;
            color: #0056b3 !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 180, 0.8), rgba(0, 40, 85, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
        }
        .section-title {
            border-left: 5px solid #0056b3;
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: bold;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .btn-primary {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
        }
        .friendlink a.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 a.flink:hover {
            background-color: #0056b3;
            color: white;
        }
        footer {
            background-color: #343a40;
            color: white;
        }
        .live-score {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
        }
        .analysis-text {
            line-height: 1.8;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
