/* Smooth Scroll for Navigation */
html { scroll-behavior: smooth; }

/* The Marquee Ticker Animation */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

/* Global Button Hover Smoothing */
button, a { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }