/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #09090b; /* zinc-950 */
}
::-webkit-scrollbar-thumb {
    background: #3f3f46; /* zinc-700 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #84cc16; /* lime-500 */
}

/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Reveal Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.marquee-container {
    animation: marquee 20s linear infinite;
}

/* Selection style overrides if Tailwind config fails */
::selection {
    background: #84cc16;
    color: #09090b;
}

/* Smooth Anchor offset fix (optional if navbar height is dynamic) */
html {
    scroll-padding-top: 80px;
}