:root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #ffc107;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-color);
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        .section-title {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 30px;
            font-weight: 700;
            color: var(--dark-color);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .flink a {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: var(--light-color);
            border-radius: 50px;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
            transition: all 0.3s;
        }
        .flink a:hover {
            background: var(--primary-color);
            color: white;
        }
        .live-score {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 20px;
            border-radius: 15px;
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 30px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding: 40px 0;
        }
        .contact-form input, .contact-form textarea {
            border-radius: 10px;
            padding: 12px;
            border: 1px solid #ced4da;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(13, 110, 253, 0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .live-score {
                font-size: 1.2rem;
            }
        }
        .analysis-img {
            border-radius: 10px;
            margin: 20px 0;
        }
        .prediction-badge {
            font-size: 1.2rem;
            padding: 10px 20px;
            border-radius: 30px;
        }
