        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-color: #000;
            color: #fff;
        }

        .font-orbitron {
            font-family: 'Poppins', sans-serif;
        }

        nav,
        footer {
            font-family: 'Inter', sans-serif;
        }

        .nav-glass {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            /* Jelly-like elastic transition */
            transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
            will-change: background-color, backdrop-filter, padding, border-radius, border-color;
            border: 1px solid rgba(255, 255, 255, 0);
        }

        .pill-nav {
            margin: 0.5rem auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            border-radius: 9999px;
            max-width: 95%;
            background: rgba(10, 10, 10, 0.9);
            /* More visible "white line" border */
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 1px 1px rgba(255, 255, 255, 0.1);
        }

        @media (min-width: 768px) {
            .pill-nav {
                max-width: 80%;
            }
        }

        .event-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .event-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 0 25px rgba(249, 115, 22, 0.4);
        }

        .event-card img {
            transition: transform 0.6s ease;
        }

        .event-card:hover img {
            transform: scale(1.1);
        }

        .category-scroll {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .category-scroll::-webkit-scrollbar {
            display: none;
        }

        .animate-fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Banner Scroll Animation */
        #welcome-banner {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            max-height: 50px;
            opacity: 1;
            overflow: hidden;
        }

        #welcome-banner.scrolled {
            max-height: 0;
            opacity: 0;
            transform: translateY(-100%);
        }
    
