body {
  margin: 0;
  padding: 0;
  background: linear-gradient(145deg, #ffeb3b, #ff9800);
  font-family: "Comic Neue", "Comic Sans MS", cursive, sans-serif;
  font-weight: 500;
  color: #3e2723;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  overflow: hidden;
}

.pond {
  position: relative;
  width: 200px;
  height: 100px;
  margin-bottom: 1rem;
}

.duck {
  width: 100px;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  animation: rock 3s ease-in-out infinite;
  z-index: 2;
}

.water {
  width: 100%;
  height: 40px;
  background: radial-gradient(
    circle at center,
    #b2ebf2 30%,
    #4dd0e1 100%
  );
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  animation: ripple 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes rock {
  0%, 100% {
    transform: translateX(-50%) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) rotate(5deg);
  }
}

@keyframes ripple {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.05);
  }
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.tag {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
  position: absolute;
  bottom: 10px;
  font-size: 0.9rem;
  color: #4e342e;
  font-weight: 500;
}

.noise {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 1.2rem;
  opacity: 0.7;
  font-weight: 500;
  animation: floaty 6s ease-in-out infinite alternate;
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}