.snake-layout {
  grid-template-columns: 1.25fr 1fr;
}

.canvas-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
}

#canvas {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0b1220;
  touch-action: none;
}

.dpad {
  display: grid;
  grid-template-columns: 64px 64px 64px;
  grid-template-rows: 64px 64px 64px;
  gap: 8px;
  width: max-content;
  margin: 14px auto 0;
  user-select: none;
}

.padbtn {
  width: 64px;
  height: 64px;
  padding: 0;
  font-size: 1.15rem;
}

.spacer {
  width: 64px;
  height: 64px;
}

@media (min-width: 760px) {
  .dpad {
    display: none;
  }
}

@media (max-width: 1000px) {
  .snake-layout {
    grid-template-columns: 1fr;
  }
}
