:root {
            --primary-color: #0d3b66;
            --secondary-color: #f95738;
            --accent-color: #ee964b;
            --light-color: #faf0ca;
            --dark-color: #1a1a2e;
            --success-color: #4caf50;
            --info-color: #2196f3;
        }
        body {
            font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.7;
            background-color: #f8f9fa;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-bottom: 40px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: var(--primary-color);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .match-card {
            background: linear-gradient(135deg, #0d3b66 0%, #1a1a2e 100%);
            color: white;
        }
        .prediction-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .stats-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .stats-box:hover {
            background: var(--primary-color);
            color: white;
        }
        .stats-box:hover .stats-number {
            color: var(--light-color);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            background-color: var(--secondary-color);
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .analysis-box {
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
            margin-bottom: 25px;
            background-color: rgba(249, 87, 56, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .friendlink a {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: #f0f0f0;
            border-radius: 6px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .friendlink a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 60px 0 20px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--accent-color);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 6px;
        }
        .btn-primary:hover {
            background-color: #0a2d4d;
            border-color: #0a2d4d;
        }
        .btn-danger {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 6px;
        }
        .btn-danger:hover {
            background-color: #e04a2d;
            border-color: #e04a2d;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(13, 59, 102, 0.05);
        }
        .table thead th {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                text-align: center;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
            .stats-number {
                font-size: 2rem;
            }
        }
