#plugin_bounce .bounce-module {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

#plugin_bounce .bounce-stage {
  position: relative;
  height: 250px;
  overflow: hidden;
  user-select: none;
}

#plugin_bounce .bounce-shadow {
  position: absolute;
  bottom: 15px;
  left: calc(50% - 15px);
  width: 30px;
  height: 6px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  transform: scale(1);
  filter: blur(1px);
  pointer-events: none;
}

#plugin_bounce .bounce-ball {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  left: calc(50% - 20px);
  bottom: 15px;
  transform-origin: bottom center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}


