@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(ellipse at center, #0b0c1d 0%, #000000 100%);
  color: #88ccff;
  text-align: center;
  margin: 0;
  padding: 20px;
}

h1 {
  color: #ffffff;
  font-size: 3rem;
  text-shadow: 0 0 10px #00f0ff;
}

#egg {
  width: 180px;
  cursor: pointer;
  animation: heartbeat 1.5s infinite, glow 2s infinite alternate;
  margin-top: 20px;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes glow {
  0% { filter: drop-shadow(0 0 5px #33ccff); }
  100% { filter: drop-shadow(0 0 15px #33ccff); }
}

button {
  padding: 10px 20px;
  margin: 10px;
  background-color: #1e2a3a;
  color: #88ccff;
  border: 2px solid #33ccff;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 10px #00f0ff33;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #293d52;
}

.shop-item {
  display: inline-block;
  margin: 10px;
  background-color: #111827;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 12px #1f2c44;
}

.shop-egg {
  width: 80px;
  height: auto;
}

input[type="text"] {
  padding: 8px;
  border-radius: 8px;
  border: none;
  margin-right: 10px;
}
#chuckle {
  margin-top: 20px;
  width: 300px;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

/* Optional: floating effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}


