:root {
            --primary-color: #0056a6;
            --secondary-color: #d52b1e;
            --accent-color: #fecb00;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            background-color: #fff;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .navbar-dark .navbar-nav .nav-link {
            font-weight: 500;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(0, 86, 166, 0.9)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
        }
        .match-countdown {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .prediction-card {
            border-top: 5px solid var(--secondary-color);
        }
        .live-score {
            background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
            color: white;
            border-radius: 12px;
            padding: 20px;
        }
        .team-flag {
            width: 60px;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .analysis-section {
            background-color: #f0f8ff;
            padding: 80px 0;
        }
        .footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-color);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 6px;
            transition: all 0.3s;
            color: #ddd;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .btn-custom {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            background-color: #b3241a;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(213, 43, 30, 0.3);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .match-countdown {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
