body {
    font-family: Arial, sans-serif;
    background-color: rgba(0, 0, 0, 0.8); /* Schwarzer, transparenter Hintergrund */
    color: white; /* Textfarbe auf Weiß gesetzt */
    padding: 20px;
    line-height: 1.6;
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #333; /* Dunkler Hintergrund für Container */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    color: #ffcc00; /* Akzentfarbe für Titel */
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

p, li {
    margin-bottom: 10px;
}

a {
    color: #ffcc00;
    text-decoration: none; /* Entfernt Unterstreichung */
}

a:hover {
    text-decoration: underline; /* Unterstreichung beim Hover */
}

.hidden-login-link {
    color: inherit; /* Verwendet die gleiche Farbe wie die Überschrift */
    text-decoration: none; /* Keine Unterstreichung */
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px; /* Weniger Padding für kleinere Bildschirme */
    }

    h1 {
        font-size: 20px; /* Kleinere Schriftgröße */
        margin-bottom: 5px;
    }

    h2 {
        font-size: 18px; /* Kleinere Schriftgröße für h2 */
    }

    p, li {
        font-size: 14px; /* Kleinere Schriftgröße für Text */
    }

    a {
        font-size: 14px; /* Kleinere Schriftgröße für Links */
    }
}
