.gamejam-banner {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace; /* Schöner Terminal-Look */
    border-bottom: 3px solid #00ff66; /* Giftgrüner Akzent für den "Live"-Vibe */
    margin-bottom: 20px;
}

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

.logo-bracket {
    color: #888;
}

.logo-highlight {
    color: #00ff66; /* Passt perfekt zu einem klassischen Dev-Grün */
}

.gamejam-status {
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Pulsierender Live-Punkt */
.status-dot {
    width: 10px;
    height: 10px;
    background-color: #ff3333;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.status-check {
    color: #00ff66;
    font-weight: bold;
    margin-right: 5px;
}

.jam-link {
    color: #00ff66;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s ease;
}

.jam-link:hover {
    color: #ffffff; /* Wird beim Drüberfahren weiß */
}