
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    /* Låt sidan scrolla normalt på mobil INNAN spelet startar */
    html, body {
      width: 100%;
      min-height: 100%;
      overscroll-behavior-x: none; /* Förhindra horisontell "bounce" */
      background-color: #6dcff6;
    }
    
    body {
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* Bara förhindra horisontell scroll */
      background-color: #6dcff6;
    }
    
    
