:root {
            --primary-color: #0056b3;
            --secondary-color: #ffcc00;
            --dark-color: #333;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 179, 0.9), rgba(0, 84, 179, 0.8)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .section-title {
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-bottom: 30px;
            display: inline-block;
            font-weight: bold;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .stats-box {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 20px;
        }
        .live-score {
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
        .friendlink .flink {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: var(--light-color);
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.3s ease;
            font-weight: bold;
        }
        .friendlink .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0;
        }
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        .analysis-text {
            column-count: 2;
            column-gap: 40px;
            text-align: justify;
        }
        @media (max-width: 768px) {
            .analysis-text {
                column-count: 1;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
        }
        .btn-custom {
            background: var(--secondary-color);
            color: var(--dark-color);
            font-weight: bold;
            border: none;
            padding: 10px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            background: #e6b800;
            transform: scale(1.05);
        }
        .contact-info li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }
