:root {
            --primary-color: #1e3a8a;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            background-color: #fff;
        }
        .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-1556056504-5c7696c4c28d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .section-title {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 10px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .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;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #162f6d;
            border-color: #162f6d;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color), #3b82f6);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 20px;
        }
        .flink {
            display: inline-block;
            background: #f1f5f9;
            color: var(--primary-color);
            padding: 12px 24px;
            margin: 8px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #cbd5e1;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .live-score {
            background: #fee2e2;
            border-left: 5px solid var(--secondary-color);
            padding: 15px;
            margin: 15px 0;
            border-radius: 8px;
        }
        footer {
            background-color: var(--dark-color);
            color: #cbd5e1;
            padding: 40px 0 20px;
        }
        .footer-link {
            color: #94a3b8;
            text-decoration: none;
        }
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(30, 58, 138, 0.05);
        }
        .analysis-box {
            background: #f0f9ff;
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
            border-left: 4px solid var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 80px 0; }
            .section-title { font-size: 1.8rem; }
            .flink { display: block; margin: 10px auto; width: 80%; text-align: center; }
        }
