@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 100000 !important;
        background: #e8b923 !important;
        border: none !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 5px !important;
        cursor: pointer !important;
        padding: 0 !important;
    }

    .mobile-menu-toggle i {
        color: white !important;
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .nav-links, .auth-buttons {
        display: none !important;
    }

    /* Add touch feedback */
    #mobileMenu a:active {
        background: rgba(255,255,255,0.2) !important;
        transform: scale(0.98);
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background: rgba(232, 185, 35, 0.1) !important;
        border-left-color: #e8b923 !important;
    }

    /* Subtle animation when menu opens */
    #mobileMenu {
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    /* Make buttons feel more tactile */
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    #closeMenuBtn:active {
        transform: scale(0.95);
    }

    /* GLOWING LOGIN BUTTON STYLES */
    #mobileMenu .login-glow {
        position: relative !important;
        background: linear-gradient(135deg, #e8b923, #b8860b) !important;
        box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4) !important;
        transition: all 0.3s ease !important;
        overflow: visible !important;
    }

    /* Animated glow effect */
    #mobileMenu .login-glow::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #ff0066, #ff00cc, #e8b923, #2de1c2, #e8b923, #ff00cc, #ff0066);
        background-size: 400% 400%;
        z-index: -1;
        border-radius: 7px;
        animation: glowingBorder 6s ease-in-out infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Show glow on tap/hold */
    #mobileMenu .login-glow:active::before {
        opacity: 0.7;
    }

    /* Pulse animation */
    #mobileMenu .login-glow {
        animation: pulse-glow 3s ease-in-out infinite;
    }

    @keyframes pulse-glow {
        0% {
            box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4);
        }
        50% {
            box-shadow: 0 4px 25px rgba(45, 225, 194, 0.6), 0 0 40px rgba(232, 185, 35, 0.3);
        }
        100% {
            box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4);
        }
    }

    @keyframes glowingBorder {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
}

@media (min-width: 993px) {
    #mobileMenu, .mobile-menu-toggle {
        display: none !important;
    }
}
