/* Скрываем стандартный курсор */
body {
  cursor: none;
}

p {
  color: red;
  font-size: 20px;
  font-family: Comic Sans MS, sans-serif;
  text-align: center;
  margin: 20px;
  padding: 20px;
  border: 1px solid black;
  border-radius: 10px;
  background-color: #f0f0f0;
}

/* Стили для летающих бабочек */
.butterfly {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.9;
  will-change: transform;
  transform-origin: center center;
  left: 0;
  top: 0;
}

.butterfly img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Стили для кастомного курсора-цветка */
.flower-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

.flower-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}
