body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    /* Absolutes reines Schwarz der geschichtlichen Abgründe */
    background-color: #000000;
    margin: 0;
    color: #cbd5e1;
}

header {
    /* Schmutziges Schützengraben-Dunkelgrau/Khaki */
    background-color: #161c14;
    /* Staubiges Gesteins-Weiß */
    color: #f8fafc;
    padding: 30px 10px;
    text-align: center;
    border-bottom: 4px solid #b91c1c;
    box-shadow: 0 5px 25px rgba(185, 28, 28, 0.4);
}

nav ul { list-style: none; padding: 0; }
nav ul li { display: inline; margin: 0 10px; }

/* Die Links bleiben im lila Design der Reihe */
nav a {
    color: #a855f7; 
    text-decoration: none;
    font-size: 0.8em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
nav a:hover {
    color: #e9d5ff; 
    text-shadow: 0 0 10px #c084fc;
}

main {
    max-width: 900px;
    margin: 20px auto;
    /* Zerfallenes Stein- und Ruinen-Dunkelgrau */
    background: #090b08;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(185, 28, 28, 0.15);
}

h2 {
    color: #f1f5f9;
    border-bottom: 1px solid #b91c1c;
    text-shadow: 0 0 6px rgba(185, 28, 28, 0.4);
}

.track-header {
    font-size: 1.4em;
    font-weight: bold;
    color: #ef4444;
    margin: 40px 0 20px 0;
    padding: 5px 10px;
    background: #181111;
    border-radius: 4px;
    border-left: 4px solid #dc2626;
}

.verse {
    margin-bottom: 30px;
    padding: 15px;
    border-left: 2px solid #991b1b;
    position: relative;
}

/* Trennlinien im Stil eines alten Stacheldrahtzaunes oder einer roten Frontlinie */
.prog-separator {
    margin-bottom: 40px;
}
.prog-separator::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 3px;
    /* Verlauf von Dunkelruß über Kampflinien-Rot zurück zu Ruß */
    background: linear-gradient(90deg, #090b08, #991b1b, #ef4444, #dc2626, #090b08);
}

.line { font-weight: bold; color: #f8fafc; display: block; font-size: 1.05em; }
.translation { color: #94a3b8; font-style: italic; display: block; margin-top: 2px; }
.note { font-size: 0.85em; color: #fca5a5; margin-top: 5px; display: block; font-weight: 300; }

.explanation {
    background: #111410;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid #7f1d1d;
    color: #cbd5e1;
}

.resonance-box {
    background: linear-gradient(135deg, #1e1111, #090b08);
    border: 2px solid #b91c1c;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(185, 28, 28, 0.2);
}

.resonance-box h3 {
    color: #fef2f2;
    margin-top: 0;
}
.resonance-box ul { padding-left: 20px; }
.resonance-box li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.summary {
    background: #161c14;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #b91c1c;
}

.keyword {
    color: #dc2626;
    font-weight: bold;
    font-size: 1.4em;
    display: block;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Vertikale Frontlinien-Balken an den Hauptsektionen */
.prog-section, .prog-analysis, .prog-resonance, .prog-summary {
    position: relative;
}
.prog-section::before, .prog-analysis::before, .prog-resonance::before, .prog-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(#090b08, #b91c1c, #090b08);
}
