Spaces:
Running
Running
File size: 2,431 Bytes
d8c4e8f 8eaaf0d d8c4e8f 8eaaf0d d8c4e8f 8eaaf0d d8c4e8f 8eaaf0d d8c4e8f 8eaaf0d d8c4e8f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | /* Custom animations and styles */
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.5); }
50% { box-shadow: 0 0 40px rgba(251, 146, 60, 0.8); }
}
.float-animation {
animation: float 3s ease-in-out infinite;
}
.pulse-glow {
animation: pulse-glow 2s ease-in-out infinite;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, #eab308, #f97316);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, #facc15, #fb923c);
}
/* Glassmorphism effect */
.glass-effect {
background: rgba(26, 26, 26, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(250, 204, 21, 0.2);
}
/* Gradient text animation */
.gradient-text {
background: linear-gradient(90deg, #eab308, #f97316, #eab308);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: gradient-shift 3s linear infinite;
}
@keyframes gradient-shift {
to { background-position: 200% center; }
}
/* Custom hover effects */
.hover-lift {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
}
/* Loading dots */
.loading-dots {
display: inline-block;
}
.loading-dots::after {
content: '...';
animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
0%, 20% { content: '.'; }
40% { content: '..'; }
60%, 100% { content: '...'; }
}
/* Counter animation */
.counter {
transition: all 0.5s ease-out;
}
/* Modal overlay animation */
.modal-overlay {
animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Profit bar animation */
.profit-bar {
animation: growWidth 1.5s ease-out;
}
@keyframes growWidth {
from { width: 0%; }
}
/* Shimmer effect */
.shimmer {
background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.3), transparent);
background-size: 200% 100%;
animation: shimmer 2s infinite;
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
} |