        :root {
            --sn-blue: #006699;
            --sn-blue-glow: rgba(0, 102, 153, 0.3);
            --bg-dark: #0a0a0b;
            --card-bg: rgba(255, 255, 255, 0.03);
        }

        /* Sanftes Scrollen zu den Ankern */
        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-dark);
            color: #e0e0e0;
            font-family: 'Verdana', sans-serif;
            margin: 0;
            line-height: 1.6;
        }

        .sn-header {
            border-bottom: 2px solid var(--sn-blue);
            padding: 20px;
            background: rgba(0, 0, 0, 0.9);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-back { color: #888; text-decoration: none; border: 1px solid #444; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; }
        .btn-back:hover { color: var(--sn-blue); border-color: var(--sn-blue); }

        .main-content { max-width: 1000px; margin: 30px auto; padding: 0 15px; }

        /* Inhaltsverzeichnis (Anker-Menü) */
        .toc {
            background: rgba(0, 102, 153, 0.25);
            border: 1px dashed var(--sn-blue);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 40px;
        }
        .toc h3 { margin-top: 0; color: #fff; font-size: 1.5rem; }
        .toc ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 15px; }
        .toc a { color: var(--sn-blue); text-decoration: none; font-size: 0.9rem; font-weight: bold; }
        .toc a:hover { text-decoration: underline; color: #fff; }

        section {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 50px;
            position: relative;
        }

        h2 { color: var(--sn-blue); border-bottom: 1px solid var(--sn-blue-glow); padding-bottom: 10px; margin-top: 0; font-size: 1.2rem;}

        /* "Back to Top" Button */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--sn-blue);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: 0.3s;
            z-index: 99;
        }
        #backToTop:hover { transform: scale(1.1); background: #0088cc; }

        .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-top: 20px; }
        .info-item { background: rgba(255,255,255,0.10); padding: 15px; border-left: 3px solid var(--sn-blue); border-radius: 4px; }





/* Verhindert, dass Anker unter dem Header verschwinden */
section[id] {
    scroll-margin-top: 95px; /* Hier die Höhe deines Headers eintragen */
}
nav[id] {
    scroll-margin-top: 95px; /* Hier die Höhe deines Headers eintragen */
}



/* Der Menü-Button */
.menu-toggle {
    background: var(--sn-blue);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
}

/* Das ausklappbare Seitenmenü */
.side-nav {
    height: 100%;
    width: 0; /* Startbreite */
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgba(10, 10, 11, 0.95); /* Dunkel wie dein Hintergrund */
    overflow-x: hidden;
    transition: 0.5s; /* Sanftes Ein- und Ausfahren */
    padding-top: 60px;
    border-right: 2px solid var(--sn-blue);
}

.side-nav a {
    padding: 2px 32px;
    text-decoration: none;
    font-size: 0.9rem;
    color: #e0e0e0;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover {
    color: var(--sn-blue);
    background: var(--card-bg);
}

.side-nav .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}


#fieldset_blue		{border: 0px solid #ffffff; box-shadow:0 0 10px #fff; border-style: solid; border-radius: 6px; background: #006699;}




/* Accordion Styling */
.accordion {
    margin-top: 20px;
    border: 1px solid var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: var(--card-bg);
    color: white;
    padding: 15px 20px;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    cursor: pointer;
    font-size: 1.0rem;
    display: flex;
    justify-content: space-between;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(0, 102, 153, 0.2);
}

.accordion-content {
    font-size: 0.9rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.10);
    padding: 0 20px; /* Padding oben/unten wird per JS geregelt */
}

.accordion-header span {
    transition: transform 0.3s;
}

/* Wenn aktiv, dreht sich das Plus zum Minus/Kreuz */
.accordion-header.active span {
    transform: rotate(45deg);
    color: var(--sn-blue);
}









.accordion-content ul {
    padding-left: 20px;
    margin: 10px 0;
}
.accordion-content li {
    margin-bottom: 8px;
}






/* Spezielle Formatierung für externe Links */
a.external-link {
    color: #ffffff;             /* Standardmäßig Weiß */
    text-decoration: none;      /* Keine normale Unterstreichung */
    border-bottom: 1px dashed var(--sn-blue); /* Gestrichelte Linie in Space-Blau */
    transition: all 0.3s ease;
}

/* Zustand nach dem Klick (besucht) - bleibt Weiß */
a.external-link:visited {
    color: #ffffff;
}

/* Hover-Effekt: Text wird Blau, Linie wird durchgezogen */
a.external-link:hover {
    color: var(--sn-blue);
    border-bottom: 1px solid var(--sn-blue);
    cursor: pointer;
}





/* Das Linksymbol automatisch voranstellen */
a.external-link::before {
    content: "\1F517"; /* Das Unicode-Zeichen für eine Kette/Link (🔗) */
    display: inline-block;
    margin-right: 6px; /* Abstand zum Text */
    font-size: 0.9rem;  /* Etwas kleiner als der Text, damit es dezent wirkt */
    text-decoration: none; /* Verhindert, dass das Symbol unterstrichen wird */
    color: var(--sn-blue); /* Das Symbol leuchtet immer im Space-Blau */
}

/* Optional: Das Symbol beim Hovern leicht bewegen oder aufhellen */
a.external-link:hover::before {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}