:root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #38a169;
            --light-bg: #f7fafc;
            --dark-text: #2d3748;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }
        .match-card {
            border-left: 5px solid var(--secondary-color);
            background: var(--light-bg);
        }
        .data-stat {
            background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%);
            color: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
        }
        .data-stat .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .analysis-box {
            background: white;
            border-radius: 10px;
            padding: 25px;
            border-top: 4px solid var(--accent-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .friendlink {
            background: var(--light-bg);
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 50px;
            color: var(--dark-text);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
        }
        footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-color);
        }
        .live-score {
            background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(229, 62, 62, 0); }
            100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
        }
        .team-flag {
            width: 40px;
            height: 30px;
            object-fit: cover;
            border-radius: 3px;
            display: inline-block;
            margin-right: 10px;
            vertical-align: middle;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .data-stat .stat-number {
                font-size: 2rem;
            }
        }
        .article-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-left: 4px solid #ffd700;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .prediction-badge {
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(26, 54, 93, 0.05);
        }
        .img-fluid {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
