﻿.radi-glow {
            background: radial-gradient(circle at top right, rgba(0, 85, 255, 0.08), transparent 40%),
                        radial-gradient(circle at bottom left, rgba(0, 108, 73, 0.05), transparent 40%);
        }
        .glass-nav {
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        .asymmetric-shape {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }
        .animate-bounce-slow {
            animation: bounce 3s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(-5%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
            50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
        }
