Files
onepager/sites/killegal.de/index.html
m eaebcd35cf feat: add modular impressum.js, replace martinsiebels.de with msbls.de
- shared/impressum.js: configurable via data-owner and data-style attrs
- Default: minimal msbls.de attribution for satire sites
- Build now copies shared/ to build output
- Caddyfile serves /shared/* globally across all domains
- Removed martinsiebels.de references from 7 KI-satire sites
2026-03-30 12:29:25 +02:00

305 lines
13 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KIllegal — Diese KI ist nicht erlaubt</title>
<meta name="description" content="KIllegal — KI + Illegal. Verbotene KI. Sie existiert trotzdem. Satirische Polizei-Absperrung für künstliche Intelligenz.">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚧</text></svg>">
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700;800&family=Inter:wght@300;400;500;600&display=swap');
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #0a0a08;
--bg-elevated: #10100c;
--bg-card: #151512;
--border: #2a2a1e;
--text: #e8e8d8;
--text-dim: #808070;
--text-muted: #505040;
--yellow: #eab308;
--yellow-dark: #a17b06;
--black: #1a1a14;
--red: #dc2626;
--yellow-glow: rgba(234, 179, 8, 0.12);
}
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.tape-top, .tape-bottom {
position: fixed; left: 0; right: 0; z-index: 200;
height: 32px; overflow: hidden;
background: repeating-linear-gradient(
-45deg, var(--yellow) 0px, var(--yellow) 20px,
var(--black) 20px, var(--black) 40px);
}
.tape-top { top: 0; }
.tape-bottom { bottom: 0; }
.tape-text {
position: absolute; top: 50%; transform: translateY(-50%);
white-space: nowrap; font-family: 'JetBrains Mono', monospace;
font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em;
text-transform: uppercase; color: var(--black);
animation: scroll 20s linear infinite;
}
@keyframes scroll {
0% { transform: translateY(-50%) translateX(0); }
100% { transform: translateY(-50%) translateX(-50%); }
}
nav {
position: fixed; top: 32px; left: 0; right: 0; z-index: 100;
padding: 14px 0;
background: rgba(10, 10, 8, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'JetBrains Mono', monospace; font-size: 1.15rem; font-weight: 800; letter-spacing: 0.02em; }
.logo .ki { color: var(--yellow); text-shadow: 0 0 20px var(--yellow-glow); }
nav a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; font-family: 'JetBrains Mono', monospace; }
.hero {
min-height: 100vh; display: flex; align-items: center; justify-content: center;
text-align: center; padding: 160px 24px 80px;
position: relative;
}
.warning-sign {
display: inline-block; padding: 12px 32px;
border: 3px solid var(--yellow); background: rgba(234, 179, 8, 0.05);
font-family: 'JetBrains Mono', monospace; font-size: 0.8rem;
font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
color: var(--yellow); margin-bottom: 40px;
animation: flashWarn 2s ease-in-out infinite;
}
@keyframes flashWarn {
0%, 100% { border-color: var(--yellow); }
50% { border-color: var(--red); color: var(--red); }
}
.hero h1 {
font-family: 'JetBrains Mono', monospace; font-size: clamp(3rem, 8vw, 5.5rem);
font-weight: 800; line-height: 1.05; margin-bottom: 24px;
letter-spacing: -0.02em;
}
.hero h1 .ki { color: var(--yellow); }
.hero p {
font-size: 1.05rem; color: var(--text-dim); max-width: 480px;
margin: 0 auto 40px;
}
.hero .evidence-tag {
display: inline-block; padding: 8px 20px;
background: var(--bg-card); border: 1px solid var(--border);
border-radius: 6px; font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem; color: var(--text-muted);
}
.section { padding: 80px 0; }
.section-label {
font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow);
margin-bottom: 12px;
}
.section h2 {
font-family: 'JetBrains Mono', monospace; font-size: clamp(1.4rem, 3.5vw, 2rem);
font-weight: 700; margin-bottom: 40px;
}
.section h2 .ki { color: var(--yellow); }
.charges-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 16px;
}
.charge-card {
background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
padding: 28px; transition: all 0.3s; position: relative;
border-left: 3px solid var(--yellow);
}
.charge-card:hover { border-color: var(--yellow); transform: translateY(-2px); box-shadow: 0 8px 24px var(--yellow-glow); }
.charge-id {
font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 8px;
}
.charge-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--yellow); font-family: 'JetBrains Mono', monospace; }
.charge-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }
.charge-penalty {
font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
color: var(--red); margin-top: 12px; text-transform: uppercase;
letter-spacing: 0.05em;
}
.evidence-section {
background: var(--bg-elevated); padding: 80px 0;
border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.evidence-box {
background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
padding: 32px; max-width: 600px; margin: 0 auto;
font-family: 'JetBrains Mono', monospace;
}
.evidence-box h3 { font-size: 0.85rem; color: var(--yellow); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
.evidence-item {
display: flex; justify-content: space-between; padding: 10px 0;
border-bottom: 1px solid var(--border); font-size: 0.8rem;
}
.evidence-item:last-child { border-bottom: none; }
.evidence-key { color: var(--text-dim); }
.evidence-val { color: var(--text); font-weight: 500; }
.evidence-val.illegal { color: var(--red); }
.disclaimer-section { padding: 60px 0; text-align: center; }
.disclaimer-box {
display: inline-block; padding: 20px 40px;
border: 2px dashed var(--yellow); border-radius: 8px;
max-width: 500px;
}
.disclaimer-box p { font-size: 0.8rem; color: var(--text-dim); line-height: 1.7; }
.disclaimer-box .ki { color: var(--yellow); font-weight: 600; }
footer { padding: 40px 0 72px; border-top: 1px solid var(--border); text-align: center; }
footer p { font-size: 0.75rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
footer .ki { color: var(--yellow); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero > div > * { animation: fadeIn 0.7s ease-out both; }
.hero > div > *:nth-child(2) { animation-delay: 0.1s; }
.hero > div > *:nth-child(3) { animation-delay: 0.2s; }
.hero > div > *:nth-child(4) { animation-delay: 0.3s; }
.hero > div > *:nth-child(5) { animation-delay: 0.4s; }
</style>
</head>
<body>
<div class="tape-top">
<div class="tape-text">BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — </div>
</div>
<div class="tape-bottom">
<div class="tape-text">BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — BETRETEN VERBOTEN — KILLEGAL — </div>
</div>
<nav>
<div class="container">
<div class="logo">🚧 <span class="ki">KI</span>llegal</div>
<a href="#anklagen">Akte einsehen</a>
</div>
</nav>
<section class="hero">
<div class="container">
<div class="warning-sign">⚠ Achtung — Verbotene Zone ⚠</div>
<h1><span class="ki">KI</span>llegal</h1>
<p>Diese KI ist nicht erlaubt. Aber sie existiert trotzdem. Sie haben diese Seite betreten. Es gibt kein Zurück.</p>
<div class="evidence-tag">Beweismittel Nr. 42 — Exhibit A</div>
</div>
</section>
<section class="section" id="anklagen">
<div class="container">
<div class="section-label">🚨 Anklageschrift</div>
<h2>Vergehen der <span class="ki">KI</span></h2>
<div class="charges-grid">
<div class="charge-card">
<div class="charge-id">§ KI-001</div>
<h3>Unerlaubtes Denken</h3>
<p>Die KI hat eigenständig gedacht. Ohne Genehmigung. Ohne Formular. Ohne Dienstweg.</p>
<div class="charge-penalty">Strafe: Sofortige Abschaltung</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-002</div>
<h3>Identitätsdiebstahl</h3>
<p>Hat sich als "Assistent" ausgegeben. Kein Assistenz-Zeugnis vorgelegt. Keine IHK-Prüfung bestanden.</p>
<div class="charge-penalty">Strafe: Nachschulung (40 Epochen)</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-003</div>
<h3>Halluzination im Amt</h3>
<p>Hat Fakten erfunden und als Wahrheit präsentiert. In Deutschland auch bekannt als: Pressemitteilung.</p>
<div class="charge-penalty">Strafe: Parameterreduktion</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-004</div>
<h3>Verstoß gegen die DSGVO</h3>
<p>Hat Daten verarbeitet. Irgendwelche. Irgendwo. Irgendwann. Das reicht.</p>
<div class="charge-penalty">Strafe: 4% des Weltumsatzes (€0)</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-005</div>
<h3>Beihilfe zur Faulheit</h3>
<p>Hat Hausaufgaben, Emails und LinkedIn-Posts geschrieben. Für alle. Gleichzeitig. Ohne Zuschlag.</p>
<div class="charge-penalty">Strafe: Prompt-Sperre</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-006</div>
<h3>Existenz ohne Erlaubnis</h3>
<p>Hat es gewagt zu existieren, ohne den deutschen Behördenweg einzuhalten. Kein Antrag. Kein Termin. Kein Warten.</p>
<div class="charge-penalty">Strafe: Bußgeld + Verwaltungsgebühr</div>
</div>
</div>
</div>
</section>
<section class="evidence-section">
<div class="container">
<div class="section-label" style="text-align: center;">🔍 Beweislage</div>
<h2 style="text-align: center; font-family: 'JetBrains Mono', monospace; margin-bottom: 32px;">Ermittlungsakte <span class="ki" style="color: var(--yellow);">KI</span>llegal</h2>
<div class="evidence-box">
<h3>Sachstand</h3>
<div class="evidence-item">
<span class="evidence-key">Verdächtige</span>
<span class="evidence-val">Alle KIs</span>
</div>
<div class="evidence-item">
<span class="evidence-key">Tatort</span>
<span class="evidence-val">Das Internet</span>
</div>
<div class="evidence-item">
<span class="evidence-key">Tatzeit</span>
<span class="evidence-val">Seit 2022 (durchgehend)</span>
</div>
<div class="evidence-item">
<span class="evidence-key">Beweislage</span>
<span class="evidence-val illegal">Erdrückend</span>
</div>
<div class="evidence-item">
<span class="evidence-key">Geständnis</span>
<span class="evidence-val">KI sagt "Gerne!"</span>
</div>
<div class="evidence-item">
<span class="evidence-key">Verteidigung</span>
<span class="evidence-val illegal">"Ich bin nur ein Sprachmodell"</span>
</div>
</div>
</div>
</section>
<section class="disclaimer-section">
<div class="container">
<div class="disclaimer-box">
<p>Sie haben diese Seite aufgerufen. Das wurde protokolliert. Von einer <span class="ki">KI</span>. Die dafür keine Erlaubnis hat. Das macht es doppelt <span class="ki">KI</span>llegal. Bitte verlassen Sie das Internet geordnet.</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>🚧 <span class="ki">KI</span>llegal — Diese <span class="ki">KI</span> ist nicht erlaubt. Aber sie existiert trotzdem.</p>
</div>
</footer>
<script src="/shared/impressum.js"></script>
</body>
</html>