:root {
            --primary-color: #1a237e;
            --secondary-color: #0d47a1;
            --accent-color: #ff5722;
            --light-color: #f5f5f5;
            --dark-color: #212121;
            --success-color: #4caf50;
            --warning-color: #ff9800;
            --danger-color: #f44336;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(13, 71, 161, 0.9)), url('https://images.unsplash.com/photo-1635107510862-53886e926b74?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .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: 4px;
            background: var(--accent-color);
        }
        .feature-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .match-card {
            border-left: 5px solid var(--accent-color);
            transition: all 0.3s;
        }
        .match-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }
        .prediction-badge {
            font-size: 0.9rem;
            padding: 5px 12px;
            border-radius: 20px;
        }
        .live-badge {
            animation: pulse 2s infinite;
            background-color: var(--danger-color);
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .stats-chart {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            height: 100%;
        }
        .analysis-section {
            background-color: #f5f7fa;
            padding: 60px 0;
        }
        .contact-info li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
            width: 24px;
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 40px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
            color: #555;
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-color);
            color: #ccc;
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background: var(--accent-color);
            transform: scale(1.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .article-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content h3 {
            color: var(--primary-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .article-content p {
            margin-bottom: 20px;
        }
        .table-responsive {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .table thead th {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        .img-fluid {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
