:root {
            --primary-dark: #0a2e5c;
            --primary-light: #1e6fd9;
            --accent-warning: #ffc107;
            --accent-success: #28a745;
            --neutral-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 46, 92, 0.85), rgba(10, 46, 92, 0.9)), url('https://images.unsplash.com/photo-1598880940080-ff9a29891b85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0;
            margin-bottom: 3rem;
        }
        .team-logo {
            max-width: 120px;
            height: auto;
            transition: transform 0.3s ease;
        }
        .team-logo:hover {
            transform: scale(1.1);
        }
        .prediction-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            overflow: hidden;
            margin-bottom: 2rem;
        }
        .prediction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        .stat-bar {
            height: 25px;
            border-radius: 12px;
            margin: 1rem 0;
            overflow: hidden;
        }
        .live-badge {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-icon {
            font-size: 2.5rem;
            color: var(--primary-light);
            margin-bottom: 1rem;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            background-color: var(--neutral-light);
            border-radius: 50px;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .friendlink a.flink:hover {
            background-color: white;
            border-color: var(--primary-light);
            color: var(--primary-light);
            box-shadow: 0 5px 15px rgba(30, 111, 217, 0.2);
        }
        footer a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--accent-warning) !important;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
            border-radius: 3px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
