/* Custom CSS for Trebig AppStore Landing Page */

/* Hide scrollbar for category list but keep functionality */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Smooth page scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #2a2d35;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f4452;
}

/* 3D perspective utility for the mockup image/div */
.perspective-1000 {
    perspective: 1000px;
}

/* Custom rotate classes for the 3D effect on desktop */
@media (min-width: 1024px) {
    .-rotate-y-6 {
        transform: rotateY(-6deg);
    }
    .rotate-x-4 {
        transform: rotateX(4deg);
    }
}
