/* Custom Glassmorphism, Roblox Styling and Smooth Tweaks */
@keyframes bounceShort {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-bounce-short {
  animation: bounceShort 1.5s infinite ease-in-out;
}

/* Obby HUD button style */
.hud-btn {
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.hud-btn:active {
  box-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transform: translateY(3px);
}

/* Custom Scrollbar for Shop */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Smooth active press on all buttons */
button {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}