/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
  }
  
  #gameContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  
  #scoreBoard {
    color: #fff;
    font-size: 24px;
    margin-right: 20px;
    text-align: left;
    min-width: 200px;
  }
  
  #scoreBoard div {
    margin-bottom: 20px;
  }
  
  #totalScore {
    font-size: 36px;
    font-weight: bold;
  }
  
  #moveDetails,
  #moveScore {
    font-size: 24px;
  }
  
  canvas {
    background-color: #000;
    border: 2px solid #fff;
    box-shadow: 0 0 10px #000;
    border-radius: 10px;
  }