
/* Touch Select V1 — minimal mobile/stylus support */

#touchSelectV1Btn {
  display: none;
}

@media (max-width: 1024px) {
  body.touch-select-v1-ready canvas {
    touch-action: pan-x pan-y !important;
  }

  body.touch-select-v1-on canvas {
    touch-action: none !important;
  }

  #touchSelectV1Btn {
    display: block;
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 999999;
    min-width: 128px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, .65);
    background: rgba(15, 23, 42, .92);
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
    backdrop-filter: blur(14px);
  }

  body.touch-select-v1-on #touchSelectV1Btn {
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    color: #fff;
  }
}
