:root {
            --primary-blue: #0d47a1;
            --light-blue: #e3f2fd;
            --accent-yellow: #ffc107;
            --dark-bg: #121212;
            --card-bg: #f8f9fa;
        }
        body {
            font-family: 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, #0d47a1, #1e88e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(30, 136, 229, 0.8)), 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: 100px 0;
            border-radius: 0 0 20px 20px;
        }
        .match-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .flag-icon {
            width: 80px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
            border: 2px solid #dee2e6;
        }
        .live-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: #dc3545;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stat-card {
            background: white;
            border-left: 5px solid var(--primary-blue);
            padding: 20px;
            border-radius: 10px;
            height: 100%;
        }
        .analysis-section {
            background-color: var(--light-blue);
            padding: 60px 0;
            border-radius: 20px;
        }
        .prediction-meter {
            height: 30px;
            border-radius: 15px;
            background: linear-gradient(90deg, #0d47a1 65%, #1e88e5 70%, #ffc107 75%, #dc3545 85%);
            position: relative;
            margin: 30px 0;
        }
        .prediction-pointer {
            position: absolute;
            top: -10px;
            width: 3px;
            height: 50px;
            background: #121212;
            transform: translateX(-50%);
        }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 8px;
            border-radius: 50px;
            text-decoration: none;
            color: var(--primary-blue);
            border: 2px solid #dee2e6;
            transition: all 0.3s;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--dark-bg);
            color: #ccc;
            padding: 50px 0 20px;
        }
        .footer a {
            color: #4dabf7;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .contact-info li {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            .flag-icon {
                width: 60px;
                height: 40px;
            }
        }
