/* 
=========================================
  NXR Foundation — Custom Animations
  Tailwind CSS handles the layouts & theme.
=========================================
*/

/* Custom Scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: #ffffff #000000;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
}

/* Infinite Horizontal Marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 25s linear infinite;
  padding-right: 80px;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Custom Scroll Reveal Classes */
.reveal-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
