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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    /* Richtiges Dark Mode Grau - nicht #000 (zu hart), sondern #121212 */
    background-color: #000; 
    /* Helle Schrift, aber nicht #fff (blendet), sondern leicht abgetönt */
    color: #00CED1; 
    padding: 20px;
}

header {
    background: #1f1f1f; /* Etwas heller als der Hintergrund */
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #333; /* Dezenter Rahmen */
}

main {
    margin-top: 20px;
    background: #1e1e1e; /* Dunkelgrauer Container */
    color: #d1d1d1;
    padding: 20px;
    border-radius: 5px;
    /* Schatten für Tiefe, auch im Dark Mode wichtig */
    box-shadow: 0 4px 6px rgba(0,0,0,0.5); 
    border: 1px solid #333;
}

h1, h2, h3 {
    color: #fff; /* Überschriften dürfen knallen */
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888; /* Footer darf dunkler sein */
}

/* Falls du Links hast, müssen die heller sein als das Standard-Blau */
a {
    color: #00CED1;  /* Hier kommt dein Türkis rein */
    text-decoration: none;
    transition: color 0.2s; /* Macht den Hover-Effekt weicher */
}

a:hover {
    color: #fff; /* Beim Drüberfahren wird es weiß (oder was du willst) */
    text-decoration: underline;
}