.mouse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 350px;
  margin: 0 auto;
}
.hole {
  height: 90px;
  background: #8d6e63;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #6d4c41;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.3);
}
.mouse {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 55px;
  transition: bottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  pointer-events: none;
}
.hole.up .mouse {
  bottom: -5px;
  pointer-events: all;
}
.mouse-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 15px;
  color: #555;
}