body {
  background: linear-gradient(180deg, #001f3f, #0f0f0f);
  color: #00ffcc;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  margin-top: 50px;
  color: #ff4500;
  text-shadow: 0 0 10px #ff4500, 0 0 20px #ff4500;
}

.garden {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin: 50px;
}

.flower {
  position: relative;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #ff0080, #000);
  border-radius: 50%;
  box-shadow: 0 20px #ff0080, 0 40px #ff0080;
  animation: glow 2s infinite alternate;
}

.flower:before,
.flower:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #00ffcc, #000);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 15px #00ffcc;
}

a {
  text-decoration: none;
}

a:hover .flower {
  box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
}

/* For unclickable flowers */
.flower.unclickable {
  pointer-events: none; /* Disables clicking */
  opacity: 0.5; /* Makes them appear slightly dimmed */
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080;
  }
  100% {
    box-shadow: 0 0 30px #ff4500, 0 0 60px #ff4500;
  }
}

.back-to-home {
  display: block;
  text-align: center;
  margin: 30px auto;
  color: #00ffcc;
  font-size: 1.2rem;
  text-decoration: underline;
}

/* Animation for the stars */
@keyframes twinkling {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.star {
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkling 1.5s infinite alternate;
}
.star:nth-child(1) { top: 50px; left: 100px; animation-delay: 0s; }
.star:nth-child(2) { top: 200px; left: 150px; animation-delay: 0.5s; }
.star:nth-child(3) { top: 400px; left: 300px; animation-delay: 1s; }
.star:nth-child(4) { top: 100px; left: 450px; animation-delay: 1.5s; }

/* Butterfly styling */
.butterfly {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url('butterfly.png'); 
  background-size: cover;
  animation: flutter 2s ease-in-out infinite;
}
@keyframes flutter {
  0% { top: 50px; left: 50px; transform: rotate(0deg); }
  100% { top: 300px; left: 500px; transform: rotate(360deg); }
}
