-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
248 lines (212 loc) · 8.95 KB
/
Copy pathstyle.css
File metadata and controls
248 lines (212 loc) · 8.95 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
@import url('https://fonts.cdnfonts.com/css/benguiat');
:root {
--sys-core-ref: "0a1UW";
}
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
body {
font-family: 'Courier New', monospace;
background: #000;
color: #fff;
overflow-x: hidden;
overflow-y: hidden;
}
#flashlight {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: radial-gradient(circle 250px at var(--x, 50%) var(--y, 50%), transparent 0%, rgba(0,0,0,0.98) 100%);
z-index: 2000; pointer-events: none;
}
#build-id {
position: fixed; bottom: 80px; left: 80px;
font-family: 'Courier New', monospace;
font-size: 24px;
color: #00ff00;
text-shadow: 0 0 10px #00ff00;
z-index: 50; transition: 0.3s;
cursor: none; pointer-events: auto;
font-weight: bold;
opacity: 0.9;
}
#build-id:hover {
opacity: 1;
text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00;
transform: scale(1.1);
}
.ecg-container {
position: fixed; top: 50%; left: 0; width: 100%; height: 150px;
transform: translateY(-50%); z-index: 10; opacity: 0.4;
pointer-events: none; overflow: hidden;
}
.ecg-line {
width: 100%; height: 100%;
fill: none; stroke: #00ff00; stroke-width: 3;
stroke-dasharray: 1000; stroke-dashoffset: 1000;
animation: ecgDraw 3s linear infinite;
filter: drop-shadow(0 0 8px #00ff00);
}
@keyframes ecgDraw { 0% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 0; } }
.scanlines {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 3px);
pointer-events: none; z-index: 1000;
}
.vhs-noise {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /><feColorMatrix values="0 0 0 0 0, 0 0 0 0 0, 0 0 0 0 0, 0 0 0 0.09 0"/></filter><rect width="100" height="100" filter="url(%23noise)"/></svg>');
opacity: 0.15; pointer-events: none; z-index: 999; animation: noiseAnim 0.1s infinite;
}
@keyframes noiseAnim { 0% { transform: translate(0,0); } 100% { transform: translate(10px, 10px); } }
@keyframes thunder {
0%, 95% { opacity: 0; } 96% { opacity: 0.8; background: white; } 97% { opacity: 0; } 98% { opacity: 0.5; background: white; } 100% { opacity: 0; }
}
.thunder-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
pointer-events: none; z-index: 55;
animation: thunder 10s infinite random;
}
.ash {
position: absolute; width: 4px; height: 4px;
background: rgba(220, 220, 220, 0.6);
border-radius: 50%;
animation: floatAsh 10s infinite linear;
z-index: 8;
}
@keyframes floatAsh {
0% { transform: translateY(110vh) translateX(0) rotate(0deg); opacity: 0; }
100% { transform: translateY(-10vh) translateX(-50px) rotate(180deg); opacity: 0; }
}
#decoy-vine::after { content: "RkFLRSBTSUdOQUw="; display: none; }
.run-text {
color: #ff0000; font-size: 1.6rem; font-weight: bold;
text-shadow: 0 0 10px red; letter-spacing: 4px;
margin-top: 20px;
animation: textShake 0.1s infinite;
}
@keyframes textShake {
0% { transform: translate(1px, 1px); opacity: 0.8; }
100% { transform: translate(-1px, -1px); opacity: 1; }
}
.clue-text {
font-family: 'Courier New', monospace; font-size: 1.0rem; color: #ccc;
margin-top: 15px; letter-spacing: 1px; text-shadow: 0 0 5px #fff;
}
@keyframes glitchDistort {
0% { transform: translate(0); filter: hue-rotate(0deg); }
10% { transform: translate(-2px, 2px); filter: hue-rotate(5deg); }
50% { transform: translate(0); filter: hue-rotate(0deg); }
100% { transform: translate(0); filter: hue-rotate(0deg); }
}
.hero-section {
position: relative; width: 100%; min-height: 100vh;
display: flex; align-items: center; justify-content: center;
background: #000; overflow: hidden;
}
.demogorgon-bg {
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 110%; height: 110%; object-fit: cover; opacity: 0.6;
animation: glitchDistort 4s infinite;
filter: contrast(1.4) brightness(0.6) sepia(0.5) hue-rotate(-20deg);
}
.st-logo {
position: relative; z-index: 60; font-family: 'Benguiat', serif;
font-size: clamp(4rem, 12vw, 10rem); font-weight: 900; color: #ff0000;
text-align: center; text-shadow: 0 0 20px red, 0 0 40px rgba(255,0,0,0.8);
letter-spacing: 15px; margin-bottom: 30px;
animation: heartbeat 1.5s infinite, glitchText 3s infinite;
text-transform: uppercase; line-height: 0.9;
}
@keyframes heartbeat {
0% { transform: scale(1); text-shadow: 0 0 20px red; }
15% { transform: scale(1.05); text-shadow: 0 0 40px red, 0 0 10px white; }
30% { transform: scale(1); text-shadow: 0 0 20px red; }
100% { transform: scale(1); }
}
@keyframes glitchText {
0% { clip-path: inset(0 0 0 0); }
95% { clip-path: inset(0 0 0 0); }
96% { clip-path: inset(10% 0 30% 0); transform: translate(-5px, 5px); }
97% { clip-path: inset(80% 0 5% 0); transform: translate(5px, -5px); }
98% { clip-path: inset(0 0 0 0); }
}
.content-overlay {
position: relative; z-index: 60; text-align: center; max-width: 1200px; padding: 40px;
}
.alert-box {
background: rgba(20, 0, 0, 0.8); border: 4px solid #ff0000;
padding: 30px 50px; margin: 20px auto; max-width: 800px;
box-shadow: 0 0 80px rgba(255, 0, 0, 0.6), inset 0 0 50px rgba(0, 0, 0, 0.8);
animation: pulseAlert 0.5s infinite alternate, glitchBox 4s infinite;
}
@keyframes pulseAlert {
from { border-color: #800; box-shadow: 0 0 30px #500; }
to { border-color: #f00; box-shadow: 0 0 100px #f00; }
}
@keyframes glitchBox {
0% { transform: translate(0, 0); }
92% { transform: translate(0, 0); }
93% { transform: translate(-5px, 2px) skewX(2deg); }
94% { transform: translate(5px, -2px) skewX(-2deg); }
95% { transform: translate(-2px, 5px); }
96% { transform: translate(0, 0); }
97% { transform: translate(3px, -3px); }
100% { transform: translate(0, 0); }
}
.alert-box h2 {
font-family: 'Courier New', monospace; font-size: 1.8rem; color: #ff0000;
text-shadow: 0 0 15px #ff0000; margin-bottom: 15px; letter-spacing: 5px;
}
.alert-box p {
font-family: 'Courier New', monospace; font-size: 1.2rem; color: #fff;
letter-spacing: 2px; line-height: 1.6;
}
.vhs-tape {
position: absolute; width: 120px; height: 80px;
background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
border: 2px solid #ff0000; border-radius: 5px;
box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
animation: floatUp 15s infinite linear; z-index: 5;
}
.vhs-tape::before, .vhs-tape::after {
content: ''; position: absolute; width: 30px; height: 30px;
background: #000; border: 2px solid #333; border-radius: 50%; top: 50%; transform: translateY(-50%);
}
.vhs-tape::before { left: 15px; } .vhs-tape::after { right: 15px; }
.paper {
position: absolute; width: 100px; height: 130px;
background: rgba(240, 230, 220, 0.9); border: 1px solid #999;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
animation: floatUp 20s infinite linear; z-index: 4;
}
.paper::before {
content: 'CLASSIFIED'; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
font-size: 0.7rem; color: #ff0000; font-weight: bold;
}
@keyframes floatUp {
0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
10% { opacity: 0.9; }
90% { opacity: 0.9; }
100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}
.vine {
position: absolute; width: 6px; background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.8), rgba(80, 0, 0, 0.9));
height: 100vh; filter: blur(1px); box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); z-index: 5;
animation: writhe 4s ease-in-out infinite alternate; transform-origin: top;
}
@keyframes writhe {
from { transform: skewX(-2deg); } to { transform: skewX(2deg); }
}
.spore {
position: absolute; width: 5px; height: 5px;
background: radial-gradient(circle, rgba(255, 100, 100, 0.8), transparent);
border-radius: 50%; animation: floatUp 25s infinite linear; z-index: 3;
}
#blood-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 6; overflow: hidden; }
.blood-drip {
position: absolute; width: 5px; height: 20px; top: -50px;
background: linear-gradient(to bottom, transparent, #800, #f00);
border-radius: 0 0 50% 50%; filter: drop-shadow(0 0 5px red);
opacity: 0.9; animation: fallBleed linear forwards;
}
@keyframes fallBleed {
0% { top: -50px; height: 20px; opacity: 1; }
100% { top: 110vh; height: 200px; opacity: 0; }
}