html,body{margin:0;font-family:sans-serif;width:100%;height:100%}
  body{display:flex;overflow:hidden;background:#fff}

  #game-container {
    width: 1260px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: white;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
  }

  #screen{
    display:block;
    background:white;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
  }

  #click-to-shoot{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: auto;
    z-index: 1000;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }

  #mute-button {
    position: absolute;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid rgb(148,87,235);
    background: rgba(255,255,255,0.8);
    color: rgb(148,87,235);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: all 0.2s ease;
    pointer-events: auto;
    opacity: 0;
  }

  #mute-button:hover {
    background: rgb(148,87,235);
    color: white;
    transform: translateX(50%) scale(1.05);
  }

  #mute-button:active {
    transform: translateX(50%) scale(0.95);
  }

  #mute-button.unmuted #muted-icon {
    display: none;
  }

  #mute-button.unmuted #sound-waves {
    display: block !important;
  }

  @media (max-width: 991px) {
    #game-container {
      pointer-events: none;
      user-select: none;
    }

    #click-to-shoot {
      display: none;
    }

    #mute-button {
      display: none;
    }
  }