 body {
     font-family: 'Inter', sans-serif;
     -webkit-font-smoothing: antialiased;
     background-color: #ffffff;
     color: #111827;
 }

 .gradient-text {
     background: linear-gradient(135deg, #ff6801 0%, #ff8c42 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero-gradient {
     background: radial-gradient(circle at 50% 0%, rgba(255, 104, 1, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
 }

 .smooth-transition {
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .glass-card {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 /* Hide scrollbar for clean look */
 ::-webkit-scrollbar {
     width: 8px;
 }

 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
     background: #cbd5e1;
     border-radius: 4px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: #94a3b8;
 }
