-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
148 lines (124 loc) · 3.36 KB
/
styles.css
File metadata and controls
148 lines (124 loc) · 3.36 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* Brain Spark IQ - Custom Styles */
/* Developed by Big Sam */
body {
box-sizing: border-box;
}
.font-display { font-family: 'Orbitron', monospace; }
.font-body { font-family: 'Quicksand', sans-serif; }
/* Animations */
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.1); }
50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.2); }
}
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes slide-up {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
@keyframes celebrate {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
@keyframes confetti-fall {
0% { transform: translateY(-100%) rotate(0deg); opacity: 1; }
100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
@keyframes brain-pulse {
0%, 100% { transform: scale(1); filter: brightness(1); }
50% { transform: scale(1.05); filter: brightness(1.2); }
}
@keyframes progress-shine {
0% { left: -100%; }
100% { left: 100%; }
}
/* Animation Classes */
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.5s ease-out forwards; }
.animate-shake { animation: shake 0.5s ease-in-out; }
.animate-celebrate { animation: celebrate 0.3s ease-in-out; }
.animate-brain-pulse { animation: brain-pulse 2s ease-in-out infinite; }
/* Progress Bar */
.progress-bar::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
animation: progress-shine 2s ease-in-out infinite;
}
/* Option Button Effects */
.option-btn {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.option-btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(0, 255, 136, 0.2);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.option-btn:hover::before {
width: 300px;
height: 300px;
}
/* Glass Card Effect */
.glass-card {
background: rgba(20, 30, 50, 0.8);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
border: 1px solid rgba(0, 255, 136, 0.2);
}
/* Neon Text */
.neon-text {
text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
}
/* Confetti */
.confetti {
position: fixed;
width: 10px;
height: 10px;
pointer-events: none;
z-index: 1000;
}
/* Timer Ring */
.timer-ring {
stroke-dasharray: 283;
stroke-dashoffset: 0;
transition: stroke-dashoffset 1s linear;
}
/* Streak Fire Effect */
.streak-fire {
filter: drop-shadow(0 0 8px #ff6b00) drop-shadow(0 0 16px #ff6b00);
}
/* Category Card */
.category-card {
position: relative;
border: 2px solid transparent;
}
.category-card.selected {
border-color: #00ff88;
background: rgba(0, 255, 136, 0.1);
box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}
.category-card:hover {
border-color: rgba(0, 255, 136, 0.5);
}