body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: #f0f8ff;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 32px 24px;
  text-align: center;
}
#question {
  font-size: 1.2em;
  margin-bottom: 24px;
}
.drop-box {
  border: 2px dashed #4caf50;
  border-radius: 12px;
  min-height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  background: #e8f5e9;
  transition: background 0.3s;
}
.drop-box.active {
  background: #c8e6c9;
}
.animals {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.animal {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  cursor: grab;
  border: 2px solid #bdbdbd;
  transition: border 0.2s, box-shadow 0.2s;
}
.animal:active {
  cursor: grabbing;
  border: 2px solid #4caf50;
  box-shadow: 0 2px 8px #a5d6a7;
}
#message {
  min-height: 32px;
  font-size: 1.1em;
  margin-top: 12px;
}
.celebrate {
  animation: pop 0.5s;
}
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.progress-area {
  margin: 18px 0 8px 0;
}
.progress-bar-bg {
  width: 100%;
  height: 14px;
  background: #e0e0e0;
  border-radius: 8px;
  margin-top: 4px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: #4caf50;
  border-radius: 8px;
  transition: width 0.4s;
}
.result {
  background: #fffde7;
  border: 2px solid #ffd54f;
  border-radius: 12px;
  padding: 24px 16px;
  margin-top: 24px;
  font-size: 1.1em;
  text-align: center;
}
.result .animal-emoji {
  font-size: 3em;
  margin-bottom: 8px;
  display: block;
}
.result .animal-name {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 6px;
}
.result .animal-desc {
  font-size: 1em;
  color: #6d4c41;
  margin-top: 8px;
}
@media (max-width: 600px) {
  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
  }
  .container {
    max-width: 98vw;
    padding: 12vw 2vw;
    font-size: 1.1em;
  }
  h1 {
    font-size: 1.3em;
  }
  #question {
    font-size: 1em;
  }
  .drop-box {
    min-height: 60px;
    font-size: 1em;
    padding: 10px 0;
  }
  .animals {
    gap: 8px;
  }
  .animal {
    width: 48px;
    height: 48px;
    font-size: 1.5em;
  }
  #message {
    font-size: 1em;
  }
  .result {
    font-size: 1em;
    padding: 16px 4px;
  }
  #restart-btn {
    font-size: 1em;
    padding: 10px 18px;
  }
  .progress-bar-bg {
    height: 10px;
  }
} 