/* =============================================
   BLOCK DROP – Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a2e;
  font-family: 'Nunito', sans-serif;
  touch-action: none;
}

#gameWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 375px;
  height: 667px;
  transform-origin: center center;
}

canvas {
  display: block;
  width: 375px;
  height: 667px;
  border-radius: 18px;
}
