/* Custom Animations */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

.hover\:pause-scroll:hover {
    animation-play-state: paused;
}

/* Scrollbar Hide Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Initial state for JS fade-ins */
.fade-in-section {
    /* Base classes are handled in HTML/JS, this is just a backup if needed */
}

/* Mask for Marquee */
.mask-linear-fade {
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.bg-white\/95{
    background-color: #212138 !important;
}