bossman21/cryptosight-institutional-intelligence
0
1@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');2 3body {4 font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;5}6 7/* Custom scrollbar */8::-webkit-scrollbar {9 width: 8px;10 height: 8px;11}12 13::-webkit-scrollbar-track {14 background: #1a1a1a;15}16 17::-webkit-scrollbar-thumb {18 background: #4b5563;19 border-radius: 4px;20}21 22::-webkit-scrollbar-thumb:hover {23 background: #6b7280;24}25 26/* Gradient text */27.gradient-text {28 background-clip: text;29 -webkit-background-clip: text;30 -webkit-text-fill-color: transparent;31}32 33/* Animation for subtle pulse */34@keyframes subtlePulse {35 0%, 100% {36 opacity: 1;37 }38 50% {39 opacity: 0.8;40 }41}42 43.animate-subtle-pulse {44 animation: subtlePulse 6s infinite;45}46 47/* Custom glow effect */48.glow-effect {49 position: relative;50}51 52.glow-effect::after {53 content: '';54 position: absolute;55 top: 0;56 left: 0;57 right: 0;58 bottom: 0;59 border-radius: inherit;60 box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);61 opacity: 0;62 transition: opacity 0.3s ease;63}64 65.glow-effect:hover::after {66 opacity: 1;67}