/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #e4e4e7;
  background: #18181b;
}

/* Bit toy – full viewport */
main.bit-main {
  position: fixed;
  inset: 0;
  padding: 0;
  margin: 0;
}

.bit-toy {
  width: 100vw;
  height: 100vh;
  display: block;
  background: transparent;
  cursor: pointer;
}

.bit-flash {
  position: absolute;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  pointer-events: none;
  text-shadow: 0 0 16px currentColor, 0 0 24px currentColor;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.52s ease-out, transform 0.52s ease-out;
}

.bit-flash.yes {
  color: #66ffff;
}

.bit-flash.no {
  color: #ff6699;
}
