:root {
            --primary-green: #1e7e34;
            --secondary-yellow: #ffc107;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1598880940087-795f6c8c8c1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            text-align: center;
        }
        .match-card {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .match-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(30, 126, 52, 0.2);
        }
        .team-flag {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }
        .live-badge {
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }
        .analysis-section {
            background-color: var(--light-bg);
            padding: 5rem 0;
        }
        .prediction-meter {
            height: 25px;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
        }
        .friendlink a.flink {
            color: #6c757d;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid #dee2e6;
            transition: all 0.3s;
            display: inline-block;
            margin: 5px;
        }
        .friendlink a.flink:hover {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
            transform: scale(1.05);
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            backdrop-filter: blur(10px);
            background-color: rgba(255,255,255,0.95);
        }
        .article-content {
            text-align: justify;
            hyphens: auto;
        }
        .article-content h3 {
            color: var(--primary-green);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-yellow);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 5rem 0; }
            .team-flag { width: 60px; height: 45px; }
            .display-4 { font-size: 2.5rem; }
        }
