/* Globale Variablen für das Theme */
:root {
    --bg-dark: #0a0a0c;
    --bg-panel: #16161a;
    --text-main: #a9b1d6;
    --accent-green: #9ece6a;
    --accent-red: #f7768e;
    --accent-blue: #7aa2f7;
    --font-mono: "Courier New", Courier, monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

/* Boot Screen (Terminal Emulation) */
#boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    color: var(--accent-green);
    font-family: var(--font-mono);
    padding: 20px;
    z-index: 9999;
    overflow: hidden;
}

.terminal-content {
    font-size: 1.1rem;
    line-height: 1.5;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ==========================================================
   COOL HUD NAVBAR & ANIMATIONS (Sticky & Overlapping)
   ========================================================== */

.navbar {
    position: sticky; /* Klebt oben fest */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Immer ganz oben über allen Elementen */
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4%;
    
    /* Cyberpunk Terminal-HUD Look: Halbtransparent mit Unschärfe-Filter */
    background: rgba(12, 13, 18, 0.85); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Dezente leuchtende Unterkante */
    border-bottom: 2px solid #24283b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(122, 162, 247, 0.1);
    
    flex-wrap: wrap;
    gap: 15px;
    transition: all 0.3s ease;
}

/* --- ANIMIERTES LOGO (FG_SYS) --- */
.nav-brand {
    font-family: var(--font-mono, monospace);
    font-weight: bold;
    font-size: 1.3rem;
    color: #7aa2f7; /* Tokyo Night Blue */
    text-shadow: 0 0 8px rgba(122, 162, 247, 0.5);
    cursor: pointer;
    letter-spacing: 1px;
    animation: terminal-flicker 4s infinite; /* Subtiles CRT-Flimmern */
}

.nav-brand span {
    color: #9ece6a; /* Grüner Pfeil */
}

/* Der blinkende Terminal-Block-Cursor */
.nav-brand::after {
    content: "▋";
    color: #9ece6a;
    margin-left: 4px;
    animation: terminal-cursor 0.8s infinite;
}

/* --- NAV LINKS (DIE ORDNERPFADE) --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap; /* Bricht automatisch in die nächste Zeile um */
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: inline-block;
    font-family: var(--font-mono, monospace);
    font-size: 0.9rem;
    color: #a9b1d6;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid transparent;
    background: rgba(26, 27, 38, 0.3);
    transition: all 0.2s ease;
}

/* Cool Terminal-Hover-Effekt */
.nav-links a:hover {
    color: #9ece6a; /* Text wird grün */
    background: rgba(158, 206, 106, 0.1); /* Sanfter grüner Hintergrund */
    border-color: rgba(158, 206, 106, 0.3);
    box-shadow: 0 0 10px rgba(158, 206, 106, 0.2);
    transform: translateY(-1px);
}

/* Simuliert ein aktives Terminal-Kommando (Fügt ein "> " vor dem Link beim Hovern ein) */
.nav-links a::before {
    content: "> ";
    opacity: 0;
    color: #9ece6a;
    transition: opacity 0.2s ease;
}
.nav-links a:hover::before {
    opacity: 1;
}

/* --- RESPONSIVE BEHAVIOR (Wenn der Platz ausgeht) --- */
@media (max-width: 1024px) {
    .navbar {
        flex-direction: column; /* Logo oben, Menü darunter */
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    
    .nav-links {
        justify-content: center; /* Zentriert die Links, wenn sie umbrechen */
        width: 100%;
        gap: 8px;
    }
    
    .nav-links a {
        font-size: 0.85rem; /* Etwas kleiner auf Tablets/Handys */
        padding: 5px 8px;
    }
}

@media (max-width: 480px) {
    /* Optimierung für sehr kleine Smartphones */
    .nav-links {
        flex-direction: column; /* Alle Pfade sauber untereinander stapeln */
        width: 100%;
        gap: 5px;
    }
    
    .nav-links li, .nav-links a {
        width: 100%; /* Links gehen über die volle Breite */
        text-align: left;
    }
    
    .navbar {
        max-height: 300px; /* Verhindert, dass die Nav das ganze Handy blockiert */
        overflow-y: auto; /* Erlaubt internes Scrollen der Navigation, falls nötig */
    }
}

/* --- ANIMATIONS-LOGIK --- */
@keyframes terminal-cursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes terminal-flicker {
    0%, 100% { opacity: 1; }
    23% { opacity: 1; }
    24% { opacity: 0.92; }
    26% { opacity: 0.95; }
    27% { opacity: 0.88; }
    30% { opacity: 1; }
    61% { opacity: 1; }
    62% { opacity: 0.94; }
    63% { opacity: 0.97; }
    65% { opacity: 0.91; }
    66% { opacity: 1; }
}


/* Hero Section & Glitch Effect */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.glitch-wrapper {
    position: relative;
}

.glitch {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: white;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-red);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 44px, 0); }
    20% { clip: rect(85px, 9999px, 14px, 0); }
    40% { clip: rect(14px, 9999px, 90px, 0); }
    60% { clip: rect(55px, 9999px, 43px, 0); }
    80% { clip: rect(2px, 9999px, 76px, 0); }
    100% { clip: rect(88px, 9999px, 12px, 0); }
}

