.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-content {
  background: white;
  width: 95%;
  height: 90%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: black;
  z-index: 10;
}
#gameModalBody {
  flex: 1;
  overflow-y: scroll; /* atau auto */
  overflow-x: hidden;
  padding: 0;

  /* Hilangkan scrollbar di semua browser */
  scrollbar-width: none; /* Firefox */
}
#gameModalBody::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
