/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .nav-item img { width: 20px; height: 20px; }
    .bottom-nav { height: 70px; }
    .Header h1 { font-size: 1.6rem; }
}

@media (min-width: 600px) {
    .bottom-nav { height: 90px; }
}
/* ---------- Grundlayout ---------- */
body {
    margin: 0;
    padding: 0;
    background: #353535;
    color: white;
    font-family: 'Franklin Gothic Medium','Arial Narrow',Arial,sans-serif;
}
/* ---------- Header ---------- */
.Header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Dynamisches Padding statt 100px */
    padding: clamp(30px, 12vh, 100px) 20px;
    height: auto;
}

/* ---------- Info-Button ---------- */
.Infos {
    position: fixed;
    top: 15px;
    right: 10px;
    width: 10vw;
    height: 18vw;
    max-width: 30px;
    max-height: 30px;
    font-size: .6em;
    background: #222;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    font-weight: bold;
}
/* ---------- Bottom Navigation ---------- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #222;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}
.nav-item {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-item img {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
    opacity: .75;
    transition: opacity .2s, transform .2s;
    filter: invert();
}
.nav-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}
/* ---------- Support-Box ---------- */
.support-box {
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: clamp(10px, 4vh, 30px);
}
.support-box h2 {
    margin: 0;
    font-size: 1.4rem;
    text-align: center;
}
.support-box ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}
.support-box li {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.support-box li:last-child {
    border-bottom: none;
}
.support-box a {
    color: #0077cc;
    font-weight: 600;
    text-decoration: none;
}
.support-box a:hover {
    text-decoration: underline;
}
