:root {
            --primary-blue: #002b7f;
            --secondary-gold: #ffd700;
            --accent-red: #c8102e;
            --dark-green: #006847;
            --light-gray: #f8f9fa;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 43, 127, 0.85), rgba(0, 104, 71, 0.8)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 50px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-blue);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 70px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .live-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-red);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-card {
            border-left: 5px solid var(--secondary-gold);
            background: #f8f9fa;
            padding: 25px;
            border-radius: 0 8px 8px 0;
        }
        .prediction-card {
            border-top: 5px solid var(--primary-blue);
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: #f1f5f9;
            border-radius: 6px;
            color: #334155;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background: #1e293b;
            color: #cbd5e1;
            padding-top: 50px;
            margin-top: 80px;
        }
        .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .contact-info li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--secondary-gold);
        }
        .btn-custom {
            background: linear-gradient(to right, var(--primary-blue), var(--dark-green));
            color: white;
            padding: 10px 30px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-custom:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 43, 127, 0.2);
        }
        .match-table th {
            background: var(--primary-blue);
            color: white;
            border: none;
        }
        .match-table td {
            vertical-align: middle;
        }
        .analysis-box {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            border-left: 5px solid var(--accent-red);
            margin-bottom: 25px;
        }
        .highlight-text {
            color: var(--primary-blue);
            font-weight: 700;
        }
        .team-flag {
            width: 40px;
            height: 26px;
            object-fit: cover;
            border-radius: 2px;
            margin-right: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .stats-card {
                margin-bottom: 20px;
            }
        }
