@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(145deg, #0f0c29, #302b63, #24243e);
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.screen {
  padding: 40px;
  animation: fadeIn 1s ease-in-out;
}

#start-button,
button {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #ff005c;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 20px #ff005c;
  transition: transform 0.2s, background-color 0.3s;
}

#start-button:hover,
button:hover {
  transform: scale(1.1);
  background-color: #ff3366;
}

#hud {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  text-shadow: 0 0 10px #fff;
}

#question-text {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffdd57;
  text-shadow: 0 0 15px #ffdd57;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.answer {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff33;
  border-radius: 8px;
  padding: 12px;
  font-size: 1.1rem;
  color: #ccc;
  text-shadow: 0 0 5px #000;
  transition: all 0.3s ease-in-out;
}

.answer.revealed {
  background-color: #00ffae;
  color: black;
  font-weight: bold;
  box-shadow: 0 0 10px #00ffae;
  transform: scale(1.05);
}

#guess-area {
  margin-top: 20px;
}

#guessInput {
  padding: 10px;
  font-size: 1rem;
  width: 250px;
  border: 2px solid #fff;
  border-radius: 8px;
  background-color: #1e1e2f;
  color: #fff;
  outline: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
