.tictactoe-container {
      padding: 5%;
      font-family: 'Avenir', 'Gill Sans', sans-serif;
      color: #aaa;
      align-items: left;
     
    }
    
.tictactoe-container p {
      margin: 0;
      font-size: 1rem;
    }

#board {
      display: grid;
      grid-template-columns: repeat(3, 60px);
      grid-gap: 5px;
      justify-content: left;
      padding: 5px;
    }
    .cell {
      width: 60px;
      height: 60px;
      background: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      cursor: pointer;
      position: relative;
    }
    .cell.taken { cursor: default; }
    .cell.x { color: white; }
    .o-shape {
      width: 50%;
      height: 50%;
      background-color: #0c7500;
    }
    .win { background: #555 !important; }


    /* Game Animation for Tic Tac Toe */
.cell.hint-x::after {
  content: "X";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  pointer-events: none;
}
.cell.hint-o::after {
  content: "O";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #0c7500;
  pointer-events: none;
}
