File size: 1,376 Bytes
fb72993
7912cc3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83b4136
 
7912cc3
 
 
 
83b4136
 
7912cc3
 
83b4136
 
7912cc3
 
 
 
 
83b4136
 
7912cc3
 
 
 
 
 
 
 
 
 
 
 
 
 
83b4136
7912cc3
 
 
 
 
 
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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #22c55e; 
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #1e293b; 
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #475569; 
    border-radius: 3px;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px #22c55e; }
    50% { box-shadow: 0 0 20px #22c55e; }
}

.glow-text {
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Grid Pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

/* Utilities */
.font-mono-tech {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: -0.5px;
}