.mobile-preview-frame {
  width: 375px;          /* typische iPhone-Breite */
  height: 812px;         /* typische iPhone-Höhe */
  border-radius: 32px;   /* abgerundete Ecken wie ein Smartphone */
  overflow: hidden;      /* schneidet Inhalte außerhalb ab */
  border: 1px solid #ccc;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: #000;
}

/* Das eigentliche iFrame */
.mobile-preview-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}

/* ------------------------- */

#mobileDevice {
  width: 375px;
  height: 812px;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  touch-action: manipulation; /* wichtig! */
  -webkit-user-select: none;
}