/* Enhanced sticky genre slider styles */
.sticky-genre-section {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Minimalistic jump animation for genre sections */
.genre-jump-animation {
    animation: minimalJump 0.4s ease-out;
}

@keyframes minimalJump {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ensure smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add spacing for sticky header */
.category-section {
    scroll-margin-top: 120px;
}

/* Enhanced backdrop blur for better readability */
.backdrop-blur-xl {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Sticky section shadow enhancement */
.sticky-genre-section.stuck {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Dark mode shadow enhancement */
.dark .sticky-genre-section.stuck {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
