:root {
            --primary-color: #1a5fb4;
            --secondary-color: #e95420;
            --accent-color: #2ec27e;
            --dark-color: #2a2a2e;
            --light-color: #f6f5f4;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(26,95,180,0.9) 0%, rgba(42,42,46,0.85) 100%), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .feature-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .prediction-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-left: 5px solid var(--accent-color);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .prediction-card:hover {
            box-shadow: 0 10px 20px rgba(46,194,126,0.15);
            transform: translateX(5px);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin: 0 auto 15px;
            display: block;
        }
        .match-score {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-color);
            text-align: center;
            margin: 20px 0;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background-color: #f8f9fa;
            border-radius: 6px;
            color: #495057;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        .footer {
            background-color: var(--dark-color);
            color: #ddd;
            padding: 60px 0 20px;
        }
        .footer a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: white;
        }
        .contact-info i {
            width: 30px;
            color: var(--accent-color);
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #0d4a9e;
            border-color: #0d4a9e;
            transform: translateY(-2px);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .article-content {
            max-width: 900px;
            margin: 0 auto;
        }
        .article-content h3 {
            color: var(--dark-color);
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight-box {
            background-color: #f0f7ff;
            border-left: 4px solid var(--primary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .analysis-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .analysis-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .analysis-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        .analysis-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .analysis-table tr:hover {
            background-color: #f0f7ff;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin: 40px 0;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--accent-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .player-card {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        .player-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 10px 20px rgba(26,95,180,0.1);
        }
        .player-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 4px solid #f0f0f0;
        }
        .form-control-custom {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            transition: all 0.3s;
        }
        .form-control-custom:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(26,95,180,0.25);
        }
