body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    color: #000000;
}
.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-scroll {
    display: flex;
    width: 200%;
    animation: scroll 40s linear infinite;
}
::selection {
    background-color: #D30000;
    color: #FFFFFF;
}
