:root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #e53e3e;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .stat-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .match-prediction {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid var(--accent-color);
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 20px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .flink {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--dark-text);
            height: 100%;
        }
        .flink:hover {
            border-color: var(--secondary-color);
            box-shadow: 0 6px 12px rgba(212, 175, 55, 0.1);
            transform: scale(1.03);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .data-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        footer {
            background-color: #1a202c;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .analysis-card {
            border-top: 4px solid transparent;
            transition: all 0.4s ease;
        }
        .analysis-card:hover {
            border-top-color: var(--secondary-color);
        }
        .contact-info i {
            width: 24px;
            margin-right: 12px;
            color: var(--secondary-color);
        }
