body {
  font-family: 'Inter', sans-serif;
  background-color: #f0f4f8;
  color: #374151;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 1rem;
}

#gameContainer {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 800px;
  margin: 2rem auto;
}

#sceneImage {
  width: 100%;
  height: 250px;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  object-fit: cover;
  border-top: 3px solid #2563eb; /* Blue border at the top */
}

#storyText {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* Choice buttons */
#choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.choiceButton {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background-color: white;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.choiceButton:hover {
  background-color: #f9fafb;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.choiceButton img {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.choiceButton.correct-choice {
  background-color: #dcfce7;
  border-color: #22c55e;
  color: #166534;
}

.choiceButton:disabled {
  opacity: 0.8;
  cursor: pointer;
  background-color: #f3f4f6;
}

.choiceButton.fully-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none; /* Prevents hover/click effects */
}


/* Feedback container */
#feedback {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

#feedback.correct {
  background-color: #dcfce7;
  border: 1px solid #4ade80;
}

#feedback.bobby {
  background-color: #fee2e2;
  border: 1px solid #f87171;
}

#feedbackImage {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
}

#feedbackText {
  font-size: 1rem;
  line-height: 1.6;
}

/* Action buttons (Continue/Retry) */
#continueButton {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#continueButton.continue {
  background-color: #2563eb;
}

#continueButton.continue:hover {
  background-color: #1d4ed8;
}

#continueButton.retry {
  background-color: #ef4444;
}

#continueButton.retry:hover {
  background-color: #dc2626;
}

.hidden {
  display: none !important;
}
