@tailwind base; @tailwind components; @tailwind utilities; :root { --foreground-rgb: 255, 255, 255; --background-start-rgb: 10, 10, 18; --background-end-rgb: 18, 18, 31; } body { color: rgb(var(--foreground-rgb)); background: linear-gradient( to bottom, transparent, rgb(var(--background-end-rgb)) ) rgb(var(--background-start-rgb)); min-height: 100vh; } @layer utilities { .text-gradient { @apply bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary; } .glass-panel { @apply bg-white/5 backdrop-blur-lg border border-white/10 rounded-2xl; } } /* Custom Scrollbar */ ::-webkit-scrollbar { width: 10px; } ::-webkit-scrollbar-track { background: #0a0a12; } ::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: #00f0ff; }