@import "tailwindcss"; :root { --background: #ffffff; --foreground: #171717; } body { background: var(--background); color: var(--foreground); font-family: var(--font-inter), system-ui, -apple-system, sans-serif; } /* Smooth scrolling for anchor links */ html { scroll-behavior: smooth; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #f1f1f1; } ::-webkit-scrollbar-thumb { background: #ea580c; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: #c2410c; }