/* Bossa Studios — shared styles (non-Tailwind bits) */

body {
  background-color: #111111;
  color: #ffffff;
}

.scroll-hide::-webkit-scrollbar {
  display: none;
}
.scroll-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bg-halftone {
  background-image: radial-gradient(circle, #111 2px, transparent 2.5px);
  background-size: 24px 24px;
}

@keyframes shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.animate-shine {
  animation: shine 8s infinite linear;
}
