:root {
            --primary-green: #006400;
            --valley-green: #228B22;
            --light-green: #90EE90;
            --gold-accent: #FFD700;
            --dark-bg: #0a290a;
            --light-bg: #f8fff8;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
        }
        .navbar {
            background-color: rgba(10, 41, 10, 0.95) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(0, 100, 0, 0.1);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--gold-accent) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--gold-accent);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .hero-section {
            padding: 180px 0 120px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-section .lead {
            font-size: 1.4rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .floating-ball {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(34, 139, 34, 0.15) 0%, rgba(34, 139, 34, 0) 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        .floating-ball:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
        .floating-ball:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        .section-title {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--gold-accent));
            bottom: -10px;
            left: 15%;
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 100, 0, 0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 100, 0, 0.15);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--valley-green), var(--light-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-green), var(--valley-green));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(34, 139, 34, 0.3);
        }
        .btn-primary-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(34, 139, 34, 0.4);
            color: white;
        }
        .academy-feature {
            border-left: 4px solid var(--gold-accent);
            padding-left: 20px;
            margin-bottom: 25px;
        }
        .footer {
            background-color: var(--dark-bg);
            color: rgba(255, 255, 255, 0.85);
            padding-top: 60px;
        }
        .footer a {
            color: var(--light-green);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--gold-accent);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--valley-green);
            transform: translateY(-5px);
        }
        .friendlink {
            background-color: #f0f8f0;
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 8px;
            border-radius: 10px;
            color: var(--primary-green);
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #e0f0e0;
            transition: all 0.3s;
            text-decoration: none;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 100, 0, 0.15);
        }
        .stadium-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            .hero-section .lead { font-size: 1.2rem; }
            .floating-ball { width: 200px; height: 200px; }
        }
