/* Base Overrides */
html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    background-color: #0a0a0a;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #FF6600;
    border-radius: 10px;
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.animate-slow-zoom {
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee {
    animation: marquee 100s linear infinite;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Bezier for Slider */
.cubic-bezier-custom {
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

/* Prevent layout shift from icons */
.fas, .fab {
    display: inline-block;
    width: 1.25em;
    text-align: center;
}