/* css/style.css */

/* 1. Custom Scrollbar (Webkit browsers like Chrome/Safari) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f172a; /* Dark Blue/Black */
}

::-webkit-scrollbar-thumb {
  background: #334155; /* Slate Gray */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ef4444; /* Brand Red */
}

/* 2. Fade In Animation for Movie Cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* 3. Base Font Setting */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0f172a; /* Fallback color */
}
