.native-app--trippy-circles {
  width: 100%;
  margin: 0;
  background: #000;
}

.native-app--trippy-circles .native-package-body {
  width: 100%;
  min-height: 0;
  padding: 0;
}

.native-app--trippy-circles .trippy-circles-stage {
  position: relative;
  width: 100%;
  height: clamp(600px, 70vw, 820px);
  min-height: 600px;
  overflow: hidden;
  cursor: crosshair;
  background: #fff;
  touch-action: manipulation;
  user-select: none;
}

.native-app--trippy-circles .trippy-circles-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.native-app--trippy-circles:fullscreen,
.native-app--trippy-circles:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #000;
}

.native-app--trippy-circles:fullscreen .trippy-circles-stage,
.native-app--trippy-circles:-webkit-full-screen .trippy-circles-stage {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
}

@media (max-width: 700px) {
  .native-app--trippy-circles .trippy-circles-stage {
    height: clamp(520px, 125vw, 680px);
    min-height: 520px;
  }
}
