:root {
            --primary-green: #0a5c36;
            --secondary-gold: #d4af37;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            padding-top: 76px;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-green) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 92, 54, 0.85), rgba(10, 92, 54, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 6rem 0;
            margin-bottom: 3rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--primary-green);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-gold);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }
        .data-stat {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 2rem;
            border-left: 5px solid var(--secondary-gold);
        }
        .match-live {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            border-radius: 10px;
            padding: 1rem;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(238, 90, 36, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(238, 90, 36, 0); }
            100% { box-shadow: 0 0 0 0 rgba(238, 90, 36, 0); }
        }
        .flink {
            display: inline-block;
            background-color: var(--light-bg);
            padding: 10px 20px;
            margin: 5px 10px;
            border-radius: 50px;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            transform: scale(1.05);
            text-decoration: none;
        }
        footer {
            background-color: #1a1a1a;
            color: #adb5bd;
            padding-top: 3rem;
        }
        footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 1.5rem;
            margin-top: 2rem;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 92, 54, 0.1);
            color: var(--primary-green);
            font-weight: 600;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(10, 92, 54, 0.05);
        }
        .analysis-badge {
            background-color: var(--secondary-gold);
            color: #1a1a1a;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            body {
                padding-top: 68px;
            }
        }
