/* ============================================
   Rhombix Technologies - Static Website Styles
   ============================================ */

/* Base */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar hiding for infinite scrollers */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Infinite scroll animations */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.animate-scroll {
  animation: scroll 40s linear infinite;
}

.animate-scroll-reverse {
  animation: scrollReverse 40s linear infinite;
}

/* Range slider accent color */
input[type="range"] {
  accent-color: #2563eb;
}

/* Focus ring for select/input consistency */
select:focus, input:focus, textarea:focus {
  outline: none;
}
