body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: linear-gradient(135deg, #f6d365, #fda085);
  padding: 20px;
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 5px;
  margin: 20px auto;
}

.cell {
  width: 100px;
  height: 100px;
  background: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cell.taken {
  cursor: not-allowed;
}
