body {
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: linear-gradient(135deg, #fff0f5, #e0ffff);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  background-color: #ffffffdd;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
}

.emoji {
  width: 100px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

h1 {
  color: #cc0033;
  font-size: 1.6rem;
  margin: 20px 0;
  min-height: 3rem;
}

button {
  padding: 12px 24px;
  font-size: 1.1rem;
  background-color: #ff99cc;
  color: #000;
  border: 2px dashed #cc66ff;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.1);
}
