/* Vollbild, kein Scrollen, zentriert */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Der komplette Content-Block, der skaliert wird */
#root {
    display: flex;
    flex-direction: column;
    background: transparent;
}

/* Oberer Balken */
.top-bar {
    background: #7b0000;
    color: #fff;
    text-align: center;
     padding: 36px 0px 28px 0;
    font-size: 60px;
    font-weight: bold;
    border-left: 15px solid #d4af37;
    border-right: 15px solid #d4af37;
    border-top: 15px solid #d4af37;
    border-bottom: 15px solid #d4af37;
    box-sizing: border-box;
}


/* Bildbereich */
.image-wrapper {
    width: 100%;
    box-sizing: border-box;

    /* 🔥 WICHTIG: Sichtbarkeit der oberen Goldlinie */
    margin-bottom: 4px;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;      /* Seitenverhältnis bleibt IMMER erhalten */
}

/* Unterer Balken */
.bottom-box {
    background: #7b0000;
    color: #fff;
    text-align: center;
    /* mehr Platz für schöne Linien */
    padding: 28px 0 36px 0;
    border-left: 15px solid #d4af37;
    border-right: 15px solid #d4af37;
    /* ✨ Dünne Goldlinien oben + unten */
    border-top: 15px solid #d4af37;
    border-bottom: 15px solid #d4af37;

    box-sizing: border-box;
}

.info-text {
    font-size: 35px;
    margin-bottom: 10px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    margin-top: 5px;
}

.c-box strong {
    font-size: 55px;
    font-weight: bold;
    color: #fff;
}

.c-box span {
    font-size: 25px;
    color: #fff;
    display: block;
    margin-top: 5px;
}

/* Zielzeit-Anzeige direkt über dem Counter */
.final-time {
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    margin: 12px 0 8px 0;
    color: #fff;
    text-shadow: 0 0 6px rgba(0,0,0,0.7);
}