
        body { font-family: "Inter", sans-serif; scroll-behavior: smooth; }
        .glass-nav { background: rgba(26, 28, 45, 0.8); backdrop-filter: blur(12px); }
        .uni-card:hover { transform: translateY(-8px); border-color: #4CC9F0; box-shadow: 0 20px 40px -20px rgba(76, 201, 240, 0.3); }
        input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
        
        
    @keyframes marquee {
        0% { transform: translateX(0%); }
        100% { transform: translateX(-100%); }
    }
    @keyframes marquee2 {
        0% { transform: translateX(100%); }
        100% { transform: translateX(0%); }
    }
    .animate-marquee {
        animation: marquee 40s linear infinite;
    }
    .animate-marquee2 {
        animation: marquee2 40s linear infinite;
    }
    