:root {
            --primary: #1a5fb4;
            --secondary: #e95420;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --success: #38b44a;
            --danger: #e95420;
        }
        body {
            font-family: 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(26, 95, 180, 0.8)), url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: var(--dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .match-card {
            border-left: 4px solid var(--primary);
        }
        .stat-card {
            border-top: 4px solid var(--secondary);
        }
        .live-badge {
            animation: pulse 1.5s infinite;
            position: absolute;
            top: 10px;
            right: 10px;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .team-flag {
            width: 40px;
            height: 40px;
            object-fit: contain;
            display: inline-block;
            vertical-align: middle;
            margin-right: 10px;
        }
        .analysis-box {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            border-left: 5px solid var(--primary);
        }
        .footer {
            background: var(--dark);
            color: #ccc;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink a.flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px;
            background: #f1f1f1;
            border-radius: 4px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        .contact-info li {
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--primary);
        }
        .seo-content {
            text-align: justify;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .seo-content h3 {
            color: var(--dark);
            margin-top: 25px;
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
