| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer base { | |
| body { | |
| @apply bg-deep-bg text-white overflow-x-hidden; | |
| background-image: | |
| radial-gradient(circle at 50% 0%, rgba(188, 19, 254, 0.15) 0%, transparent 50%), | |
| radial-gradient(circle at 0% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%); | |
| } | |
| } | |
| /* Custom Scrollbar */ | |
| ::-webkit-scrollbar { | |
| width: 8px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #050511; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #1a1a2e; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #00f3ff; | |
| } | |