.subtitle {
    font-family: var(--font-mono);
    color: var(--accent-green);
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Content Sections */
.content-section {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.section-header h2 {
    font-family: var(--font-mono);
    color: var(--accent-blue);
    border-bottom: 1px solid #292e42;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

/* Grid Layouts */
/* --- Flexibles Grid für die Boxen --- */
.grid-layout {
    display: grid;
    /* auto-fit sorgt dafür, dass die Boxen mindestens 300px breit sind. 
       Gibt es nicht genug Platz für 3 Boxen nebeneinander, springen sie automatisch untereinander! */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Sicherstellen, dass das Profilbild niemals aus seiner Box ausbricht */
.photo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.profile-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

/* Fastfetch Feintuning: Verhindert, dass das ASCII-Logo bei kleinen Fenstern rechts rausquillt */
.fastfetch-wrapper {
    display: flex;
    flex-wrap: wrap; /* Erlaubt Textumbruch unter das Logo auf kleinen Displays */
    gap: 15px;
    overflow-x: auto; /* Falls es extrem schmal wird, gibt es eine interne Scrollbar statt Layout-Bruch */
}

.card {
    background-color: var(--bg-panel);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.card h3 {
    margin-bottom: 1rem;
    color: white;
}

/* Philosophy Section */
.lead-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.prop-box {
    background-color: var(--bg-panel);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.box-header {
    padding: 1rem;
    font-family: var(--font-mono);
    font-weight: bold;
    color: #fff;
}

.reject {
    border: 1px solid var(--accent-red);
}

.reject .box-header {
    background-color: rgba(247, 118, 142, 0.2);
}

.accept {
    border: 1px solid var(--accent-green);
}

.accept .box-header {
    background-color: rgba(158, 206, 106, 0.2);
}

.retro-gif {
    margin: 2rem auto;
    display: block;
    max-width: 150px;
    image-rendering: pixelated;
}

.prop-box p {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Contact Terminal */
.terminal-box {
    background-color: #000;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    font-family: var(--font-mono);
}

.command {
    color: var(--accent-green);
    margin: 1rem 0 2rem 0;
}

.command::before {
    content: "$ ";
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-green);
    color: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #292e42;
    margin-top: 4rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.status-ok {
    color: var(--accent-green);
    font-weight: bold;
}


.photo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem; /* Etwas weniger Padding, damit das Bild größer wirkt */
    overflow: hidden; /* Falls das Bild ungerade Maße hat */
}

.profile-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px; /* Passt zu den abgerundeten Ecken der Karten */
    border: 1px solid #292e42; /* Subtiler Rand */
    
    /* Ein leichter FOSS-konformer Filter, der das Bild im
       Standardzustand etwas abdunkelt, damit es besser ins 
       Dark-Theme passt */
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover-Effekt: Bild wird normal, wenn man drüberfährt */
.profile-img:hover {
    filter: brightness(1) contrast(1);
    transform: scale(1.02); /* Minimales Vergrößern */
}

/* Anpassung für sehr kleine Bildschirme, damit das Foto 
   nicht zu riesig wird, wenn das Grid auf einspaltig springt */
@media (max-width: 600px) {
    .profile-img {
        max-height: 300px;
        width: auto;
    }
}

/* --- Init & Systemd Sektion --- */
.init-card {
    border-left: 4px solid var(--accent-red);
}

.init-card ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.init-card li {
    margin-bottom: 0.8rem;
    color: #c0caf5; /* Leicht angegrauter Text für bessere Lesbarkeit */
}

.init-card code {
    background-color: #000;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: var(--font-mono);
    color: var(--accent-green);
}

/* --- Propaganda Galerie --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #292e42;
    background-color: #000;
    aspect-ratio: 1 / 1; /* Hält die Bilder quadratisch */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(20%) contrast(1.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1);
    cursor: crosshair; /* Passt zum "Terminal/Hacker"-Theme */
}

/* Konsolen-Trenner für das Privacy-Log */
.terminal-box p {
    margin-bottom: 0.5rem;
}

/* --- Fastfetch Design --- */
.fastfetch-card {
    grid-column: span 1; /* Bleibt flexibel im Grid */
    background-color: var(--bg-panel);
}

.fastfetch-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.ascii-devuan {
    color: var(--accent-red); /* Nutzt das markante Devuan-Rot aus deinem Theme */
    line-height: 1.1;
    font-weight: bold;
    white-space: pre;
}

/* Die eckigen Klammern und das Logo weiß/grau färben, außer die Akzente */
.ascii-tux span {
    color: #787c99;
}

.fetch-info {
    line-height: 1.4;
}

.fetch-user {
    color: var(--accent-red);
    font-weight: bold;
}

.fetch-user span {
    color: var(--text-main);
}

.fetch-sep {
    color: #444b6a;
    margin-bottom: 5px;
}

.fetch-info p span {
    color: var(--accent-blue);
    font-weight: bold;
}

/* Mobile Optimierung: Bei sehr kleinen Bildschirmen Tux über den Text setzen */
@media (max-width: 768px) {
    .fastfetch-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .ascii-tux {
        margin-bottom: 10px;
    }
}

/* --- FOSS Alternativen Matrix --- */
.table-card {
    padding: 24px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    /* Verhindert hässliche Scrollbars auf Desktop, erlaubt aber Wischen auf Mobile */
    -webkit-overflow-scrolling: touch; 
}

.foss-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    min-width: 600px; /* Garantiert Lesbarkeit auf kleinen Bildschirmen beim Scrollen */
}

.foss-table th, 
.foss-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #2a2e45; /* Cleaner Trenner im Matrix-Stil */
    vertical-align: top;
    line-height: 1.5;
}

.foss-table th {
    color: var(--accent-blue);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 10px;
}

.foss-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02); /* Dezenter Hover-Effekt bei Zeilen */
}

.bloat-text {
    color: var(--accent-red);
    font-weight: bold;
}

.foss-text {
    color: #9ece6a; /* Ein sauberes Terminal-Grün für die FOSS-Lösungen */
    font-weight: bold;
}

/* --- Live Server Dashboard (htop/btop Style) --- */
.dashboard-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 20px;
    margin-bottom: 15px;
    background-color: rgba(26, 27, 38, 0.6);
    border: 1px dashed var(--accent-blue);
    align-items: center;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

#traffic-slider {
    accent-color: var(--accent-blue);
    cursor: pointer;
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.switch-label input {
    display: none;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--accent-blue);
    display: inline-block;
    position: relative;
    background: transparent;
}

