/* =====================================================================
   P I S S I N  🚽  —  Stylesheet
   ===================================================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;            /* dark surround visible on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

canvas {
  display: block;
  /* Subtle phone-bezel look on desktop */
  border-radius: 12px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 8px 60px rgba(0,0,0,0.85);
}
