:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #fbbf24;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --background-light: #f8fafc;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--background-light);
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #b91c1c;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
        }
        .live-score {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--shadow);
        }
        .live-score h3 i {
            color: #ff6b6b;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .data-table {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .data-table thead {
            background-color: var(--primary-color);
            color: white;
        }
        .flink {
            display: inline-block;
            background-color: #e5e7eb;
            color: var(--text-dark);
            padding: 10px 20px;
            margin: 8px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .flink:hover {
            background-color: var(--accent-color);
            color: var(--text-dark);
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
        }
        footer a {
            color: #dbeafe;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--accent-color);
        }
        .contact-info i {
            color: var(--accent-color);
            width: 24px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
