body {
  margin: 0;
  font-family: "Georgia", serif;
  background: linear-gradient(160deg, #fff3f8, #f6d8f0, #e5d4ff);
  color: #7a4a68;
  text-align: center;
}

.container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

.title h1 {
  font-size: 40px;
  margin: 0;
}

.title .moon {
  font-size: 20px;
  color: #c98bb3;
}

.title h2 {
  font-size: 50px;
  margin: 5px 0 20px;
  color: #d47ca8;
}

.video-button {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 280px;
  height: 280px;
  margin: auto;
  box-shadow: 0 0 25px rgba(255, 150, 200, 0.5);
  cursor: pointer;
}

.video-button video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  bottom: 10px;
  width: 100%;
  color: white;
  font-size: 18px;
  text-shadow: 0 0 10px black;
}

.player {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}

.controls button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  border-radius: 50%;
  background: #ffd6ec;
  font-size: 18px;
  cursor: pointer;
}

#trackList {
  margin-top: 10px;
}

.track {
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
}

.track:hover {
  background: #ffe6f3;
}

.credits {
  margin-top: 20px;
  font-size: 12px;
}

.petals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -50px;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, #ffd6ec, #f3a9c9);
  border-radius: 50% 70% 50% 70%;
  opacity: 0.7;
  animation: fall linear infinite;
  box-shadow: 0 0 10px rgba(255, 200, 230, 0.8);
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
  }
}