#tutorial-key-hint {
  --tutorial-hint-cyan: rgb(45, 212, 191);
  position: absolute;
  left: clamp(24px, 8vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
  min-width: clamp(280px, 44vw, 420px);
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 14px;
  opacity: 0.8;
  background: var(--tutorial-hint-cyan);
  border: 3px solid var(--tutorial-hint-cyan);
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.35);
}

.tutorial-key-hint__instruction,
.tutorial-key-hint__complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.tutorial-key-hint__complete {
  display: none;
  gap: 4px;
}

#tutorial-key-hint.is-complete .tutorial-key-hint__instruction {
  display: none;
}

#tutorial-key-hint.is-complete .tutorial-key-hint__complete {
  display: flex;
}

.tutorial-key-hint__tap {
  font-size: clamp(1.22rem, 3.57vw, 1.62rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.tutorial-key-hint__key {
  font-size: clamp(4.68rem, 14.45vw, 7.23rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.tutorial-key-hint__moment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.tutorial-key-hint__moment-line {
  font-size: clamp(0.99rem, 2.64vw, 1.22rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.tutorial-key-hint__complete-line {
  font-size: clamp(2.2rem, 6.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

#tutorial-key-hint[hidden] {
  display: none !important;
}
