/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
body {
/*  cursor: none; */
}

#player-stats {
  top: 10px;
  right: 0px;
  padding: 10px 15px;
  color: #fff;
  font-family: 'Helvetica', sans-serif;
  font-size: 16px;
  border-radius: 8px;
  z-index: 1000;
}

.mouse_cursor {
  position: fixed;
  width: 32px;
  height: 52px;
  border-radius: 50%;
  pointer-events: none;
  filter: drop-shdow(5px 5px 10px #000000);
  z-index: 9999;
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade-in {
  animation: fade-in 0.6s ease-out both;
}

@keyframes fade-in-slow {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-slow {
  animation: fade-in-slow 0.8s ease-out both;
}
