:root {
    --bg-color: #000;
    --text-color: #fff;
    --accent-color: #aaa;
    --font-main: "monotalic", sans-serif;
    --font-mono: "degular-mono", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none; 
}

a, button, .interactive-el {
    cursor: none;
}

/* Header (Konsistent zu den anderen Seiten) */
header { 
    position: fixed; 
    top: 0; width: 100%; 
    padding: clamp(20px, 4vw, 40px) clamp(20px, 5vw, 60px); 
    display: flex; justify-content: center; 
    z-index: 100; pointer-events: none; 
}

header nav { 
    display: flex; align-items: center;
    gap: clamp(20px, 6vw, 80px); 
    font-size: clamp(12px, 1.2vw, 14px); 
    letter-spacing: 1px; pointer-events: auto;
}

header nav a { color: var(--accent-color) !important; text-decoration: none; transition: color 0.3s ease; }
header nav a:hover { color: #fff !important; }
.small-logo { font-weight: 700; white-space: nowrap; }

/* Footer */
footer { 
    position: fixed;
    bottom: 0;
    width: 100%; 
    padding: 20px clamp(20px, 5vw, 60px); 
    display: flex; justify-content: space-between; 
    align-items: center; 
    background: linear-gradient(to top, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}
footer p, footer a { color: #555 !important; font-size: clamp(10px, 1vw, 12px); text-decoration: none; transition: color 0.3s ease; }
footer a.active, footer a:hover { color: #fff !important; }

/* Content Bereich */
.impressum-main {
    padding: 160px clamp(20px, 8vw, 120px) 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impressum-content {
    width: 100%;
    max-width: 600px; /* Schön schmal für Lesbarkeit */
}

.impressum-content h1 {
    font-size: clamp(40px, 8vw, 80px);
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.impressum-content h2 {
    font-size: clamp(18px, 2vw, 24px);
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 400;
}

.impressum-content p {
    font-family: var(--font-mono);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: #ccc;
    font-weight: 400;
}

/* Custom Cursor System */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 10000; }
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor-ring { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.4); transition: width 0.3s, height 0.3s, background-color 0.3s; }

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInAnim {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .impressum-main { padding-top: 120px; padding-left: 20px; padding-right: 20px; }
}

@media (pointer: coarse), (hover: none), (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none !important; }
    html, body, a, button, .interactive-el { cursor: auto; }
}