:root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #198754;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(25, 135, 84, 0.8)), url('https://images.unsplash.com/photo-1577223625818-75bc1f2ac0e5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }
        .match-card {
            border-left: 5px solid var(--primary-color);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        .flink {
            display: inline-block;
            background: var(--light-color);
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 50px;
            text-decoration: none;
            color: var(--dark-color);
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding-top: 3rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .live-badge {
            animation: pulse 2s infinite;
            border-radius: 50px;
            padding: 5px 15px;
            font-size: 0.8rem;
        }
        @keyframes pulse {
            0% { background-color: #dc3545; }
            50% { background-color: #bb2d3b; }
            100% { background-color: #dc3545; }
        }
        .analysis-box {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-radius: 15px;
            padding: 2rem;
            border-left: 8px solid var(--accent-color);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                text-align: center;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .team-logo {
                width: 60px;
                height: 60px;
            }
        }
