:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffd700;
            --dark-bg: #0c1a27;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #e9ecef;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(12, 26, 39, 0.85), rgba(30, 126, 52, 0.8)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--secondary-gold) !important;
        }
        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
            transform: translateY(-2px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        .match-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(30, 126, 52, 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 {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 0.8rem;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .live-badge {
            background: #dc3545;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .stat-box {
            background: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary-green);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        .analysis-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9f5eb 100%);
            padding: 80px 0;
            border-radius: 20px;
        }
        .article-card {
            height: 100%;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .article-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .article-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 60px 0 30px;
        }
        .footer a {
            color: #a3d9b1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: white !important;
            padding: 8px 20px;
            border-radius: 25px;
            margin: 5px 10px 5px 0;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
            color: white !important;
        }
        .contact-info li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 6px;
            color: var(--secondary-gold);
        }
        .seo-content {
            font-size: 1.05rem;
            line-height: 1.9;
            text-align: justify;
        }
        .seo-content h3 {
            color: var(--primary-green);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 50px;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .navbar-nav {
                text-align: center;
                padding-top: 10px;
            }
        }
