:root {
            --primary-color: #0d47a1;
            --secondary-color: #e53935;
            --accent-color: #ffb300;
            --dark-color: #1a237e;
            --light-color: #e3f2fd;
            --text-dark: #212121;
            --text-light: #757575;
            --gradient-primary: linear-gradient(135deg, #0d47a1 0%, #1a237e 100%);
            --gradient-accent: linear-gradient(to right, #ffb300, #ff9800);
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: var(--gradient-primary);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        .hero-section h1 {
            font-size: 3.2rem;
            color: white;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .stat-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-top: 5px solid var(--accent-color);
        }
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .stat-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .prediction-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            display: inline-block;
        }
        .match-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid var(--secondary-color);
        }
        .match-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        .team-flag {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .live-indicator {
            width: 12px;
            height: 12px;
            background-color: #e53935;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background-color: var(--light-color);
            padding: 80px 0;
        }
        .progress-custom {
            height: 12px;
            border-radius: 6px;
            margin: 15px 0;
        }
        .progress-custom .progress-bar {
            border-radius: 6px;
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        .flink {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: var(--accent-color);
            color: var(--dark-color);
            border-color: white;
            transform: translateY(-3px);
        }
        .seo-content {
            background: white;
            padding: 50px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 40px 0;
            font-size: 1.05rem;
        }
        .seo-content h3 {
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .stat-card {
                margin-bottom: 20px;
            }
            .seo-content {
                padding: 25px;
            }
        }
