body {
  font-family: 'Comic Sans MS', cursive;
  text-align: center;
  margin-top: 60px;
  background: linear-gradient(135deg, #4379f7, #ffe0f0);
  color: #444;
  min-height: 100vh;
}

h2 {
  color: #030b41;
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px #f0f2f3;
}

#soal {
  font-size: 24px;
  margin: 20px auto;
  background: #fff;
  display: inline-block;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(7, 6, 7, 0.2);
  max-width: 80%;
}

#opsi {
  margin-top: 30px;
}

button {
  background-color: #fdfbfc;
  border: none;
  padding: 12px 25px;
  margin: 8px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 182, 193, 0.4);
}

button:hover {
  background-color: #ab91eb;
  color: white;
  transform: scale(1.1);
}

button:active {
  transform: scale(0.95);
}

#skor {
  margin-top: 40px;
  font-size: 24px;
  color: #8e24aa;
  animation: muncul 1s ease;
}

@keyframes muncul {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.emoji {
  font-size: 50px;
  animation: goyang 1.5s infinite ease-in-out;
}

@keyframes goyang {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}
