#gameLoaderSection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px); 
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #gameLoaderContainer {
    width: 80%;
    height: 90%;
    overflow: none;
    border-radius: 5px;
  }
  
  #gameFrame {
    width: 100%;
    overflow: none;
    height: 100%;
    background-color: #000000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  
  .gameBar {
    display: block;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-right: auto;
    background-color: var(--accent);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: var(--text-color);
  }

  .button-group {
    display: flex;
    gap: 10px;
  }
  
  .gameBarButton {
    cursor: pointer;
    transition: opacity 0.3s;
    transition: opacity 0.3s;
    margin-left: 9px;
    margin-right: 9px;
    transition: filter 0.3s ease;
  }
  
  .gameBarButton:hover {
    filter: brightness(10%) saturate(0%);
  }

  
  .undoExpandBtn {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999; 
    border-radius: 25%;
    padding: 10px;
    padding-bottom: 5px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6); 
    transition: 150ms;
  }

  .undoExpandBtn:hover {
    background-color: rgb(65, 65, 65); 
  }

  


  
  .no-scroll {
    overflow: hidden;
  }




  span {
    font-weight: 500;
    font-family: "Gsans", sans-serif;
  }