body {
  background: #0b1020;
  font-family: Arial;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #e5e7eb;
}
.game-container {
  background: #111827;
  padding: 25px;
  border-radius: 20px;
  width: 380px;
  text-align: center;
  border: 1px solid #334155;
}
h1 {
  margin-bottom: 15px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.info-box {
  background: #0f172a;
  padding: 10px;
  border-radius: 10px;
}
.word {
  font-size: 42px;
  font-weight: bold;
  margin: 20px 0;
}
.buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  transition: 0.2s;
  color: black;
}
button:hover {
  transform: scale(1.05);
}

#message {
  margin-top: 10px;
  height: 20px;
}
