:root {
            --primary-color: #1a4b8c;
            --secondary-color: #c8102e;
            --accent-color: #fec310;
            --light-bg: #f8f9fa;
            --dark-bg: #212529;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 75, 140, 0.85), rgba(26, 75, 140, 0.9)), 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;
            color: white;
            padding: 100px 0;
            margin-bottom: 40px;
        }
        .match-badge {
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
        }
        .prediction-card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
        }
        .prediction-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        .prediction-header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }
        .odds-badge {
            background-color: var(--accent-color);
            color: #333;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .live-score {
            background-color: #e9ecef;
            border-left: 5px solid var(--secondary-color);
            padding: 15px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stat-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .stat-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 60px 0;
        }
        .friendlink {
            background-color: #f1f5f9;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 8px;
            border-radius: var(--border-radius);
            text-decoration: none;
            color: var(--primary-color);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        .footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 60px 0 30px;
        }
        .contact-info li {
            margin-bottom: 10px;
        }
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
            width: 20px;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: var(--border-radius);
        }
        .btn-primary-custom:hover {
            background-color: #153a6d;
            border-color: #153a6d;
        }
        .btn-danger-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: var(--border-radius);
        }
        .btn-danger-custom:hover {
            background-color: #a50d24;
            border-color: #a50d24;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
            color: var(--primary-color);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        .table-hover tbody tr:hover {
            background-color: rgba(26, 75, 140, 0.05);
        }
        .progress {
            height: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        .progress-bar {
            background-color: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .team-logo {
                width: 50px;
                height: 50px;
            }
        }