.switch-label input:checked + .custom-checkbox::after {
    content: "X";
    position: absolute;
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: bold;
    top: -1px;
    left: 2px;
    font-family: var(--font-mono);
}

.htop-container {
    background-color: #0c0d12 !important; /* Tiefschwarzer Terminal-Hintergrund */
    border: 1px solid #24283b;
    padding: 15px;
    font-family: var(--font-mono);
    color: #c0caf5;
}

.htop-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #24283b;
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #7aa2f7;
}

.htop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .htop-grid {
        grid-template-columns: 1fr;
    }
}

.htop-cpu-panel h4, .htop-sys-panel h4, .htop-procs h4 {
    color: #ff9e3b;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cpu-core-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.core-label {
    width: 45px;
    color: #73daca;
}

.meter-bar-wrapper {
    flex-grow: 1;
    background-color: #1a1b26;
    height: 12px;
    margin: 0 10px;
    border: 1px solid #444b6a;
    position: relative;
}

.meter-bar {
    height: 100%;
    background-color: #9ece6a; /* Grün für normale Last */
    transition: width 0.3s ease, background-color 0.3s ease;
}

.meter-bar.warning { background-color: #e0af68; } /* Gelb */
.meter-bar.critical { background-color: #f7768e; } /* Rot */

.core-val, .meter-val {
    width: 50px;
    text-align: right;
    font-size: 0.8rem;
}

.meter-block {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.meter-label {
    width: 45px;
    color: #7aa2f7;
}

.meter-block .meter-val {
    width: 110px;
}

.net-stats {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.net-graph {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    background: #1a1b26;
    border: 1px solid #444b6a;
    padding: 3px;
    overflow: hidden;
}

.net-graph-bar {
    flex-grow: 1;
    background: #7aa2f7;
    min-width: 4px;
    transition: height 0.3s ease;
}

.htop-procs {
    margin-top: 15px;
    border-top: 1px solid #24283b;
    padding-top: 12px;
}

.proc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    text-align: left;
}

.proc-table th {
    color: #565f89;
    padding-bottom: 5px;
    border-bottom: 1px dashed #24283b;
}

.proc-table td {
    padding: 4px 0;
    color: #a9b1d6;
}

.proc-table tr.active-proc td {
    color: #9ece6a;
}

/* ==========================================================
   COOL SCROLLING EFFECTS & CUSTOM SCROLLBAR
   ========================================================== */

/* 1. Flüssiges Scrollen aktivieren & Header-Versatz definieren */
html {
    scroll-behavior: smooth;
}

/* Verhindert, dass die Sektions-Überschriften von der klebrigen Navbar verdeckt werden */
.content-section {
    scroll-margin-top: 100px; /* Schiebt den Landepunkt nach unten, damit Platz für das HUD ist */
}

/* 2. Coole Custom Terminal-Scrollbar (Rechte Bildschirmkante) */
::-webkit-scrollbar {
    width: 10px; /* Breite der Scrollbar */
    background-color: #0c0d12;
}

::-webkit-scrollbar-track {
    background: #0c0d12;
    border-left: 1px solid #24283b;
}

::-webkit-scrollbar-thumb {
    background: #24283b;
    border: 2px solid #0c0d12;
    border-radius: 4px;
    transition: background 0.2s ease;
}

/* Wenn man mit der Maus über die Scrollbar fährt, leuchtet sie Terminal-Blau */
::-webkit-scrollbar-thumb:hover {
    background: #7aa2f7;
    box-shadow: 0 0 10px rgba(122, 162, 247, 0.5);
}

/* 3. Style für das aktive Verzeichnis beim Scrollen (ScrollSpy) */
.nav-links a.active-link {
    color: #9ece6a !important; /* Festes Terminal-Grün */
    background: rgba(158, 206, 106, 0.15) !important;
    border-color: rgba(158, 206, 106, 0.4) !important;
    box-shadow: 0 0 12px rgba(158, 206, 106, 0.25);
}

/* Der Pfeil bleibt dauerhaft sichtbar, solange die Sektion aktiv ist */
.nav-links a.active-link::before {
    content: "> ";
    opacity: 1 !important;
}

/* Animation für den interaktiven Boot-Prompt */
@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px rgba(224, 175, 104, 0.4); }
    50% { opacity: 0.4; text-shadow: 0 0 0px rgba(224, 175, 104, 0); }
}

.boot-prompt-text {
    font-family: var(--font-mono, monospace);
    font-size: 1.1rem;
    text-align: center;
    margin-top: 20%;
}

/* --- LEGAL DISCLAIMER BOXES --- */
.legal-notice {
    font-family: var(--font-mono, monospace);
    font-size: 0.85rem;
    color: #9aa5ce; /* Leicht abgedunkelter Text, damit es nicht ablenkt */
    background: rgba(224, 175, 104, 0.03); /* Ganz zarter gelb-oranger Hauch */
    border-left: 3px solid #e0af68; /* Gelbe Warn-Kante */
    padding: 12px 15px;
    margin: 20px 0;
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
}

/* ==========================================================
   TERMINAL DISCLAIMER BOXES (Perfect Theme Integration)
   ========================================================== */

.terminal-disclaimer {
    font-family: var(--font-mono, monospace);
    font-size: 0.85rem;
    background: #16161e; /* Tieferes Terminal-Schwarz */
    border: 1px solid #24283b;
    border-left: 4px solid #f7768e; /* Tokyo Night Warn-Rot */
    padding: 15px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* Simuliert die Eingabezeile im Terminal */
.terminal-disclaimer .terminal-prompt {
    color: #7aa2f7; /* Tokyo Night Blau */
    font-weight: bold;
    margin-bottom: 8px;
    border-bottom: 1px solid #24283b;
    padding-bottom: 4px;
}

.terminal-disclaimer .terminal-command {
    color: #a9b1d6; /* Standard Textweiß */
    font-weight: normal;
}

/* Die eckigen Warn-Tags */
.terminal-disclaimer .tag-red {
    color: #f7768e;
    font-weight: bold;
}

.terminal-disclaimer .tag-yellow {
    color: #e0af68;
    font-weight: bold;
}

.terminal-disclaimer p {
    margin: 5px 0 0 0;
    color: #9aa5ce; /* Leicht gedimmter Text für den Log-Inhalt */
}
