| @import "tailwindcss"; |
|
|
| @theme { |
| --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
| --font-mono: 'JetBrains Mono', SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; |
| } |
|
|
| |
| ::-webkit-scrollbar { |
| width: 6px; |
| height: 6px; |
| } |
|
|
| ::-webkit-scrollbar-track { |
| background: rgba(255, 255, 255, 0.02); |
| border-radius: 4px; |
| } |
|
|
| ::-webkit-scrollbar-thumb { |
| background: rgba(255, 255, 255, 0.12); |
| border-radius: 4px; |
| } |
|
|
| ::-webkit-scrollbar-thumb:hover { |
| background: rgba(255, 255, 255, 0.25); |
| } |
|
|
| |
| @keyframes eq-scale-1 { |
| 0%, 100% { transform: scaleY(0.3); } |
| 50% { transform: scaleY(0.9); } |
| } |
|
|
| @keyframes eq-scale-2 { |
| 0%, 100% { transform: scaleY(0.45); } |
| 50% { transform: scaleY(1.0); } |
| } |
|
|
| @keyframes eq-scale-3 { |
| 0%, 100% { transform: scaleY(0.25); } |
| 50% { transform: scaleY(0.85); } |
| } |
|
|
| @keyframes eq-scale-4 { |
| 0%, 100% { transform: scaleY(0.35); } |
| 50% { transform: scaleY(0.95); } |
| } |
|
|
| .eq-bar-1 { animation: eq-scale-1 1.2s ease-in-out infinite; } |
| .eq-bar-2 { animation: eq-scale-2 1.0s ease-in-out infinite; } |
| .eq-bar-3 { animation: eq-scale-3 1.4s ease-in-out infinite; } |
| .eq-bar-4 { animation: eq-scale-4 0.8s ease-in-out infinite; } |
|
|
| |
| @keyframes glow-pulse { |
| 0%, 100% { opacity: 0.15; filter: blur(40px); } |
| 50% { opacity: 0.35; filter: blur(60px); } |
| } |
|
|
| .glow-ambient { |
| animation: glow-pulse 8s ease-in-out infinite; |
| } |
|
|
| |
| .gold-glow { |
| box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); |
| } |
|
|
| .gold-glow-hover { |
| transition: all 0.3s ease; |
| } |
| .gold-glow-hover:hover { |
| box-shadow: 0 0 25px rgba(212, 175, 55, 0.45); |
| transform: translateY(-2px); |
| } |
|
|
| .gold-text-gradient { |
| background: linear-gradient(135deg, #FFF3B0 0%, #D4AF37 50%, #9B7D24 100%); |
| -webkit-background-clip: text; |
| -webkit-text-fill-color: transparent; |
| } |
|
|
| .gold-border-glow { |
| border: 1px solid rgba(212, 175, 55, 0.2) !important; |
| box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.03), 0 0 8px rgba(212, 175, 55, 0.03); |
| } |
|
|
| .gold-gradient-bg { |
| background: linear-gradient(135deg, #D4AF37 0%, #aa7c11 100%); |
| } |
|
|
|
|