body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: #0056b3;
        }
        .hero-section {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            border-left: 5px solid #0056b3;
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: 700;
            color: #1a1a1a;
        }
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .btn-primary {
            background-color: #0056b3;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #004494;
        }
        .footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 40px 0;
        }
        .friendlink {
            background-color: #f1f8ff;
            padding: 30px 0;
        }
        .flink {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background: white;
            border-radius: 25px;
            color: #0056b3;
            text-decoration: none;
            font-weight: 500;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .flink:hover {
            border-color: #0056b3;
            background-color: #e6f2ff;
        }
        .live-score {
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            margin: 20px 0;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
