/* 🔒 Utility class */
.hidden {
  display: none;
}

/* 🧠 Question text */
.question {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 20px 0;
  line-height: 1.4;
}

/* 🎈 Image area for balloons/fruits/etc. */
.object-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

/* 🎈 Each object image */
.object-area img {
  width: clamp(100px, 24vw, 160px);
  height: clamp(100px, 24vw, 160px);
  border-radius: 20px;
  border: 4px solid transparent;
  transition: transform 0.3s, border 0.3s;
  cursor: pointer;
}
.object-area img:hover {
  transform: scale(1.1);
  border-color: #ffeb3b;
}

/* 🔢 Choice buttons */
.choices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.choices button {
  background-color: #fdd835;
  border: none;
  padding: 14px 24px;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.choices button:hover {
  background-color: #fbc02d;
}

/* 🌟 Stars layout container (this is the fix) */
.stars {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* 🌟 Individual star (unchanged from your working code) */
.stars .star {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url('../../assets/home/star.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin: 5px;
}
