/* Chroma — game-specific styles (on top of kit.css) */
.c00i-canvas { background: radial-gradient(120% 90% at 50% 0%, #17102e 0%, #0a0a12 60%); }

.tap-hint {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom) + 26px);
  transform: translateX(-50%);
  z-index: 5;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 10, 20, 0.6);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.tap-hint.show { opacity: 1; }
