body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #a2c4f9, #2962ff);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
h2 {
    margin-top: 0;
    font-weight: normal;
}
.box {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    margin-top: 1rem;
}
.countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    text-align: center;
    flex-wrap: wrap;            /* Zeilenumbruch bei kleinen Bildschirmen */
    gap: 0.75rem;               /* Abstand zwischen den Elementen */
    font-size: 1.2rem;          /* Leicht kleinere Schrift auf kleineren Geräten */
}

.countdown div {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    min-width: 60px;            /* Kleinere Mindestbreite */
    flex: 1 1 80px;             /* Flexibles Wachstum und Schrumpfen */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.countdown span {
    display: block;
    font-size: 1.8rem;          /* Etwas kleinere Ziffern */
    font-weight: bold;
}

@media (min-width: 480px) {
    .countdown {
        font-size: 1.5rem;        /* Größere Schrift auf größeren Bildschirmen */
        flex-wrap: nowrap;        /* Kein Zeilenumbruch */
        gap: 1rem;
    }

    .countdown div {
        min-width: 80px;
        flex: none;               /* Fixe Größe */
    }

    .countdown span {
        font-size: 2rem;
    }
}
.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;      /* Zentriert horizontal */
    justify-content: center;  /* Zentriert vertikal, falls mehr Platz vorhanden */
}

@media(min-width: 530px) {
    .button-group {
        flex-direction: row;
        align-items: center;      /* Vertikale Zentrierung bei horizontaler Ausrichtung */
        justify-content: center;  /* Horizontale Zentrierung */
    }
}
a.button {
    display: inline-block;
    background: #fff;
    color: #2962ff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: bold;
    transition: background 0.3s;
}
a.button:hover {
    background: #e3e9ff;
}
.footer-message {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
}


.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}
.info-item svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.food-note {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}