body {
       font-family: Arial, sans-serif;
       display: flex;
       justify-content: center;
       background-color: #f0f0f0;
       margin: 0;
       overflow: hidden;
       touch-action: manipulation;
     }
     .container {
       text-align: center;
       max-width: 100%;
       width: 100%;
       padding: 10px;
       box-sizing: border-box;
     }
     h1 {
       color: #333;
       font-size: 2em;
       margin: 10px 0;
     }
     #board {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       width: 300px;
       height: 300px;
       margin: 20px auto;
       border: 2px solid #333;
       background-color: #fff;
     }
     .cell {
       width: 100px;
       height: 100px;
       border: 1px solid #333;
       display: flex;
       justify-content: center;
       align-items: center;
       font-size: 2em;
       cursor: pointer;
       touch-action: manipulation;
       pointer-events: auto;
       user-select: none;
     }
     .cell.x {
       background: url('/tic-tac-toe/x.png') no-repeat center;
       background-size: 80%;
     }
     .cell.o {
       background: url('/tic-tac-toe/o.png') no-repeat center;
       background-size: 80%;
     }
     #game-over {
       margin-top: 20px;
     }
     #game-over button {
       padding: 10px 20px;
       font-size: 1em;
       background-color: #333;
       color: #fff;
       border: none;
       border-radius: 5px;
       cursor: pointer;
       touch-action: manipulation;
     }
     #leaderboard {
       margin: 20px auto;
       border-collapse: collapse;
       width: 100%;
       max-width: 100%;
     }
     #leaderboard th, #leaderboard td {
       border: 1px solid #333;
       padding: 8px;
       font-size: 1em;
     }
     #leaderboard th {
       background-color: #333;
       color: #fff;
     }
     @media (max-width: 600px) {
       h1 {
         font-size: 1.5em;
       }
       #board {
         width: 240px;
         height: 240px;
       }
       .cell {
         width: 80px;
         height: 80px;
         font-size: 1.5em;
       }
       #game-over button {
         font-size: 0.9em;
         padding: 8px 15px;
       }
       #leaderboard th, #leaderboard td {
         font-size: 0.9em;
         padding: 5px;
       }
     }
