body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            background: linear-gradient(135deg, #1e3c72, #2a5298);
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 120px 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: 700;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
        }
        .btn-primary {
            background: linear-gradient(135deg, #2a5298, #1e3c72);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
        }
        .live-score {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            color: white;
            padding: 15px;
            border-radius: 10px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 126, 95, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 126, 95, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 126, 95, 0); }
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 5px;
            color: #2a5298;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .friendlink .flink:hover {
            background: #2a5298;
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 40px 0;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .responsive-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(42, 82, 152, 0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
