body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: linear-gradient(to top, #fff, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
}

.game-container {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  width: 100%;
  max-width: 360px;}

.logo-container {
  margin-bottom: 10px;
}

.logo {
  width: 80px;
  height: auto;
}

.nama-aplikasi {
  font-size: 16px;
  font-weight: bold;
  color: #004d40;
  margin-top: 8px;
  margin-bottom: 15px;
}

h1 {
  font-size: 22px;
  color: #63b27c;
  margin-bottom: 20px;
}

.question-box {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
  background: #f1f8e9;
  padding: 12px;
  border-radius: 12px;
  border: 2px dashed #81c784;
}

.options {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.options button {
  background-color: #ffb74d;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
}

.options button:hover {
  background-color: #ff9800;
  transform: scale(1.05);
}

#feedback {
  font-size: 18px;
  margin-top: 10px;
  font-weight: bold;
}

#score-info {
  font-size: 20px;
  margin-top: 10px;
  color: #004d40;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.button-group .btn {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: background-color 0.3s ease;
}

.menu-btn {
  background-color: #4fc3f7;
}

.menu-btn:hover {
  background-color: #039be5;
}

.ppdb-btn {
  background-color: #81c784;
}

.ppdb-btn:hover {
  background-color: #388e3c;
}

/* Tambahan opsional untuk layar lebih kecil */
@media (max-width: 360px) {
  .game-container {
    padding: 15px;
  }

  .question-box {
    font-size: 18px;
  }

  .options button {
    font-size: 16px;
    padding: 10px 15px;
  }

  h1 {
    font-size: 20px;
  }
}
