/* Page-local styles for the legal imprint view (DE/EN). */
body {
    background: #000;
    color: #eee;
    font-family: 'Press Start 2P', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    overflow: auto;
}
.imprint-container {
    width: min(100%, 42rem);
    animation: imprint-float 3.2s ease-in-out infinite;
}
h1 {
    color: #FFD700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8), -2px 0 rgba(120, 247, 255, 0.35), 2px 0 rgba(255, 70, 160, 0.35);
    animation: crt-jitter 1.1s steps(2, end) infinite;
}
.imprint-container p {
    animation: crt-jitter 1.25s steps(2, end) infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.28), -1px 0 rgba(120, 247, 255, 0.24), 1px 0 rgba(255, 70, 160, 0.24);
    filter: contrast(1.08);
}
.imprint-container p:nth-child(2) { animation-delay: 0.15s; }
.imprint-container p:nth-child(3) { animation-delay: 0.3s; }
.imprint-container p:nth-child(4) { animation-delay: 0.45s; }
.imprint-container p:nth-child(5) { animation-delay: 0.6s; }
.imprint-distort {
    display: block;
    max-width: 100%;
    line-height: 1.8;
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.imprint-mail {
    display: inline;
}
a {
    color: #78f7ff; /* Cyan tone for links. */
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    border: 1px solid #78f7ff;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
}
a:hover {
    background: rgba(120, 247, 255, 0.2);
}
@keyframes imprint-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-0.6deg); }
    50% { transform: translateY(4px) rotate(0.7deg); }
    75% { transform: translateY(-3px) rotate(-0.5deg); }
}
@keyframes crt-jitter {
    0%, 100% { transform: skewX(0deg) skewY(0deg) translate(0, 0); opacity: 1; }
    15% { transform: skewX(-3.4deg) skewY(0.8deg) translate(-2px, 0); opacity: 0.95; }
    32% { transform: skewX(2.9deg) skewY(-0.7deg) translate(2px, 1px); opacity: 0.9; }
    47% { transform: skewX(-1.8deg) skewY(0.4deg) translate(-1px, -1px); opacity: 0.98; }
    64% { transform: skewX(2.2deg) skewY(-0.5deg) translate(1px, 0); opacity: 0.92; }
    82% { transform: skewX(-2.6deg) skewY(0.6deg) translate(-2px, 1px); opacity: 0.96; }
}
