:root {
            --primary-color: #1a237e;
            --secondary-color: #d32f2f;
            --accent-color: #ffc107;
            --light-blue: #e3f2fd;
            --dark-blue: #0d47a1;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(13, 71, 161, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .match-prediction-card {
            border-left: 5px solid var(--secondary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .match-prediction-card:hover {
            transform: translateY(-5px);
        }
        .team-flag {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.16);
        }
        .vs-badge {
            background: var(--accent-color);
            color: #000;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 20px;
        }
        .stat-card {
            background: var(--light-blue);
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            background: #bbdefb;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .live-score {
            background: linear-gradient(45deg, #d32f2f, #f44336);
            color: white;
            border-radius: 10px;
            padding: 15px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
            100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
        }
        .analysis-section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
        }
        .player-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .player-card:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .player-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .form-guide {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
        }
        .form-indicator {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
        }
        .win { background: #4CAF50; }
        .draw { background: #FFC107; }
        .loss { background: #F44336; }
        footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 20px;
            margin: 5px 10px 5px 0;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
            color: white;
        }
        .contact-info {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--secondary-color);
        }
        .text-justify {
            text-align: justify;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .team-flag {
                width: 60px;
                height: 40px;
            }
            .stat-number {
                font-size: 2rem;
            }
            .analysis-section {
                padding: 25px 15px;
            }
        }
