body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f9;
    flex-direction: column;
  }
  
  h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  #game {
    text-align: center;
  }
  
  #board {
    display: grid;
    grid-template-columns: repeat(10, 60px);
    grid-template-rows: repeat(10, 60px);
    gap: 2px;
    margin-bottom: 20px;
    position: relative;
  }
  
  .cell {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: relative;
    font-weight: bold;
  }
  
  .cell:nth-child(odd) {
    background-color: #f1f1f1;
  }
  
  .player {
    width: 25px;
    height: 25px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  
  .player2 {
    background-color: #e74c3c;
  }
  
  .player3 {
    background-color: #2ecc71;
  }
  
  .player4 {
    background-color: #f39c12;
  }
  
  .ladder, .snake {
    position: absolute;
    width: 8px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  
  .ladder {
    background-color: #27ae60;
  }
  
  .snake {
    background-color: #c0392b;
  }
  
  #controls {
    margin-top: 20px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
  }
  
  button:hover {
    background-color: #2980b9;
  }
  
  .player-info {
    margin-top: 20px;
    font-size: 16px;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  