body {
font-family: 'Inter', sans-serif;
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
@keyframes scroll {
from { transform: translateX(0); }
to { transform: translateX(-100%); }
}
.animate-marquee {
animation: scroll 60s linear infinite;
}
.group:hover .animate-marquee {
animation-play-state: paused;
}
/* Smooth accordion transition */
.accordion-content {
transition: grid-template-rows 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar for clean aesthetic */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #fff;
}
::-webkit-scrollbar-thumb {
background: #e2e8f0;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #cbd5e1;
}
