:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #00acc1;
            --light-bg: #f5f7fa;
            --dark-text: #2c3e50;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%);
            color: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .analysis-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .analysis-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .live-score {
            background: linear-gradient(45deg, #ff6f00, #ff9100);
            color: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(255, 111, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0); }
        }
        .team-flag {
            width: 50px;
            height: 35px;
            object-fit: cover;
            border-radius: 4px;
            margin: 0 10px;
        }
        .stats-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stats-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 1rem;
        }
        .stats-table tr:hover {
            background-color: rgba(26, 35, 126, 0.05);
            transition: background-color 0.2s ease;
        }
        .flink {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 0.5rem;
            text-align: center;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            border-color: var(--secondary-color);
            color: var(--secondary-color);
            transform: scale(1.05);
        }
        .footer {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 3rem 0 1rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
        }
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .highlight {
            color: var(--secondary-color);
            font-weight: 700;
        }
        .content-block {
            margin-bottom: 3rem;
        }
        .content-block h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .content-block p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
