:root {
            --primary-blue: #0d47a1;
            --secondary-yellow: #ffd600;
            --dark-green: #006400;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
            --accent-red: #c62828;
        }
        body {
            font-family: 'Helvetica Neue', 'Segoe UI', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--dark-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(0, 100, 64, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 60px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 25px;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .card-hover {
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.15);
        }
        .match-prediction {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            border: 3px solid white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .live-badge {
            background-color: var(--accent-red);
            animation: pulse 2s infinite;
            border-radius: 30px;
            padding: 5px 15px;
            font-size: 0.9rem;
            display: inline-block;
            margin-left: 10px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-box {
            background: var(--light-gray);
            border-left: 5px solid var(--primary-blue);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 50px 0 20px;
        }
        .friendlink a.flink {
            display: inline-block;
            background: #f1f1f1;
            color: #333;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .analysis-section {
            background-color: #f9f9f9;
            border-top: 5px solid var(--secondary-yellow);
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
        }
        .history-timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--dark-green);
            margin: 30px 0;
        }
        .history-timeline-item {
            margin-bottom: 30px;
            position: relative;
        }
        .history-timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--dark-green);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--dark-green);
        }
        .btn-custom {
            background: linear-gradient(to right, var(--primary-blue), var(--dark-green));
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            background: linear-gradient(to right, var(--dark-green), var(--primary-blue));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .img-responsive {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .img-responsive:hover {
            transform: scale(1.02);
        }
