body {
  font-family: "Arial", sans-serif;
  background-color: #101010;
}

section {
  text-align: center;
  margin-top: 50px;
}

.cell {
  font-family: "Permanent Marker", cursive;
  width: 100px;
  height: 100px;
  box-shadow: 0 0 20px rgba(105, 12, 192, 0.7);
  border: 2px solid #ddd;
  cursor: pointer;
  line-height: 100px;
  font-size: 60px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cell:hover {
  background-color: rgba(224, 11, 248, 0.5);
  transform: scale(1.05);
}

.game--title {
  font-size: 50px;
  color: #f4f3f3;
  margin: 10px auto;
  text-shadow: 0 0 10px rgba(245, 4, 4, 0.5);
}

.game--container {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 5px;
  width: 320px;
  margin: 20px auto;
  background-color: #0d0d0d;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.957);
  padding: 10px;
}

.game--status {
  font-size: 30px;
  color: #fc0d09;
  margin: 20px auto;
  text-shadow: 0 0 10px rgba(215, 166, 47, 0.5);
}

.game--restart {
  background-color: #ffcc00;
  width: 200px;
  height: 50px;
  font-size: 25px;
  color: #333;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.game--restart:hover {
  background-color: #ffd633;
}

.optionBtn {
  background-color: #f80ed8;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 20px;
  margin: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.optionBtn:hover {
  background-color: #cb095a;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.playerX {
  color: red;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.playerO {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.highlight {
  background-color: rgba(249, 7, 241, 0.3);
  transition: background-color 1s ease;
  box-shadow: 0 0 20px rgba(220, 12, 185, 0.7);
}
