body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #ece9e6, #ffffff);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#game-container {
  width: 90%;
  max-width: 700px;
  background: white;
  padding: 2em;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

h1 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #333;
}

.statement-block {
  background-color: #f9f9f9;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 1em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  font-size: 1.1em;
}

input[type="radio"] {
  margin-right: 0.8em;
  transform: scale(1.4);
}

input[type="text"] {
  width: 90%;
  padding: 0.8em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1em;
}

button {
  padding: 0.75em 1.5em;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1em;
}

button:hover {
  background-color: #45a049;
}
button:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
}
#submit-btn:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
}
#submit-btn {
  background-color: #4CAF50; /* or your preferred color */
  color: white;
  cursor: pointer;
}

#results {
  margin-top: 1.5em;
  padding: 1em;
  background: #e8f5e9;
  border-left: 5px solid #4CAF50;
  font-size: 1.1em;
  text-align: left;
  border-radius: 8px;
}

#scoreboard {
  margin-top: 2em;
  font-size: 1.3em;
  color: #333;
}
