/* core/anti-zoom.css */
/* ========== ANTI-ZOOM & RESET DASAR ========== */
/* Tujuan: Mencegah zoom/pinch pada mobile dan reset dasar */

/* Reset semua element */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Anti-zoom core */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
  overflow: hidden;
  height: 100%;
}

body {
  touch-action: pan-x pan-y;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overscroll-behavior: none;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f5f5;
}

/* Prevent drag on all elements */
* {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Disable double-tap zoom on mobile */
@media (hover: none) and (pointer: coarse) {
  html {
    touch-action: pan-x pan-y;
  }
  * {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
}