Using Moebius Strip using TikZ I can draw a perfect Moebius strip.

How can I add a layer of boxes and corresponding lines to achieve the following?

EDIT: I managed to put a box inside and draw a line, but moving the box moves the moebius strip as well. How can I move the boxes to a different layer?
\documentclass{beamer}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usepackage{xcolor}
\definecolor{chamois}{RGB}{255,255,240}
\definecolor{darkbrown}{RGB}{124,79,0}
\newcommand{\strip}[1]{%
\shadedraw[very thick,top color=chamois,bottom color=darkbrown,rotate=#1]
(0:2.8453) ++ (-30:1.5359) arc (60:0:2)
-- ++ (90:5) arc (0:60:2) -- ++ (150:3) arc (60:120:2)
-- ++ (210:5) arc (120:60:2) -- cycle;}
%: \MoebiusStrip{<text1>}{<text2>}{<text3>}
\newcommand{\MoebiusStrip}[3]{%
\begin{scope} [transform shape]
\strip{0}
\strip{120}
\strip{-120}
\draw (-60:3.5) node[scale=6,rotate=30] {#1};
\draw (180:3.5) node[scale=4,rotate=-90]{#3};
% redraw the first strip after clipping
\clip (-1.4,2.4)--(-.3,6.1)--(1.3,6.1)--(5.3,3.7)--(5.3,-2.7)--cycle;
\strip{0}
\draw (60:3.5) node [gray,xscale=-4,yscale=4,rotate=30]{#2};
\end{scope}}
\begin{document}
\frame{
\begin{center}
\begin{tikzpicture} [scale=0.75, every node/.style={transform shape},
mybox/.style={rectangle,rounded corners,xshift=1cm,yshift=1cm,minimum width=35mm, minimum height=22.5mm},
topline/.style={mybox,red,align=center,draw=red,very thick,font=\bfseries},
]
\MoebiusStrip{~}{~}{~};
\node (a) at (-9,4) [topline] {X};
\node (center) at (0,0){};
\draw(a.south east) -- (center.west);
\end{tikzpicture}
\end{center}
}
\end{document}


positioninglibrary and place the nodes with it in relation, where thenode distanceis the space between the nodes. With thepositioninglibrary, you can also use theon gridoption which measures thenode distancebetween the center anchors of the nodes. Then you have the\matrix(and its library) where you can place nodes in a matrix, very much grid-like. With the name of the node and a suitable anchor, you can let the lines end very specifically. The coordinates on the strip are very easy to specify manual. – Qrrbrbirlbel Jul 07 '13 at 10:53