   .agri-overlay {
       background: linear-gradient(to right, rgba(6, 78, 59, 0.95), rgba(12, 10, 9, 0.6));
   }

   .no-scrollbar::-webkit-scrollbar {
       display: none;
   }

   .no-scrollbar {
       -ms-overflow-style: none;
       scrollbar-width: none;
   }

   /* Neon Glow Effects - Green Focused */
   .text-glow {
       text-shadow: 0 0 60px rgba(201, 243, 217, 0.6);
   }

   /* Glass Card - Adjusted for Green/Stone Theme */
   .glass-card {
       background: rgba(255, 255, 255, 0.8);
       backdrop-filter: blur(12px);
       -webkit-backdrop-filter: blur(12px);
       border: 1px solid rgba(22, 163, 74, 0.1);
   }

   .dark .glass-card {
       background: rgba(12, 10, 9, 0.6);
       /* Stone-950 base */
       border: 1px solid rgba(34, 197, 94, 0.2);
   }

   .hover-glow {
       transition: all 0.3s ease;
   }

   .hover-glow:hover {
       box-shadow: 0 0 35px rgba(22, 163, 74, 0.3);
       border-color: rgba(34, 197, 94, 0.8);
       transform: translateY(-5px);
   }

   /* Transitions */
   #sidebar-menu {
       transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   }

   #sidebar-overlay {
       transition: opacity 0.4s ease;
   }

   .reveal {
       opacity: 0;
       transform: translateY(30px);
       transition: all 0.8s ease-out;
   }

   .reveal.active {
       opacity: 1;
       transform: translateY(0);
   }