:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 100px 0;
            color: white;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        .match-prediction {
            border-left: 5px solid var(--secondary-color);
            background: var(--light-bg);
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .fixture-table tbody tr:hover {
            background-color: rgba(30, 58, 138, 0.05);
        }
        .friendlink a.flink {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .friendlink a.flink:hover {
            border-color: var(--accent-color);
            background: white;
            color: var(--secondary-color);
            transform: scale(1.03);
        }
        footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #cbd5e1;
        }
        .stat-card {
            border-top: 4px solid var(--accent-color);
        }
        .analysis-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 60px 0; }
            .display-4 { font-size: 2.5rem; }
        }
