* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  background: #0b0423;
  color: #fff;
  line-height: 1.6;
}

/* Container Layout */
.container {
  width: 100%;
  min-height: 100vh;
  background: #0b0423;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

/* Category Dropdown */
.category-select {
  margin-bottom: 25px;
  text-align: center;
}

select, button {
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background-color: #e91e63;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

select {
  background-color: #1f1b3a;
  color: white;
  border: 1px solid #444;
}

/* Question Box */
#question-box {
  background: #1f1b3a;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Answer Options */
#answers-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.answer {
  padding: 12px 20px;
  background: #e91e63;
  border-radius: 8px;
  cursor: grab;
  color: white;
  transition: background 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.answer:hover {
  background: #ff4f92;
}

/* Drop Zone */
#drop-zone {
  border: 2px dashed #fff;
  padding: 35px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: #1f1b3a;
  min-height: 70px;
  width: 85%;
  max-width: 500px;
  text-align: center;
  font-size: 18px;
  color: #ccc;
  transition: border-color 0.3s ease;
}

#drop-zone:hover {
  border-color: #ff4f92;
}

/* Feedback Message */
#feedback {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
}

/* Next Button */
#next-btn {
  background-color: #e91e63;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#next-btn:hover {
  background-color: #ff4f92;
}

/* Global Fix for Form Elements on Dark Backgrounds */
body, select, option, button, input {
  color: white;
}
