.gamejam-banner {
    background-color: #1c0e35; /* Dunkles Lila, passend zum Spielhintergrund */
    color: #ffffff;
    padding: 18px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    border-bottom: 3px solid #0055ff; /* Blaues Band als Akzent */
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gamejam-logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.logo-bracket {
    color: #0055ff; /* Schickes Blau für die Klammern */
}

.logo-highlight {
    color: #b300ff; /* Strahlendes Lila für den Titel */
}

.gamejam-status {
    font-size: 1rem;
    color: #e0e0e0;
}

.status-check {
    color: #00ff66; /* Grünes Häkchen für "Erfolgreich abgeschlossen" */
    font-weight: bold;
    margin-right: 6px;
}

.jam-link {
    color: #0088ff;
    text-decoration: underline;
    font-weight: bold;
    margin-left: 5px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.jam-link:hover {
    color: #00ff66; /* Wird beim Drüberfahren feierlich grün */
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.5);
}