.container {
  max-width: 400px;
  margin: 40px auto;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

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

.cell {
  width: 100px;
  height: 100px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.cell:hover {
  background: #e0e0e0;
}

.cell.winner {
  background: #9E7FFF;
  color: white;
}

.status {
  margin: 15px 0;
  font-size: 1.2em;
  color: #333;
}

.reset {
  padding: 10px 20px;
  font-size: 1em;
  background: #38bdf8;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reset:hover {
  background: #22d3ee;
}
