* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
        body {
            font-family: 'Helvetica Neue', 'Segoe UI', Arial, 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
        }
        header {
            background: linear-gradient(to right, #1a2980, #26d0ce);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-link {
            position: relative;
            padding: 0.5rem 1rem;
            font-weight: 500;
        }
        .nav-link:hover {
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #ffd700;
            transition: all 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 2rem;
        }
        .prediction-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin: 1.5rem 0;
            transform: translateY(0);
        }
        .prediction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: contain;
            background: white;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
        }
        .flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
            margin: 0.5rem;
            color: #2d3748;
            text-decoration: none;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: #e2e8f0;
            border-color: #4299e1;
            transform: scale(1.05);
        }
        .analysis-section {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            margin: 3rem 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        }
        .footer-links a {
            position: relative;
            padding-left: 1.5rem;
        }
        .footer-links a::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #4299e1;
            font-size: 0.8rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .analysis-section {
                padding: 1.5rem;
            }
            .navbar-container {
                padding: 0 10px;
            }
        }
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .prediction-card {
                padding: 1.5rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
        }
        .text-gradient {
            background: linear-gradient(45deg, #1a2980, #26d0ce);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-primary {
            background: linear-gradient(45deg, #1a2980, #26d0ce);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(26, 41, 128, 0.3);
        }
