// borsenspiel.jsx — "Catch the Monkey" weekly stock-picking contest. // A separate, gamified mini-experience: 5 predictions per week, best return wins. // Distinct visual identity (playful, energetic) vs the rest of the app. function CatchTheMonkey({ dark }) { const t = useTheme(dark); // Contest accent — use brand green but with a playful banana-yellow as the contest theme color const contestBg = dark ? '#1A1408' : '#FFF8E6'; // warm cream const contestInk = dark ? '#FFD66B' : '#8B6914'; const yellow = '#FFC93C'; return (