body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            background-color: #f8f9fa;
        }
        .hero {
            background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
            color: white;
            padding: 100px 0;
        }
        .section-title {
            border-left: 5px solid #0066cc;
            padding-left: 15px;
            margin-bottom: 30px;
            color: #003366;
        }
        .card {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: #003366;
            font-weight: 500;
        }
        .nav-link:hover {
            color: #0066cc;
        }
        .btn-primary {
            background-color: #0066cc;
            border-color: #0066cc;
        }
        .btn-primary:hover {
            background-color: #003366;
            border-color: #003366;
        }
        .live-score {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .live-score h3 {
            color: #d9534f;
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background-color: #e9ecef;
            border-radius: 5px;
            color: #0066cc;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .friendlink .flink:hover {
            background-color: #0066cc;
            color: white;
        }
        footer {
            background-color: #003366;
            color: white;
            padding: 40px 0;
        }
        .contact-info a {
            color: #ffcc00;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(0, 102, 204, 0.1);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
