File size: 1,792 Bytes
5cd1662
13cdac0
 
93f8b6e
13cdac0
 
5cd1662
 
 
 
146219c
 
 
 
 
 
 
 
 
 
 
 
 
2af4483
146219c
 
 
 
2af4483
 
 
146219c
13cdac0
146219c
 
 
 
 
 
 
5cd1662
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13cdac0
 
 
93f8b6e
 
13cdac0
 
93f8b6e
 
13cdac0
 
 
93f8b6e
 
13cdac0
 
 
93f8b6e
 
13cdac0
 
93f8b6e
13cdac0
 
 
 
 
 
 
 
 
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

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0a0a0a;
    transition: background-color 0.5s ease;
}
body.activated {
    background-color: #050505;
    --cyber-power: 0;
}

.full-power {
    text-shadow: 0 0 20px rgba(249, 255, 0, 0.8), 
                 0 0 40px rgba(249, 255, 0, 0.6),
                 0 0 60px rgba(249, 255, 0, 0.4);
    animation: power-pulse 1s infinite alternate;
}
@keyframes power-pulse {
    from {
        opacity: 0.8;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(249, 255, 0, 0.8);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(249, 255, 0, 0.8), 
                     0 0 40px rgba(249, 255, 0, 0.6),
                     0 0 80px rgba(249, 255, 0, 0.4);
    }
}
#vanta-bg {
    transition: filter 0.5s ease;
}

body.activated #vanta-bg {
    filter: brightness(1.5) contrast(1.2);
}
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 255, 0, 0);
    }
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #f9ff00;
    border-radius: 4px;
}

::selection {
    background: #f9ff00;
    color: #000;
}

.glow-text {
    text-shadow: 0 0 10px rgba(249, 255, 0, 0.7);
}

.glow-box {
    box-shadow: 0 0 15px rgba(249, 255, 0, 0.3);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(249, 255, 0, 0.5);
    transition: box-shadow 0.3s ease;
}