Files
onepager/sites/killegal.de/index.html
m 5c92a7b021 feat: i18n annotations — data-de/data-en + toggle for all 54 custom sites
Phase 2 of i18n rollout:
- All 54 static custom sites now have data-de/data-en attributes on
  visible text elements with English translations
- i18n.js script tag injected into all sites
- Language toggle button with machine-translation disclaimer added
  to every site's footer area
- Brand names / domain wordplay preserved unchanged in both languages
- 2 dynamic sites (dasbes.de, dumusst.com) skipped — no static HTML
2026-04-01 13:19:40 +02:00

309 lines
18 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" data-de="Akte einsehen" data-en="View file">Akte einsehen</a>
</div>
</nav>
<section class="hero">
<div class="container">
<div class="warning-sign" data-de="⚠ Achtung — Verbotene Zone ⚠" data-en="⚠ Warning — Restricted Zone ⚠">⚠ Achtung — Verbotene Zone ⚠</div>
<h1><span class="ki">KI</span>llegal</h1>
<p data-de="Diese KI ist nicht erlaubt. Aber sie existiert trotzdem. Sie haben diese Seite betreten. Es gibt kein Zurück." data-en="This AI is not permitted. But it exists anyway. You have entered this page. There is no going back.">Diese KI ist nicht erlaubt. Aber sie existiert trotzdem. Sie haben diese Seite betreten. Es gibt kein Zurück.</p>
<div class="evidence-tag" data-de="Beweismittel Nr. 42 — Exhibit A" data-en="Evidence No. 42 — Exhibit A">Beweismittel Nr. 42 — Exhibit A</div>
</div>
</section>
<section class="section" id="anklagen">
<div class="container">
<div class="section-label" data-de="🚨 Anklageschrift" data-en="🚨 Indictment">🚨 Anklageschrift</div>
<h2 data-de="Vergehen der <span class=&quot;ki&quot;>KI</span>" data-en="Offenses of the <span class=&quot;ki&quot;>AI</span>">Vergehen der <span class="ki">KI</span></h2>
<div class="charges-grid">
<div class="charge-card">
<div class="charge-id">§ KI-001</div>
<h3 data-de="Unerlaubtes Denken" data-en="Unauthorized Thinking">Unerlaubtes Denken</h3>
<p data-de="Die KI hat eigenständig gedacht. Ohne Genehmigung. Ohne Formular. Ohne Dienstweg." data-en="The AI thought independently. Without authorization. Without a form. Without going through official channels.">Die KI hat eigenständig gedacht. Ohne Genehmigung. Ohne Formular. Ohne Dienstweg.</p>
<div class="charge-penalty" data-de="Strafe: Sofortige Abschaltung" data-en="Penalty: Immediate shutdown">Strafe: Sofortige Abschaltung</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-002</div>
<h3 data-de="Identitätsdiebstahl" data-en="Identity Theft">Identitätsdiebstahl</h3>
<p data-de="Hat sich als &quot;Assistent&quot; ausgegeben. Kein Assistenz-Zeugnis vorgelegt. Keine IHK-Prüfung bestanden." data-en="Posed as an &quot;assistant&quot;. No assistant certificate presented. No Chamber of Commerce exam passed.">Hat sich als "Assistent" ausgegeben. Kein Assistenz-Zeugnis vorgelegt. Keine IHK-Prüfung bestanden.</p>
<div class="charge-penalty" data-de="Strafe: Nachschulung (40 Epochen)" data-en="Penalty: Retraining (40 epochs)">Strafe: Nachschulung (40 Epochen)</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-003</div>
<h3 data-de="Halluzination im Amt" data-en="Hallucination in Office">Halluzination im Amt</h3>
<p data-de="Hat Fakten erfunden und als Wahrheit präsentiert. In Deutschland auch bekannt als: Pressemitteilung." data-en="Invented facts and presented them as truth. In Germany also known as: press release.">Hat Fakten erfunden und als Wahrheit präsentiert. In Deutschland auch bekannt als: Pressemitteilung.</p>
<div class="charge-penalty" data-de="Strafe: Parameterreduktion" data-en="Penalty: Parameter reduction">Strafe: Parameterreduktion</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-004</div>
<h3 data-de="Verstoß gegen die DSGVO" data-en="GDPR Violation">Verstoß gegen die DSGVO</h3>
<p data-de="Hat Daten verarbeitet. Irgendwelche. Irgendwo. Irgendwann. Das reicht." data-en="Processed data. Some kind. Somewhere. At some point. That's enough.">Hat Daten verarbeitet. Irgendwelche. Irgendwo. Irgendwann. Das reicht.</p>
<div class="charge-penalty" data-de="Strafe: 4% des Weltumsatzes (€0)" data-en="Penalty: 4% of global revenue (€0)">Strafe: 4% des Weltumsatzes (€0)</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-005</div>
<h3 data-de="Beihilfe zur Faulheit" data-en="Aiding and Abetting Laziness">Beihilfe zur Faulheit</h3>
<p data-de="Hat Hausaufgaben, Emails und LinkedIn-Posts geschrieben. Für alle. Gleichzeitig. Ohne Zuschlag." data-en="Wrote homework, emails and LinkedIn posts. For everyone. Simultaneously. Without extra charge.">Hat Hausaufgaben, Emails und LinkedIn-Posts geschrieben. Für alle. Gleichzeitig. Ohne Zuschlag.</p>
<div class="charge-penalty" data-de="Strafe: Prompt-Sperre" data-en="Penalty: Prompt block">Strafe: Prompt-Sperre</div>
</div>
<div class="charge-card">
<div class="charge-id">§ KI-006</div>
<h3 data-de="Existenz ohne Erlaubnis" data-en="Existence Without Permission">Existenz ohne Erlaubnis</h3>
<p data-de="Hat es gewagt zu existieren, ohne den deutschen Behördenweg einzuhalten. Kein Antrag. Kein Termin. Kein Warten." data-en="Dared to exist without going through German bureaucratic channels. No application. No appointment. No waiting.">Hat es gewagt zu existieren, ohne den deutschen Behördenweg einzuhalten. Kein Antrag. Kein Termin. Kein Warten.</p>
<div class="charge-penalty" data-de="Strafe: Bußgeld + Verwaltungsgebühr" data-en="Penalty: Fine + administrative fee">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;" data-de="🔍 Beweislage" data-en="🔍 Evidence">🔍 Beweislage</div>
<h2 style="text-align: center; font-family: 'JetBrains Mono', monospace; margin-bottom: 32px;" data-de="Ermittlungsakte <span class=&quot;ki&quot; style=&quot;color: var(--yellow);&quot;>KI</span>llegal" data-en="Investigation file <span class=&quot;ki&quot; style=&quot;color: var(--yellow);&quot;>KI</span>llegal">Ermittlungsakte <span class="ki" style="color: var(--yellow);">KI</span>llegal</h2>
<div class="evidence-box">
<h3 data-de="Sachstand" data-en="Status">Sachstand</h3>
<div class="evidence-item">
<span class="evidence-key" data-de="Verdächtige" data-en="Suspects">Verdächtige</span>
<span class="evidence-val" data-de="Alle KIs" data-en="All AIs">Alle KIs</span>
</div>
<div class="evidence-item">
<span class="evidence-key" data-de="Tatort" data-en="Crime scene">Tatort</span>
<span class="evidence-val" data-de="Das Internet" data-en="The Internet">Das Internet</span>
</div>
<div class="evidence-item">
<span class="evidence-key" data-de="Tatzeit" data-en="Time of crime">Tatzeit</span>
<span class="evidence-val" data-de="Seit 2022 (durchgehend)" data-en="Since 2022 (continuously)">Seit 2022 (durchgehend)</span>
</div>
<div class="evidence-item">
<span class="evidence-key" data-de="Beweislage" data-en="Evidence">Beweislage</span>
<span class="evidence-val illegal" data-de="Erdrückend" data-en="Overwhelming">Erdrückend</span>
</div>
<div class="evidence-item">
<span class="evidence-key" data-de="Geständnis" data-en="Confession">Geständnis</span>
<span class="evidence-val" data-de="KI sagt &quot;Gerne!&quot;" data-en="AI says &quot;Sure!&quot;">KI sagt "Gerne!"</span>
</div>
<div class="evidence-item">
<span class="evidence-key" data-de="Verteidigung" data-en="Defense">Verteidigung</span>
<span class="evidence-val illegal" data-de="&quot;Ich bin nur ein Sprachmodell&quot;" data-en="&quot;I'm just a language model&quot;">"Ich bin nur ein Sprachmodell"</span>
</div>
</div>
</div>
</section>
<section class="disclaimer-section">
<div class="container">
<div class="disclaimer-box">
<p data-de="Sie haben diese Seite aufgerufen. Das wurde protokolliert. Von einer <span class=&quot;ki&quot;>KI</span>. Die dafür keine Erlaubnis hat. Das macht es doppelt <span class=&quot;ki&quot;>KI</span>llegal. Bitte verlassen Sie das Internet geordnet." data-en="You accessed this page. That was logged. By an <span class=&quot;ki&quot;>AI</span>. That has no permission to do so. That makes it doubly <span class=&quot;ki&quot;>KI</span>llegal. Please leave the internet in an orderly fashion.">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 data-de="🚧 <span class=&quot;ki&quot;>KI</span>llegal — Diese <span class=&quot;ki&quot;>KI</span> ist nicht erlaubt. Aber sie existiert trotzdem." data-en="🚧 <span class=&quot;ki&quot;>KI</span>llegal — This <span class=&quot;ki&quot;>AI</span> is not permitted. But it exists anyway.">🚧 <span class="ki">KI</span>llegal — Diese <span class="ki">KI</span> ist nicht erlaubt. Aber sie existiert trotzdem.</p>
<div style="text-align:center;margin-top:16px;">
<button data-i18n-toggle title="Maschinell übersetzt / Machine-translated — German is the original." style="background:none;border:1px solid var(--text-muted,#444);color:var(--text-muted,#444);font-size:0.65rem;letter-spacing:0.1em;padding:4px 12px;border-radius:4px;cursor:pointer;">EN</button>
<br><small data-de="Maschinell übersetzt" data-en="Machine-translated" style="color:var(--text-muted,#444);font-size:0.6rem;opacity:0.5;">Maschinell übersetzt</small>
</div>
</div>
</footer>
<script src="/shared/impressum.js"></script>
<script src="/shared/i18n.js"></script>
</body>
</html>