/* Standard: Dark / Terminal Style */
:root {
    --bg-color: #0c0c0c;
    --text-color: #00ff00; /* Terminal Grün */
    --link-color: #00cc00;
    --font-family: 'Courier New', Courier, monospace;
}

/* Light Theme */
[data-theme="light"] {
    --bg-color: #ffffff;
    --text-color: #222222;
    --link-color: #0055ff;
    --font-family: sans-serif;
}

/* Default Theme (Modern Dark) */
[data-theme="default"] {
    --bg-color: #1e1e1e;
    --text-color: #e0e0e0;
    --link-color: #4fc3f7;
    --font-family: sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 20px;
    line-height: 1.6;
}

nav ul { list-style: none; padding: 0; border-bottom: 1px solid var(--text-color); }
nav li { display: inline; margin-right: 15px; }
a { color: var(--link-color); text-decoration: none; }
a:hover { text-decoration: underline; }
.theme-switcher { margin-bottom: 20px; }
button { cursor: pointer; padding: 5px 10px; }