:root {
            --primary-color: #1a6fb3;
            --secondary-color: #e6f2ff;
            --accent-color: #d32f2f;
            --dark-color: #0d2d4d;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            color: #333;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 45, 77, 0.85), rgba(13, 45, 77, 0.9)), 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: 8rem 0;
            margin-bottom: 3rem;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        }
        .section-title {
            color: var(--dark-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
            margin: 3rem 0 2rem;
            font-weight: 700;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .live-score {
            background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            background-color: white;
            border-radius: 50%;
            padding: 10px;
            margin: 0 auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .prediction-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.2rem;
            display: inline-block;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .stat-item {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .flink {
            display: inline-block;
            background-color: var(--light-color);
            color: var(--dark-color);
            padding: 0.6rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 3rem 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            margin-right: 1.5rem;
        }
        .footer-links a:hover {
            color: white;
        }
        .contact-info i {
            color: var(--primary-color);
            width: 25px;
        }
        .analysis-card {
            border-left: 4px solid var(--primary-color);
            background-color: #f8f9fa;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .match-table {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .match-table th {
            background-color: var(--dark-color);
            color: white;
            border: none;
        }
        .match-table tr:hover {
            background-color: var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-section {
                padding: 5rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
        }
        .content-section {
            margin-bottom: 4rem;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.4rem;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--accent-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-color);
        }
