/* Website Navigation oben */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.btn-account {
    background: var(--flyme-copper);
    padding: 8px 15px;
    border-radius: 10px;
}

/* Hero Bereich auf der Startseite */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

.cta-btn {
    background: white;
    color: var(--flyme-green);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 20px;
}

/* Info Bereich */
.glass-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Anpassung der App-Dashboard Elemente */
.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.miles-badge {
    background: var(--unidays);
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.card {
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
}
