:root {
            --primary-color: #1a6fb3;
            --secondary-color: #d32f2f;
            --accent-color: #ffc107;
            --dark-bg: #212529;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #f8f9fa;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 33, 71, 0.85), rgba(106, 17, 17, 0.8)), url('https://images.unsplash.com/photo-1633158829558-8e42d36db7e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            margin-bottom: 3rem;
        }
        .match-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            overflow: hidden;
            margin-bottom: 2rem;
        }
        .match-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .team-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }
        .prediction-badge {
            background: linear-gradient(45deg, var(--secondary-color), #ff5722);
            color: white;
            font-weight: bold;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            display: inline-block;
        }
        .live-badge {
            background-color: #dc3545;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .data-stat {
            background: var(--light-bg);
            border-left: 4px solid var(--primary-color);
            padding: 1rem;
            margin: 1rem 0;
        }
        .analysis-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-radius: var(--border-radius);
            padding: 2rem;
            border-top: 5px solid var(--accent-color);
        }
        .flink {
            display: inline-block;
            background: var(--light-bg);
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            margin: 0.5rem;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .icon-box {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .content-area {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        @media (max-width: 768px) {
            .hero-section { padding: 4rem 0; }
            .team-logo { width: 60px; height: 60px; }
            .display-4 { font-size: 2.5rem; }
        }
        .tab-content {
            background: white;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .nav-tabs .nav-link.active {
            border-bottom: 3px solid var(--primary-color);
            font-weight: bold;
            color: var(--primary-color);
        }
        .player-card {
            text-align: center;
            padding: 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .player-card:hover {
            background-color: rgba(26, 111, 179, 0.05);
        }
        .form-guage {
            height: 10px;
            border-radius: 5px;
            background: #e9ecef;
            overflow: hidden;
            margin: 0.5rem 0;
        }
        .form-fill {
            height: 100%;
            border-radius: 5px;
        }
        .news-card {
            border-left: 3px solid var(--primary-color);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }
        .seo-text {
            font-size: 1rem;
            text-align: justify;
            hyphens: auto;
        }
