/* Hide Scrollbar tapi tetap bisa scroll */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animasi Kustom untuk Gallery */
.gallery-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
    z-index: 10;
}