:root {
            --primary-color: #0a3d62;
            --secondary-color: #1e90ff;
            --accent-color: #ff6b6b;
            --light-color: #f8f9fa;
            --dark-color: #333;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            line-height: 1.8;
            color: #444;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
            padding: 150px 0;
            color: white;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--primary-color);
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .btn-custom {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            transform: scale(1.05);
        }
        .live-score {
            background: var(--dark-color);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .flink a {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: white;
            border-radius: 8px;
            text-decoration: none;
            color: var(--primary-color);
            border: 2px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        .flink a:hover {
            background: var(--secondary-color);
            color: white;
        }
        footer {
            background: var(--primary-color);
            color: white;
            padding: 40px 0 20px;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--accent-color);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--secondary-color);
        }
        .analysis-box {
            background: white;
            border-left: 5px solid var(--accent-color);
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 0 10px 10px 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 20px;
                text-align: center;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
