File size: 1,433 Bytes
411ed67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0beaea0
 
411ed67
 
0beaea0
 
411ed67
 
 
0beaea0
 
411ed67
 
 
 
0beaea0
 
411ed67
 
 
 
 
0beaea0
411ed67
 
 
 
 
 
 
 
 
 
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
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}

/* Animations */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.scanline-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(16, 185, 129, 0.02) 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 50;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
}

.glow-active {
    animation: pulse-glow 2s infinite;
}

/* CRT Flicker Effect for text */
.crt-text {
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Utility for Grid layout fallback */
.grid-fallback {
    display: grid;
    gap: 1.5rem;
}

/* Link active state */
.link-active {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-right: 3px solid #10b981;
}

/* Page Transitions */
.page-section {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}