body { margin: 0; overflow-x: hidden; background-color: #FBF9F0; color: #0f172a; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FBF9F0; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 4px; }
@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
.animate-marquee { animation: marquee 35s linear infinite; display: inline-block; }
