/* Дизайн гри Хрестики-нулики */
.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px auto;
  width: 100%;
  max-width: 250px;
}

.cell {
  background: #ffffff;
  border: 3px solid #1b3b5a;
  border-radius: 10px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: #1b3b5a;
  cursor: pointer;
  transition: background 0.2s;
}

.cell:active {
  background: #e0f0ff;
}

.cell.x {
  color: #2196f3;
} /* Сині хрестики */
.cell.o {
  color: #f44336;
} /* Червоні нулики */
