
body {
  background: #fff0f0;
  margin: 0;
  overflow: hidden;
  touch-action: none;
}

.rose-container {
  position: relative;
  width: 90vw;
  max-width: 400px;
  height: 500px;
  margin: 0 auto;
  top: 20px;
}

.petal {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, #ff4d79, #cc0044);
  border-radius: 70% 80% 60% 70%;
  cursor: grab;
  transition: transform 0.6s ease, opacity 1s ease;
  z-index: 1;
}

.petal.dragging {
  cursor: grabbing;
}

.stem {
  position: absolute;
  top: 250px;
  left: 50%;
  width: 20px;
  height: 240px;
  background: linear-gradient(to bottom, #3a5f0b, #2e4e08);
  border-radius: 10px;
  transform: translateX(-50%);
  z-index: 0;
}
