body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .hero-section {
            padding: 100px 0;
            background: url('https://images.unsplash.com/photo-1535743686920-55e4145369b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            position: relative;
            color: white;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 50, 0.5);
        }
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        .section-title {
            border-left: 5px solid #2a5298;
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: 700;
            color: #1e3c72;
        }
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            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.2);
        }
        .card-img-top {
            border-radius: 15px 15px 0 0;
            height: 200px;
            object-fit: cover;
        }
        .btn-primary {
            background: linear-gradient(to right, #1e3c72, #2a5298);
            border: none;
            border-radius: 30px;
            padding: 10px 25px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: linear-gradient(to right, #2a5298, #1e3c72);
            transform: scale(1.05);
        }
        .live-score {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .live-score h4 {
            color: #d9534f;
            font-weight: 700;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(42, 82, 152, 0.1);
        }
        .friendlink {
            background-color: #e9ecef;
            padding: 50px 0;
        }
        .flink {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background-color: white;
            border-radius: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            color: #1e3c72;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: #2a5298;
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: #1a1a2e;
            color: #ccc;
            padding: 40px 0 20px;
        }
        footer a {
            color: #66b3ff;
            text-decoration: none;
        }
        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
