 body {
        background-color: #1e1e2f;
        font-family: sans-serif;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
      }
      .wrapper {
        text-align: center;
      }
      .game-info {
        font-size: 24px;
        margin-bottom: 15px;
      }
      .tic-toc-toe {
        display: grid;
        grid-template-columns: repeat(3, 100px);
        gap: 10px;
        margin-bottom: 20px;
      }
      .box {
        height: 100px;
        width: 100px;
        background: #2d2d44;
        font-size: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border: 2px solid #aaa;
      }
      .box.win {
        background-color: #00b894;
        color: #000;
        font-weight: bold;
      }
      .btn {
        padding: 10px 20px;
        font-size: 18px;
        background-color: #00cec9;
        border: none;
        color: white;
        border-radius: 5px;
        cursor: pointer;
      }
      .btn:hover {
        background-color: #0984e3;
      }