:root { font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; font-weight: 400; color-scheme: dark; color: rgba(255, 255, 255, 0.87); background-color: #050505; font-synthesis: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { margin: 0; display: flex; place-items: center; min-width: 320px; min-height: 100vh; overflow: hidden; } #app { width: 100%; height: 100vh; position: absolute; top: 0; left: 0; z-index: 1; } #info-panel { position: absolute; bottom: 20px; left: 20px; width: 300px; padding: 20px; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(10px); border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); z-index: 10; pointer-events: none; /* Let clicks pass through to canvas if not on text */ user-select: none; } #info-panel h1 { font-size: 1.5em; margin-top: 0; margin-bottom: 0.5em; color: #00ffff; text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); } #info-panel p { font-size: 0.9em; margin-bottom: 0.5em; color: #ccc; } #info-panel strong { color: #fff; }