html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.hazard-stripe {
  background: repeating-linear-gradient(
    -45deg,
    #ff6a00,
    #ff6a00 20px,
    #0b0b0c 20px,
    #0b0b0c 40px
  );
}

.hazard-grid {
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 48px 48px;
}

#carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
  transition: background-color 0.2s ease, width 0.2s ease;
}

#carousel-dots button[aria-current="true"] {
  background: #ff6a00;
  width: 22px;
}
