.game-container {
  text-align: center;
  max-width: 400px;
  margin: auto;
  position: relative;
}

.pyramid-image {
  width: 100%;
  margin-bottom: 20px;
}

.word-bank {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.word-item {
  background-color: #007BFF;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.pyramid-slots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.slot {
  width: 80px;
  height: 30px;
  background-color: #eee;
  border: 2px dashed #ccc;
  border-radius: 4px;
  text-align: center;
  line-height: 30px;
}
