body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .section-title {
            border-left: 5px solid #2a5298;
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: bold;
            color: #1e3c72;
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            border-radius: 10px 10px 0 0;
            height: 200px;
            object-fit: cover;
        }
        .live-score {
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
        }
        .stat-box {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
            text-align: center;
            transition: background 0.3s;
        }
        .stat-box:hover {
            background: #e9f7fe;
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: #f1f1f1;
            border-radius: 5px;
            color: #2a5298;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        .friendlink .flink:hover {
            background: #2a5298;
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: #1e3c72;
            color: white;
            padding: 40px 0 20px;
        }
        footer a {
            color: #a3d9ff;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info i {
            margin-right: 10px;
            color: #ffc107;
        }
        .btn-primary {
            background: #2a5298;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .btn-primary:hover {
            background: #1e3c72;
        }
        .analysis-article {
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
