*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100%;
  font-family: Arial, sans-serif;
  text-align: center;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  margin-bottom: 20px;
  color: rgb(109, 109, 109);
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
  justify-content: center;
  margin: 20px auto;
}

.cell {
    color: white;
  background: #222222;
  border: 2px solid #333;
  font-size: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.cell:hover {
  background: #2f2f2f;
}

.cell.taken {
  pointer-events: none;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background: #464646;
  color: rgb(176, 175, 175);
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #555;
}

#status {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #5d5c5c;
}

.winner {
  background: #fb1201 !important;
  /* box-shadow:  0 0 10px #f34f43; */
}
