body:not(.block-editor-page) .vibe-coding-demo-embed {
  position: relative;
  width: 100%;
  height: 100vw; /* Square aspect ratio, adjust as needed */
  max-width: 100vw;
  min-height: 300px;
  background: #000;
  overflow: auto;
}
body:not(.block-editor-page) .vibe-coding-demo-embed canvas {
  display: block;
  width: 100%;
  height: 100%;
}
body:not(.block-editor-page) .vibe-coding-demo-embed #vibe-coding-clickCounter {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 18px;
  font-family: sans-serif;
  z-index: 1;
}
body:not(.block-editor-page) .vibe-coding-demo-embed #vibe-coding-resetBtn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  font-size: 16px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.2);
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}
body:not(.block-editor-page) .vibe-coding-demo-embed #vibe-coding-resetBtn:hover {
  background: rgba(255,255,255,0.4);
}

/* Editor preview: keep as normal block */
.block-editor-page .vibe-coding-demo-embed {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: #000;
  overflow: hidden;
}
.block-editor-page .vibe-coding-demo-embed canvas {
  width: 100%;
  height: 300px;
} 