*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  color-scheme: light;
}

body {
  font-family: "Figtree", sans-serif;
  color: #000000;
  background: #ffffff;
  overflow: hidden;
}

.stage {
  position: relative;
  min-height: 100svh;
  width: 100%;
  background: #ffffff;
}

.bend-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: default;
  touch-action: none;
}

.bend-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hint {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 2rem);
  text-align: center;
  font-family: "Courier New", Monaco, Menlo, monospace;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  user-select: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .hint {
    bottom: 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
}
