:root {
            --primary-blue: #1a237e;
            --secondary-blue: #283593;
            --accent-gold: #ffb300;
            --light-bg: #f5f7ff;
            --dark-text: #1a1a2e;
        }
        * {
            font-family: 'Noto Sans SC', sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(40, 53, 147, 0.9)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-bottom: 60px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 40px;
            max-width: 800px;
        }
        .match-prediction-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
            margin-bottom: 30px;
        }
        .match-prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .prediction-badge {
            background: linear-gradient(45deg, var(--accent-gold), #ff8f00);
            color: white;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 1.1rem;
        }
        .section-title {
            color: var(--primary-blue);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .live-score {
            background: linear-gradient(45deg, #d32f2f, #b71c1c);
            color: white;
            border-radius: 12px;
            padding: 15px;
            font-weight: 700;
            font-size: 1.2rem;
            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-card {
            border-left: 5px solid var(--accent-gold);
            background: white;
            padding: 25px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .friendlink {
            background-color: #f0f4ff;
            padding: 50px 0;
            border-top: 1px solid #e0e6ff;
            border-bottom: 1px solid #e0e6ff;
        }
        .flink {
            display: inline-block;
            background: white;
            color: var(--primary-blue);
            padding: 12px 25px;
            margin: 8px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e0e6ff;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(26, 35, 126, 0.2);
        }
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-link {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .btn-predict {
            background: linear-gradient(45deg, var(--accent-gold), #ff8f00);
            color: white;
            font-weight: 700;
            padding: 12px 35px;
            border-radius: 30px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-predict:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 179, 0, 0.3);
            color: white;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(26, 35, 126, 0.05);
        }
        .match-timeline {
            position: relative;
            padding-left: 30px;
        }
        .match-timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--accent-gold);
            border-radius: 1.5px;
        }
        .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(--primary-blue);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-gold);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .team-flag {
                width: 60px;
                height: 45px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
        }
