:root {
            --primary-green: #0a5c36;
            --secondary-gold: #d4af37;
            --accent-blue: #1e3a8a;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-green);
        }
        .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') center/cover no-repeat;
            color: white;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            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;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .btn-primary-custom {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #084427;
            border-color: #084427;
            transform: scale(1.05);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-gold);
            border-color: var(--secondary-gold);
            color: #000;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: #b8941f;
            border-color: #b8941f;
            color: #000;
            transform: scale(1.05);
        }
        .nav-custom {
            background-color: rgba(255,255,255,0.95);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            padding: 15px 0;
        }
        .nav-custom.scrolled {
            padding: 8px 0;
            background-color: white;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--dark-text) !important;
            margin: 0 10px;
            position: relative;
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--primary-green) !important;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        .footer {
            background-color: #0d281c;
            color: #ccc;
            padding-top: 60px;
            padding-bottom: 30px;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .footer-title {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary-gold);
        }
        .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;
        }
        .social-icons a:hover {
            background: var(--secondary-gold);
            color: #000;
            transform: translateY(-3px);
        }
        .flink {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 15px;
            display: block;
            color: #ccc;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 15px;
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--secondary-gold);
            color: white;
            transform: translateY(-5px);
        }
        .stats-box {
            background: white;
            border-radius: 12px;
            padding: 30px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }
        .stats-box:hover {
            transform: translateY(-10px);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: #666;
            margin-top: 10px;
        }
        .player-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            background: white;
        }
        .player-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .player-img {
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .player-card:hover .player-img {
            transform: scale(1.05);
        }
        .sponsor-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            text-decoration: none;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--secondary-gold);
            color: #000;
        }
