/* Netflix specific aesthetic adjustments */

.link-card {
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.link-card:hover {
    z-index: 100 !important;
}

/* Glassmorphism for the header when scrolled */
#main-header.scrolled {
    background-color: #141414;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Line clamp to limit description text */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #141414;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
