body {
  font-family: 'Arial', sans-serif;
  background: #e9f2f9;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background: #2c3e50;
  color: white;
  padding: 15px;
  font-size: 24px;
  font-weight: bold;
}

.game-container {
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
}

.word-box {
  border: 3px solid green;
  border-radius: 12px;
  background: white;
  padding: 20px;
  min-height: 250px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.word {
  border: 2px solid #2980b9;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.word:hover {
  background: #dff9fb;
  transform: scale(1.1);
}

.info-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.score-box, .target-box {
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  font-size: 18px;
}

.score-box {
  background: #ffe4b5;
}

.target-box {
  background: #ecf9ec;
}

#target-word {
  font-size: 26px;
  color: purple;
  margin: 10px 0;
}

#play-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  background: #27ae60;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

#play-btn:hover {
  background: #2ecc71;
}

#restart-btn {
  margin-top: 25px;
  padding: 10px 25px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #2980b9;
  color: white;
  cursor: pointer;
}

#restart-btn:hover {
  background: #3498db;
}
