* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

button, input, textarea, select, a {
  transition: all 0.3s ease-in-out;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

input, textarea, select {
  border: 1px solid #1e1e1e;
  color: #ffffff;
  border-radius: 5px;
  padding: 8px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: #2a0a37;
  outline: none;
}

button, a, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
}

.dropdown {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content {
  display: none;
  position: absolute;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

img:hover, svg:hover {
  transform: scale(1.1);
}

:focus {
  outline: none !important;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-thumb {
  background: #2a0a37;
  border-radius: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

html::-webkit-scrollbar-thumb:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

html::-webkit-scrollbar-track {
  background: transparent;
}

@media (hover: none) {
  button, a, input, textarea, select {
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
  }
}