:root {
            --primary-green: #006400;
            --secondary-gold: #FFD700;
            --accent-blue: #0057B7;
            --dark-bg: #0A290A;
            --light-bg: #F8F9FA;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
            border-radius: 4px;
            margin: 0 2px;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-gold) !important;
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 41, 10, 0.85), rgba(0, 100, 0, 0.8)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .section-title {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }
        .feature-card:hover .icon-box {
            transform: rotateY(180deg) scale(1.1);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-green), var(--accent-blue));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 100, 0, 0.2);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 100, 0, 0.3);
            color: white;
        }
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.7rem;
        }
        .footer-links a:hover {
            color: var(--secondary-gold);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
            color: white;
        }
        .social-icons a:hover {
            background: var(--secondary-gold);
            transform: translateY(-3px);
            color: var(--dark-bg);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px;
            background: rgba(255,255,255,0.9);
            border-radius: 6px;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,100,0,0.1);
        }
        .flink:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,100,0,0.2);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .navbar-nav {
                background: rgba(10, 41, 10, 0.95);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 10px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .player-card {
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease;
        }
        .player-card:hover {
            transform: scale(1.03);
        }
        .player-card img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover img {
            transform: scale(1.1);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-green), var(--secondary-gold));
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-left: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -38px;
            top: 5px;
            width: 16px;
            height: 16px;
            background: var(--secondary-gold);
            border: 3px solid var(--primary-green);
            border-radius: 50%;
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            max-height: 80px;
            object-fit: contain;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
