:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffc107;
            --dark-bg: #212529;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            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(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 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: 10rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 45px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-green);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .bg-dark-green {
            background-color: var(--primary-green);
        }
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #155724;
            border-color: #155724;
            transform: scale(1.05);
        }
        .btn-outline-light:hover {
            color: var(--primary-green);
        }
        .icon-box {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        .flink {
            color: var(--text-dark);
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            background-color: #f1f1f1;
            transition: all 0.3s;
            display: inline-block;
            margin: 5px;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding-top: 3rem;
        }
        .footer a {
            color: #adb5bd;
            transition: color 0.3s;
            text-decoration: none;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--primary-green);
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
        }
        .player-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .player-card:hover {
            border-color: var(--primary-green);
        }
        .academy-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-gold);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
