* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none; 
  outline: none; 
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent; 
}

img, video, canvas, svg {
  display: block; 
  width: 100%;
  height: auto;
  object-fit: cover; 
  user-select: none; 
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: transparent; 
  user-select: auto;
}

textarea {
  resize: none; 
}

ul, ol, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit; 
  user-select: none; 
}

h1, h2, h3, h4, h5, h6, p, span, label {
  font-weight: normal; 
  font-size: inherit;
  color: inherit;
  user-select: none; 
}

body {
  user-select: none;
  -webkit-user-select: none; 
}

button {
  cursor: pointer; 
  user-select: none;
}

input[type="text"],
input[type="number"],
input[type="search"] {
  appearance: none; 
  -webkit-appearance: none;
  border-radius: 0; 
}


input::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.7;
}

::-webkit-scrollbar {
  display: none; 
}

html {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}