html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #e50914;
    border-radius: 5px;
}

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

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

.comment-item {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Star rating styles */
.star {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star:hover {
    transform: scale(1.2);
}

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

.text-gray-500 {
    color: #6b7280;
}