/* Pulsed web export — self-contained styles.
   The plugin canvas is a fixed 960x568 logical grid scaled into its container.
   Embed with width:100% and an aspect ratio of 960/568. */

html,
body {
  margin: 0;
  padding: 0;
  background: #0a0a0c;
  color: #e4e4e7;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.pulsed-stage {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 960 / 568;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.pulsed-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: auto;
  cursor: default;
}
