body {
    background-color: white;
}

h1 {
    text-align: center;
    margin-top: 20rem;
    margin-bottom: 20rem;
}

@font-face {
    font-family: snb;
    src: url(/assets/fonts/StickNoBills-VariableFont_wght.ttf);
}

@font-face {
    font-family: wosa;
    src: url(/assets/fonts/Work_Sans/WorkSans-VariableFont_wght.ttf);
}


.banner {
    position: relative; /* Wichtig: Ermöglicht die absolute Positionierung des Kindelements */
    display: inline-block; /* Oder block, je nachdem, wie dein Bild im Layout ist */
}

.banner img {
    display: block; /* Entfernt zusätzlichen Platz unter dem Bild */
    max-width: 100%; /* Stellt sicher, dass das Bild responsiv ist */
    height: auto;
    margin-bottom: 2rem;
}

.main-text h4 {
    font-family: snb;
    width: 80%;
    margin: auto;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem ;
}

.main-text p {
    font-family: wosa;
    width: 80%;
    margin: auto;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 2rem;
}

.countdown {
    font-family: snb;
    width: 80%;
    margin: auto;
    font-size: 4rem;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    color: rgb(126, 97, 42);
}


/* Player Challenge songs */
        
/* body { 
    background-color: #121212; /* Dunkles Design für bessere Lesbarkeit
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Abstand zwischen den Playern
} */

/* --- Einzelner Player Zeile --- */
.single-player {
    background-color: #474422;
    margin: auto;
    max-width: 95%;
    height: 70px;
    padding: 0 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 1rem;
    color: white;
}

.single-player:hover {
    background-color: #707070;
}

/* Controls */
.play-btn {
    background: #ffffff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(48, 48, 25);
    font-size: 14px;
    flex-shrink: 0;
}

/* Infos in einer Zeile */
.track-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
}

.title { font-weight: bold; font-size: 0.9rem; }
.artist { color: #ffffff; font-size: 0.85rem; }
.genre-badge { 
    font-size: 0.65rem; 
    border: 1px solid #b8b8b8; 
    padding: 1px 6px; 
    border-radius: 3px; 
    color: #ffffff; 
}

/* Zeit & Fortschritt */
.time-display {
    font-family: wosa;
    color: #ffffff;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0;
}

@media (max-width: 500px) {
    .genre-badge { display: none; }
}