body {
  background: #ffd4d8;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: #333;
  user-select: none;
  margin: 0;
  height: 100vh;
  overflow-x: hidden;
}

.container {
  text-align: center;
  max-width: 400px;
}

img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.prompt {
  font-size: 1.5rem;
  font-weight: 600;
}

.small-text {
  font-size: 0.9rem;
  color: #555;
  margin-top: 6px;
}

.buttons {
  margin-top: 20px;
}

button {
  background-color: #fff;
  border: 2px solid #f06292;
  color: #f06292;
  border-radius: 8px;
  padding: 10px 25px;
  font-size: 1.1rem;
  margin: 0 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
  background-color: #f06292;
  color: white;
}

/* No button position and transition for smooth jump */
#noBtn {
  position: relative;
  transition: top 0.3s ease, left 0.3s ease;
}

/* Teddy animation on final screen */
.teddy {
  margin: 2rem auto 1rem auto;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50% 50% 45% 45%;
  position: relative;
  animation: float 3s ease-in-out infinite;
}
.ear {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #441c11;
  border-radius: 50%;
  top: -15px;
}
.ear.left { left: 0; }
.ear.right { right: 0; }

.face {
  position: absolute;
  width: 80px;
  height: 90px;
  background: #fdd8c0;
  border-radius: 50%;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.eye {
  width: 18px;
  height: 18px;
  background: #442211;
  border-radius: 50%;
  position: absolute;
  top: 25px;
}
.eye.left { left: 15px; }
.eye.right { right: 15px; }
.nose {
  width: 12px;
  height: 8px;
  background: #442211;
  border-radius: 50% / 100%;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}
.mouth {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 40px;
  border-bottom: 3px solid #442211;
  border-radius: 20px;
  transform: translateX(-50%);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-20px); }
}

/* Hearts animation */
.heart {
  position: fixed;
  bottom: 30px;
  width: 30px;
  height: 30px;
  background: url('https://i.imgur.com/jBTCMae.png') no-repeat center center / contain; 
  animation: floatHearts 5s linear infinite;
  opacity: 0.8;
}

@keyframes floatHearts {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  100% { transform: translateY(-400px) translateX(50px); opacity: 0; }
}