:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ffc107;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(26, 35, 126, 0.95);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 1rem auto;
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            border-radius: 12px 12px 0 0;
            height: 220px;
            object-fit: cover;
        }
        .card-title {
            color: var(--primary-color);
            font-weight: 700;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .live-score {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
        }
        .score-board {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin: 1rem 0;
        }
        .team-flag {
            width: 60px;
            height: auto;
            margin: 0 1rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        .data-table th, .data-table td {
            padding: 1rem;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .data-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .friendlink {
            background-color: #e9ecef;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.75rem 1.5rem;
            background: white;
            border-radius: 50px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
            text-decoration: none;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        footer a {
            color: var(--accent-color);
            text-decoration: none;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info li {
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }
        .icon-box {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .btn-custom {
            background-color: var(--secondary-color);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            background-color: #b71c1c;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                padding: 5rem 0;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .score-board {
                font-size: 2rem;
            }
            .team-flag {
                width: 40px;
            }
        }
