body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #fff6fb;
  text-align: center;
  margin: 0;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

.center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
}

h1 {
  color: #e84393;
  margin-top: 100px;
  font-size: 32px;
}

.instructions {
  color: #6c5ce7;
  font-size: 20px;
  margin-bottom: 20px;
}

.game-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#fruit-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.fruit-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  min-width: 100px;
  min-height: 60px;
}

.plus-sign {
  font-size: 30px;
  margin: 0 15px;
  color: #e17055;
  font-weight: bold;
}

.fruit {
  font-size: 4rem; /* Bigger emoji */
  margin: 5px;
}


#question {
  font-size: 24px;
  margin: 15px 0;
  color: #2d3436;
}

input[type="number"] {
  padding: 10px;
  font-size: 18px;
  width: 150px;
  margin-top: 10px;
  border-radius: 8px;
  border: 2px solid #fab1a0;
}

button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #6c5ce7;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #341f97;
}

#result {
  font-size: 20px;
  margin-top: 15px;
}

#stars {
  margin-top: 10px;
}

.star {
  color: gold;
  font-size: 24px;
  margin: 0 3px;
}
