 :root {
            --primary-color: #3ECF06;
            --secondary-color: #09078F;
        }
        
        .gradient-text {
            color: var(--primary-color);
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .floating-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .counter {
            animation: countUp 2s ease-out;
        }
        
        @keyframes countUp {
            from { opacity: 0; }
            to { opacity: 1; }
        }