@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.hero {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

/* Animation for movie cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bg-yellow-50 {
    background-color: #fffbeb;
}

.bg-yellow-100 {
    background-color: #fef3c7;
}

.bg-yellow-400 {
    background-color: #f59e0b;
}

.text-yellow-400 {
    color: #f59e0b;
}

.text-yellow-500 {
    color: #f59e0b;
}

.hover\:bg-yellow-600:hover {
    background-color: #d97706;
}

.hover\:text-yellow-600:hover {
    color: #d97706;
}

.bg-yellow-500 {
    background-color: #f59e0b;
}