/* style.css */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent; 
}
::-webkit-scrollbar-thumb {
    background: #e5e7eb; 
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
    background: #3f3f46; 
}
::-webkit-scrollbar-thumb:hover {
    background: #d1d5db; 
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #52525b; 
}

/* Hide initial state for GSAP */
.gs-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Typography tweaks */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
    /* Duplicate content logic needs it to scroll half its width */
}
