body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

#game-container {
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#character img {
  max-width: 150px;
  height: auto;
  animation: float 2s ease-in-out infinite;
}

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

#food-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.food-item {
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  background-color: #e0e0e0;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.1s;
}

.food-item:hover {
  background-color: #d0d0d0;
  transform: scale(1.05);
}

#hunger-meter {
  width: 300px;
  height: 30px;
  background-color: #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto;
}

#hunger-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #87CEEB, #00BFFF);
  transition: width 0.5s;
}

#status-message {
  margin-top: 20px;
  font-size: 18px;
  min-height: 30px;
}

#voice-container {
  display: none;
}