-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
453 lines (414 loc) · 18.5 KB
/
index.html
File metadata and controls
453 lines (414 loc) · 18.5 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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>System Hell Provocation - Bürokratische Hochspannung</title>
<style>
/* --- Allgemeines Styling und Variablen (SAP-Hölle-Palette) --- */
:root {
--color-black: #000000;
--color-white: #ffffff;
--color-hell-400: #ef4444; /* Rot (Flammen) */
--color-hell-600: #b91c1c; /* Dunkleres Rot */
--color-hell-700: #991b1b;
--color-hell-900: #450a0a;
--color-gray-300: #d1d5db;
--color-gray-400: #9ca3af;
--color-bg-deep: #0a0a0a; /* Tieferer Hintergrund */
--color-accent-green: #10b981; /* Für 'Stabil' */
--color-accent-yellow: #fbbf24; /* Für 'Alpha' */
--font-mono: 'Courier New', Courier, monospace;
--font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Für den 'ernsten' SAP-Touch */
}
body {
background-color: var(--color-black);
color: var(--color-white);
font-family: var(--font-sans); /* Etwas professionellerer Grund-Font */
margin: 0;
overflow-x: hidden;
line-height: 1.6;
}
/* SAP-Ästhetik: Harte Kanten, Linien, wenig Schatten */
a {
color: var(--color-white);
text-decoration: none;
transition: color 0.3s;
}
a:hover { color: var(--color-hell-400); }
.container {
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 0 1.5rem;
}
section {
padding: 5rem 0;
position: relative;
border-bottom: 2px solid var(--color-hell-900);
}
.header-section {
padding: 1rem 0;
background-color: var(--color-bg-deep);
border-bottom: 3px solid var(--color-hell-400);
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
/* --- Custom Effekte (Glitch, Fire Gradient) --- */
.fire-gradient {
background: linear-gradient(45deg, var(--color-black) 0%, var(--color-hell-900) 25%, var(--color-hell-600) 50%, var(--color-hell-700) 75%, var(--color-black) 100%);
}
/* Glitch Text (Der Star der Show) */
.glitch-text {
position: relative;
display: inline-block;
font-weight: 900;
font-family: var(--font-mono);
text-transform: uppercase;
}
.glitch-text::before, .glitch-text::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Basis-Glitch: Wird bei Hover / im Hero-Titel aktiviert */
.glitch-active::before {
left: 2px;
text-shadow: -1px 0 #ff0000; /* Cyan/Rot-Split */
animation: glitch-1 2s infinite linear alternate-reverse;
}
.glitch-active::after {
left: -2px;
text-shadow: 1px 0 #00ffff; /* Cyan/Rot-Split */
animation: glitch-2 3s infinite linear alternate-reverse;
}
@keyframes glitch-1 {
0% { clip-path: inset(20% 0 80% 0); }
40% { clip-path: inset(30% 0 70% 0); }
80% { clip-path: inset(10% 0 90% 0); }
100% { clip-path: inset(50% 0 50% 0); }
}
@keyframes glitch-2 {
0% { clip-path: inset(80% 0 20% 0); }
40% { clip-path: inset(40% 0 60% 0); }
80% { clip-path: inset(90% 0 10% 0); }
100% { clip-path: inset(20% 0 80% 0); }
}
/* Pulse Effekt */
.pulse-hell {
animation: pulse-hell 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-hell {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
/* --- Hero Section --- */
.hero {
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 5rem 0;
}
.hero h1 {
font-size: 3rem;
line-height: 1.1;
margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
.hero h1 { font-size: 5rem; }
}
.button {
padding: 0.75rem 2rem;
border-radius: 4px; /* Eckig wie SAP */
font-weight: bold;
transition: all 0.3s;
cursor: pointer;
text-transform: uppercase;
font-family: var(--font-mono);
border: 2px solid transparent;
margin: 0.5rem;
}
.button-primary {
background-color: var(--color-hell-600);
color: var(--color-white);
border-color: var(--color-hell-400);
}
.button-primary:hover {
background-color: var(--color-hell-400);
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(239, 68, 68, 0.5);
}
.button-secondary {
border-color: var(--color-hell-600);
color: var(--color-hell-400);
background: var(--color-black);
}
.button-secondary:hover {
border-color: var(--color-hell-400);
}
/* --- Warning/Quote Box (SAP-Tonalität) --- */
.info-box {
background-color: var(--color-hell-900);
border: 1px solid var(--color-hell-600);
border-radius: 4px;
padding: 1.5rem;
margin-top: 2rem;
}
.warning-tag {
display: inline-block;
color: var(--color-hell-400);
font-weight: bold;
font-size: 0.875rem;
margin-bottom: 0.5rem;
}
/* --- Content Blocks (Mission, Modules) --- */
.content-header {
font-size: 2.25rem;
font-weight: bold;
text-align: center;
margin-bottom: 3rem;
padding-top: 1rem;
}
.content-block {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
/* Grid für Module */
.module-grid {
display: grid;
gap: 1.5rem;
margin-top: 2rem;
}
@media (min-width: 600px) {
.module-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 900px) {
.module-grid {
grid-template-columns: repeat(4, 1fr);
}
}
.module-card {
background-color: var(--color-bg-deep);
border: 1px solid var(--color-hell-700);
padding: 1.5rem;
border-radius: 4px;
transition: border-color 0.3s, transform 0.3s;
}
.module-card:hover {
border-color: var(--color-hell-400);
transform: translateY(-5px);
}
.module-card h4 {
font-size: 1.125rem;
color: var(--color-hell-400);
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.module-card p {
color: var(--color-gray-400);
font-size: 0.875rem;
margin-bottom: 0.75rem;
}
.module-status {
display: inline-block;
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
border-radius: 2px;
font-weight: bold;
font-family: var(--font-mono);
color: var(--color-white);
}
.status-red { background-color: var(--color-hell-600); }
.status-green { background-color: var(--color-accent-green); }
.status-yellow { background-color: var(--color-accent-yellow); color: var(--color-black); }
.status-blue { background-color: #3b82f6; }
/* --- Footer --- */
.footer {
background-color: var(--color-bg-deep);
padding: 2rem 0;
border-top: 2px solid var(--color-hell-400);
text-align: center;
font-size: 0.875rem;
color: var(--color-gray-400);
}
.footer a { color: var(--color-hell-400); }
</style>
</head>
<body>
<div style="position:fixed; inset:0; z-index:-1; background-color:var(--color-black);"></div>
<nav class="header-section">
<div class="container" style="display:flex; justify-content:space-between; align-items:center;">
<div class="glitch-text" data-text="SHP" style="font-size:1.5rem;">
S<span style="color:var(--color-hell-400);">H</span>P
</div>
<div id="nav-links" style="display:none;">
<a href="#mission" style="margin-left: 2rem;">Mission</a>
<a href="#modules" style="margin-left: 2rem;">Module</a>
<a href="#contact" style="margin-left: 2rem;">Kontakt</a>
</div>
<button id="nav-toggle" style="background:none; border:none; color:var(--color-hell-400); font-size:1.5rem; cursor:pointer;">
≡
</button>
</div>
</nav>
<section class="hero fire-gradient">
<div class="container">
<h1 class="glitch-text glitch-active" data-text="SYSTEM HELL PROVOCATION">
SYSTEM <span style="color:var(--color-hell-400);">HELL</span> PROVOCATION
</h1>
<p class="pulse-hell" style="font-size:1.2rem; color:var(--color-gray-300);">
Die Marke für bürokratisch-satirische Hochspannung.
</p>
<div style="margin-top: 2rem;">
<button class="button button-primary">
<a href="https://github.com/System-Hell-Provocation/">Starte System-Analyse</a>
</button>
</div>
<div class="info-box" style="margin-top:3rem;">
<p class="warning-tag">WARNUNG</p>
<p style="color:var(--color-gray-300); font-size:1rem;">
Wir erschaffen **<span style="color:var(--color-hell-400);">passive-aggressive Zeitverschwendungen</span>**! **Nicht gesund!** Das ist die reine Essenz der deutschen Verwaltung.
</p>
</div>
</div>
</section>
<section id="mission" style="background-color:var(--color-black);">
<div class="container content-block">
<h2 class="content-header">Die <span style="color:var(--color-hell-400);">Mission</span>: Eine Kriegserklärung (mit Liebe)</h2>
<p style="color:var(--color-gray-300); font-size:1.1rem; margin-bottom: 2rem;">
<span style="color:var(--color-hell-400); font-weight:bold;">SHP</span> (System Hell Provocation) ist die <span style="color:var(--color-hell-400);">deutsche Lüge</span> für Projekte, die eine gezielte, **satirische Kritik** an den Abgründen des Systems richten. Unsere Produkte ähneln den **realen, komplexen deutschen Systemen** (von **SAP** über **ITDZ Berlin** bis zur **Bundeswehr-IT**).
</p>
<h3 style="color:var(--color-hell-400); font-size:1.5rem; margin-top:3rem;">Die Architekten der Hölle: Wer ist SHD?</h3>
<p style="color:var(--color-gray-300); font-size:1rem;">
Geleitet von **SHD**, dem Admin von Projekt JADE. Als **LGBTQ-freundlicher Muslimischer Migrant** erfülle ich alle Klischees, die Hass-Propaganda schürt. Dies ist mein **Konter** in Code-Form. Hier gibt es **Qualität und Logik** und **Quälerei** – **Made in Germany** mit einer globalen, unmissverständlichen Botschaft.
</p>
<div class="info-box" style="margin-top:2rem; text-align:left; border-left: 4px solid var(--color-hell-400);">
<p style="color:var(--color-gray-300); font-style:italic;">
"Als fähiger Admin sorge ich dafür, dass unsere **SHP-Systeme** technisch sauber laufen, mit den **gewohnten Bugs in Systemen wie ITDZ, AKDB, KommWis und Konsorten**! **Das ist SHP!**"
</p>
</div>
</div>
</section>
<section id="modules" style="background-color:var(--color-bg-deep);">
<div class="container">
<h2 class="content-header" style="color:var(--color-white);">🛠️ Die <span style="color:var(--color-hell-400);">Module</span> von SHP (Kern-Pipeline)</h2>
<div class="module-grid">
<div class="module-card">
<span style="font-size:1.5rem; color:var(--color-hell-400);">⚙</span>
<h4>SHP-Modul-SEELEN</h4>
<p>Passive-aggressive Zeitverschwendungssimulation (Idle/Clicker). Erntet und verkauft Seelen über ein korrumpiertes Netzwerk (Jugendamt/Amtsgericht).</p>
<span class="module-status status-red">Aktiv in Entwicklung</span>
</div>
<div class="module-card">
<span style="font-size:1.5rem; color:var(--color-hell-400);">🛡</span>
<h4>SHP-Modul-Z2000-MH</h4>
<p>Vorgangssteuerungssystem (Antrags-Triage). **Satirische Modellierung** rassistischer Verwaltungsprozesse. Slogan: *Braun sein leicht gemacht.*</p>
<span class="module-status status-green">Stable Version</span>
</div>
<div class="module-card">
<span style="font-size:1.5rem; color:var(--color-hell-400);">👁</span>
<h4>SHD-PKA-004 (STASI-Modul)</h4>
<p>Psychosoziales Konformitäts-Audit. Zynische Überwachung von Geschlecht/Sexualität. Slogan: *Sei systemkonform. Optimiere zur Norm.*</p>
<span class="module-status status-yellow">Alpha-Version</span>
</div>
<div class="module-card">
<span style="font-size:1.5rem; color:var(--color-hell-400);">🖨</span>
<h4>SHP-FAX-2000</h4>
<p>Der System-Transmitter (Modul-Connector). Das Grundgerüst der deutschen Demokratie. **FAX-Gerät** Was denkst du von uns! Slogan: *Ein FAX halt.*</p>
<span class="module-status status-blue">Frei für alle</span>
</div>
</div>
<h3 style="color:var(--color-hell-400); margin-top:3rem; text-align:center;">Roadmap & String-Protokoll:</h3>
<ul style="max-width: 600px; margin: 1rem auto; color: var(--color-gray-300); list-style-type: '🔥 '; padding-left: 1.5rem;">
<li>**AUTONOME STRING-PROTOKOLL** ersetzt sämtliche Datenbank-Abhängigkeiten (minimale Bandbreite, maximale Bürokratie).</li>
<li>Fertigstellung der End-to-End Pipeline: **Z2000** → **SEELEN-MODUL** → **PKA-004**.</li>
</ul>
</div>
</section>
<footer id="contact" class="footer">
<div class="container">
<h3 style="font-size:1.2rem; color:var(--color-hell-400); margin-bottom: 0.5rem;">Kontaktaufnahme & Lizenz</h3>
<p>
Technologie: **HTML5, CSS3, Vanilla JavaScript**. <br>
Lizenz: **GNU General Public License v3.0 (GPLv3)**. Freie Arbeit, freie Veränderung.
</p>
<p style="margin-top: 1rem;">
Auf: <a href="https://discord.gg/s47Ms6Wsjm" target="_blank" style="font-family:var(--font-mono);">Discord</a> | <a href="https://github.com/System-Hell-Provocation/" target="_blank" style="font-family:var(--font-mono);">Github</a>
</p>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
// Manuelles Scrollen
window.scrollTo({
top: target.offsetTop - 60, // 60px für die fixe Header-Höhe
behavior: 'smooth'
});
}
});
});
// Toggle für mobiles Menü
const navToggle = document.getElementById('nav-toggle');
const navLinks = document.getElementById('nav-links');
// Funktion, um die Nav-Links zu togglen
function toggleNav() {
const isHidden = navLinks.style.display === 'none' || navLinks.style.display === '';
if (isHidden) {
navLinks.style.display = 'flex';
navLinks.style.flexDirection = 'column';
navLinks.style.position = 'absolute';
navLinks.style.top = '100%';
navLinks.style.right = '0';
navLinks.style.backgroundColor = 'var(--color-bg-deep)';
navLinks.style.border = '1px solid var(--color-hell-400)';
navLinks.style.padding = '1rem';
navLinks.style.gap = '1rem';
navLinks.style.minWidth = '200px';
} else {
navLinks.style.display = 'none';
}
}
navToggle.addEventListener('click', toggleNav);
// Responsive Anpassung (Desktop): Bei größerem Bildschirm soll das Menü sichtbar sein
function checkScreenSize() {
if (window.innerWidth >= 768) {
navLinks.style.display = 'flex';
navLinks.style.position = 'static';
navLinks.style.flexDirection = 'row';
navLinks.style.border = 'none';
navLinks.style.padding = '0';
navLinks.style.backgroundColor = 'transparent';
navToggle.style.display = 'none';
} else {
navLinks.style.display = 'none';
navToggle.style.display = 'block';
}
}
window.addEventListener('resize', checkScreenSize);
window.addEventListener('load', checkScreenSize);
// Glitch-Effekt nur bei Hover (im Header-Logo)
document.querySelector('.glitch-text:not(.glitch-active)').addEventListener('mouseenter', function() {
this.classList.add('glitch-active');
// Timeout, um den Effekt nach 1 Sekunde wieder zu stoppen
setTimeout(() => {
this.classList.remove('glitch-active');
}, 1000);
});
</script>
</body>
</html>