/* Grund-Reset und Schriftart */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7; /* Sehr heller, fast weißer Hintergrund */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header und Titel */
.header {
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 900px;
}

h1 {
    font-size: 2.5em;
    font-weight: 300; /* Dünne Schrift für minimalistischen Look */
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1em;
    color: #888;
    margin-top: 0;
}

/* Daten-Container */
.data-container {
    display: flex;
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap; /* Wichtig für die mobile Ansicht */
}

/* Einzelne Daten-Kästen */
.data-box {
    flex: 1; /* Nimmt gleichen Platz ein */
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Leichter Schatten */
    text-align: center;
    transition: transform 0.3s ease;
}

.data-box:hover {
    transform: translateY(-5px);
}

/* Pastell-Akzente für die Kästen */
.direct-box {
    border-top: 5px solid #a8e6cf; /* Pastell-Mintgrün */
}

.indirect-box {
    border-top: 5px solid #ffccb6; /* Pastell-Lachsrosa */
}

/* Titel der Kästen */
.data-box h2 {
    font-size: 1.5em;
    color: #444;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Große Zahl (Vibe) */
.bitcoin-amount {
    font-size: 4.5em; /* Sehr große Schrift */
    font-weight: 700;
    margin: 10px 0;
    /* Farbanpassung für die Zahl, um sie vom Rest abzuheben */
    color: #333; 
}

.unit {
    font-size: 1em;
    color: #888;
    margin-top: 0;
}

/* Mobile Optimierung */
@media (max-width: 700px) {
    .data-container {
        flex-direction: column;
        align-items: stretch;
    }

    h1 {
        font-size: 2em;
    }

    .bitcoin-amount {
        font-size: 3.5em;
    }
}
