:root {
            --primary-dark: #0a2e5c;
            --primary-blue: #1e4a8f;
            --accent-gold: #d4af37;
            --accent-red: #c8102e;
            --accent-green: #00843d;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 92, 0.9), rgba(30, 74, 143, 0.8)), url('https://images.unsplash.com/photo-1551969014-7d2c4cddf0b6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 50px;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .section-title {
            color: var(--primary-dark);
            border-left: 5px solid var(--accent-gold);
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .match-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .prediction-badge {
            background: linear-gradient(45deg, var(--accent-red), #ff6b6b);
            color: white;
            font-weight: 600;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .data-stat-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-top: 4px solid var(--primary-blue);
            height: 100%;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .live-score {
            background: linear-gradient(90deg, #ff4d4d, #c8102e);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            animation: pulse 2s infinite;
            font-weight: 600;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(200, 16, 46, 0); }
            100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
        }
        .analysis-card {
            border-left: 5px solid var(--accent-gold);
            background-color: #fffdf6;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .footer {
            background-color: var(--primary-dark);
            color: #ddd;
            padding-top: 50px;
            margin-top: 80px;
        }
        .flink {
            background: #f1f5fd;
            padding: 12px 20px;
            border-radius: 8px;
            color: var(--primary-blue);
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s;
            border: 1px solid #d1ddf5;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .contact-info i {
            color: var(--accent-gold);
            width: 25px;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-dark));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 74, 143, 0.3);
            color: white;
        }
        .article-content h3 {
            color: var(--primary-dark);
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .table-custom {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .table-custom thead th {
            background-color: var(--primary-blue);
            color: white;
            border: none;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 1.8rem;
            }
        }
