:root {
            --primary-color: #0d1b3e;
            --secondary-color: #e30613;
            --accent-color: #ffcc00;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 62, 0.85), rgba(13, 27, 62, 0.9)), url('https://images.unsplash.com/photo-1630417014563-fb21ff2e2a7c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 12px;
            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 25px rgba(0, 0, 0, 0.12);
        }
        .card-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .flag-icon {
            width: 40px;
            height: 30px;
            object-fit: cover;
            border-radius: 3px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            border-radius: 50px;
            padding: 0.25rem 1rem;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }
        .prediction-meter {
            height: 12px;
            border-radius: 6px;
            background-color: #e9ecef;
            overflow: hidden;
        }
        .meter-fill {
            height: 100%;
            border-radius: 6px;
            transition: width 1s ease;
        }
        .analysis-box {
            background-color: var(--light-bg);
            border-radius: 12px;
            padding: 2rem;
            border-left: 5px solid var(--accent-color);
        }
        .form-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .flink {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            margin: 0.5rem;
            background-color: white;
            border-radius: 8px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .footer {
            background-color: var(--primary-color);
            color: rgba(255,255,255,0.85);
        }
        .footer a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-divider {
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0 3rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
        }
