body {
  background-color: #181818;
  color: #ddd;
  font-family: "Verdana", sans-serif;
  margin: 0;
  padding: 1rem;
}

/* Main container: horizontally centered, top-justified */
#game-container {
  margin: 0 auto; /* horizontally center */
  width: 90%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center; /* center items horizontally */
}

/* Title */
h1 {
  margin-bottom: 2rem;
  text-align: center; 
}

/* Trivia card */
#trivia-card {
  background-color: #282828;
  width: 100%;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-align: center; /* center the question and answer text */
}

/* Question text */
.question-text {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Answer text hidden initially; use a highlight color for contrast */
.answer-text {
  font-size: 1rem;
  margin-top: 1rem;
  display: none; 
  color: #9ec5fc; 
  font-style: italic;
}

/* Shared button styles (Show Answer, Next Question, Seeds) */
.btn {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

.btn:hover {
  background-color: #0056b3;
}

/* Next question button: full width for easy tapping */
.next-button {
  width: 100%;
}

/* Container for seed buttons in a single row */
#seed-container {
  display: flex;
  flex-direction: row;     /* horizontal layout */
  justify-content: space-evenly; /* space them out evenly */
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 2rem;
}

/* Each seed button ~25% width */
.seed-btn {
  width: 25%;
  min-width: 60px; /* optional min-width so they don't become too narrow */
}

/* Optional distinct background colors for each seed */
.order1-btn {
  background-color: #17a2b8; /* teal-ish */
}
.order1-btn:hover {
  background-color: #11707f;
}

.order2-btn {
  background-color: #28a745; /* green */
}
.order2-btn:hover {
  background-color: #1f7f34;
}

.order3-btn {
  background-color: #6f42c1; /* purple */
}
.order3-btn:hover {
  background-color: #5a359c;
}
