Spaces:
Paused
Paused
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| /* Custom Neon & Glass Styles */ | |
| @layer utilities { | |
| .font-neon { | |
| font-family: 'Syncopate', sans-serif; | |
| } | |
| .hide-scrollbar::-webkit-scrollbar { | |
| display: none; | |
| } | |
| .hide-scrollbar { | |
| -ms-overflow-style: none; | |
| scrollbar-width: none; | |
| } | |
| .glass-panel { | |
| @apply bg-white/5 backdrop-blur-3xl border border-white/10; | |
| } | |
| } | |
| /* Animations */ | |
| @keyframes pulse-slow { | |
| 0%, 100% { opacity: 0.4; } | |
| 50% { opacity: 0.7; } | |
| } | |
| @keyframes liquid-drift { | |
| 0% { transform: translate(0, 0); } | |
| 50% { transform: translate(10px, -10px); } | |
| 100% { transform: translate(0, 0); } | |
| } | |
| body { | |
| background-color: #000; | |
| color: #fff; | |
| -webkit-tap-highlight-color: transparent; | |
| } | |