:root {
            --primary-blue: #0d47a1;
            --primary-red: #c62828;
            --accent-gold: #ffb300;
            --dark-bg: #1a237e;
            --light-bg: #f5f7fa;
            --text-dark: #212529;
            --text-light: #6c757d;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            text-align: center;
            font-weight: 700;
            color: var(--dark-bg);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(13, 71, 161, 0.15);
        }
        .match-prediction-card {
            border-left: 5px solid var(--accent-gold);
        }
        .data-stat-card {
            border-top: 4px solid var(--primary-blue);
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-bg));
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
        }
        .footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            color: var(--primary-blue);
            padding: 8px 20px;
            margin: 5px 10px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .live-badge {
            display: inline-block;
            background: #e53935;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-highlight {
            background: linear-gradient(120deg, #e3f2fd 0%, #fce4ec 100%);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .stats-table th {
            background-color: var(--primary-blue);
            color: white;
            border: none;
        }
        .stats-table td {
            vertical-align: middle;
        }
        .news-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .team-logo {
                width: 50px;
                height: 50px;
            }
        }
