* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: none !important;
}

img, svg, video, button, a {
  border: none;
  outline: none;
  user-select: none;
  -webkit-user-drag: none;
}

body {
  background: url('https://aethervoiddev.github.io/AetherXMB/assets/media/backgrounds/dark-background.jpg') center center / cover no-repeat fixed;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

a, button, .interactive, input, select, textarea {
  transition: all 0.3s ease-in-out;
}

a:hover, button:hover, .interactive:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 0.6s ease-out forwards;
  transform: translateY(20px);
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}