body {
  font-family: "Tajawal", Arial, sans-serif;
  direction: rtl;
  background: linear-gradient(135deg, #667eea, #764ba2);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  color: #fff;
}

.game-container {
  background: #0b1220;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  width: 500px;
  text-align: center;
}

button {
  padding: 10px 15px;
  font-size: 16px;
  margin: 10px;
  border: none;
  border-radius: 10px;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #4338ca;
}

input {
  padding: 8px 10px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  width: 80%;
  margin-bottom: 8px;
}

.question-box {
  background: #0e1628;
  margin: 10px 0;
  padding: 12px;
  border-radius: 10px;
  text-align: start;
}

#timer {
  font-size: 20px;
  margin: 10px 0;
  font-weight: bold;
}

#results {
  margin-top: 20px;
}