/* Reset & Base */
body {
    margin: 0;
    padding: 0;
}

/* Custom Utilities */
.stroke-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px white;
}
.stroke-text:hover {
    -webkit-text-fill-color: #ECB425;
    -webkit-text-stroke: 0px;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ECB425; 
}