body {
  font-family: Roboto, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #1a1a2e;
  color: #fff;
  background-image: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
}

#game {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgb(255 255 255 / 10%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgb(0 255 255 / 30%);
}

.row {
  display: flex;
}

.cell {
  width: 100px;
  height: 100px;
  border: 2px solid #ff69b4;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  cursor: pointer;
  user-select: none;
  color: #0ff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cell:hover {
  background-color: #ff69b4;
  transform: scale(1.1);
}

.cell:active {
  background-color: #ff1493;
  transform: scale(1);
}

#status {
  margin-top: 20px;
  font-size: 1.5em;
  text-align: center;
  color: #0ff;
}