/* ========================================================= */
/* --- GRUNDDESIGN MANIFEST --- */
/* ========================================================= */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Ccircle cx="10" cy="20" r="1" fill="%23fff"/%3E%3Ccircle cx="30" cy="50" r="0.5" fill="%23fff"/%3E%3Ccircle cx="50" cy="10" r="1.5" fill="%23fff"/%3E%3Ccircle cx="70" cy="80" r="0.8" fill="%23fff"/%3E%3Ccircle cx="90" cy="30" r="1" fill="%23fff"/%3E%3C/svg%3E') repeat;
    opacity: 0.15;
    z-index: -1;
    animation: stars-twinkle 5s infinite alternate;
}

@keyframes stars-twinkle {
    0% { opacity: 0.15; }
    100% { opacity: 0.25; }
}

header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,255,0.3));
    border-bottom: 2px solid #ffd700;
}

body {
    background-color: #050505;
    color: #d1d1d1;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    padding: 40px;
    max-width: 900px;
    margin: auto;
    border: 1px solid #1a1a1a;
}

h1 { color: #00e5ff; text-transform: uppercase; letter-spacing: 4px; border-bottom: 2px solid #ffd700; padding-bottom: 10px; }
h2 { color: #ffd700; margin-top: 40px; text-transform: uppercase; font-size: 1.2em; }
.highlight { color: #00e5ff; font-weight: bold; }
.meta { font-style: italic; color: #666; margin-bottom: 30px; border-left: 3px solid #00e5ff; padding-left: 15px; }
.section { margin-bottom: 30px; text-align: justify; }
a { color: #ffd700; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========================================================= */
/* --- UI & NAVIGATION (Manifest-Edition) --- */
/* ========================================================= */
.cyber-nav {
    background: rgba(0, 0, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00e5ff; /* Manifest-Cyan */
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 4px 10px rgba(0,0,255,0.3);
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    color: #00e5ff;
    letter-spacing: 3px;
    font-weight: bold;
}

.seq-indicator {
    color: #ffd700; /* Manifest-Gold */
    font-size: 0.8rem;
    margin-left: 15px;
    opacity: 0.8;
    letter-spacing: 2px;
}

.back-to-hub {
    color: #00e5ff;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-to-hub:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
    text-decoration: none;
}

/* ========================================================= */
/* --- FOOTER & EASTER EGG (Manifest-Edition) --- */
/* ========================================================= */
footer {
    margin-top: 80px;
    padding: 40px 20px;
    border-top: 2px solid #1a1a1a;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    background: rgba(0, 0, 0, 0.5);
}

.footer-disclaimer {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.4;
}

.footer-bottom {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 1px;
}

footer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #00e5ff;
    border-bottom: 1px solid #00e5ff;
    text-decoration: none;
}

/* Das geheime Traum-Fenster */
.dream-trigger {
    cursor: pointer;
    position: relative;
    display: inline-block; /* WICHTIG: Damit die Box genau über dem © ankert */
    transition: color 0.5s ease;
}

.dream-trigger:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #00e5ff;
}

.dream-hint {
    position: absolute;
    bottom: 150%; /* Schiebt die Box dynamisch nach oben, ohne den Text zu überlappen */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 5, 8, 0.95);
    border: 1px solid #00e5ff;
    color: #00e5ff;
    padding: 5px 10px;
    font-size: 0.6rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden; /* WICHTIG: Versteckt die Box komplett im Ruhezustand */
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.dream-trigger:hover .dream-hint {
    opacity: 1;
    visibility: visible;
}

/* Das geheime Traum-Fenster (nach dem Klick) */
#dream-overlay {
    display: none;
    position: fixed;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: rgba(5, 5, 8, 0.95);
    border: 1px solid #ffd700;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 1);
    font-style: italic;
    font-size: 0.9rem;
    color: #d1d1d1;
    cursor: pointer;
}