.digital-grass-v1__wrapper {
  position: relative;
  height: 400px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: #ffffff;
}

.digital-grass-v1__content {
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.digital-grass-v1__content p {
  margin: 0;
}

.digital-grass-v1__container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  overflow: hidden;
  cursor: crosshair;
}

.digital-grass-v1__blade {
  position: absolute;
  bottom: 0;
  transform-origin: bottom center;
  transition: transform 0.1s ease-out;
}

.digital-grass-v1__tooltip {
  position: fixed;
  background-color: #1a4314;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s, transform 0.1s;
  transform: translate(-50%, -100%);
  white-space: nowrap;
  z-index: 1000;
}
