<!doctype html> <html lang="de"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Jailobeam</title> <style> :root { --bg: #0f1117; --bg-soft: #171a22; --panel: rgba(255, 255, 255, 0.04); --line: rgba(255, 255, 255, 0.1); --text: #f4f5f7; --muted: rgba(244, 245, 247, 0.72); --accent: #be7195; --accent-soft: rgba(190, 113, 149, 0.28); } * { box-sizing: border-box; } html, body { margin: 0; min-height: 100%; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; color: var(--text); background: radial-gradient(circle at top center, rgba(190, 113, 149, 0.16), transparent 28%), linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); } body { min-height: 100vh; display: flex; flex-direction: column; } main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 20px; } .shell { width: min(760px, 100%); text-align: center; padding: 56px 40px 44px; border: 1px solid var(--line); border-radius: 30px; background: var(--panel); backdrop-filter: blur(10px); box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28); } .brand { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 34px; } .brand-mark { position: relative; width: 18px; height: 18px; border: 4px solid var(--accent); border-radius: 4px; transform: rotate(3deg); box-shadow: 10px -10px 0 -6px var(--accent); } .brand-text { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); } .divider { width: 84px; height: 2px; margin: 0 auto 28px; border-radius: 999px; background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%); box-shadow: 0 0 18px var(--accent-soft); } h1 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.1; letter-spacing: -0.04em; font-weight: 650; } p { margin: 16px auto 0; max-width: 480px; font-size: 1.02rem; line-height: 1.6; color: var(--muted); } footer { padding: 22px 20px 26px; text-align: center; color: rgba(255, 255, 255, 0.86); font-size: 1rem; } footer strong { color: #fff; font-weight: 600; } @media (max-width: 640px) { .shell { padding: 42px 24px 34px; border-radius: 22px; } .brand { gap: 12px; margin-bottom: 28px; } .brand-text { letter-spacing: 0.1em; } p { font-size: 0.97rem; } } </style> </head> <body> <main> <section class="shell" aria-label="Jailobeam Parking Page"> <div class="brand"> <span class="brand-mark" aria-hidden="true"></span> <span class="brand-text">Jailobeam</span> </div> <div class="divider" aria-hidden="true"></div> <h1>Reserved.</h1> <p>This address is currently not assigned to a public website.</p> </section> </main> <footer>Powered by <strong>Jailobeam</strong></footer> </body> </html>