/* Custom scrollbar for horizontal lists */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Poster gradient overlay for legibility of text over key art */
.poster-gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
}

/* Checkbox accent to match the primary color */
input[type="checkbox"] {
  accent-color: #ffb2b8;
}

/* Simple fade-in for dynamically inserted content */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in {
  animation: fadeIn 0.25s ease;
}
