/* Grundlayout, sorgt dafür, dass Footer immer unten ist */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

.main-content {
    flex: 1; /* Füllt den Raum zwischen Navbar und Footer */
    padding: 100px 40px 40px 40px; /* Platz über Navbar */
    text-align: center;
}

/* NAVBAR */
.nav {
    width: 100%;
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.88);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    backdrop-filter: blur(6px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.nav-right a {
    color: #fff;
    margin-left: 28px;
    text-decoration: none;
    font-size: 16px;
    transition: .2s;
}

.nav-right a:hover {
    color: #f1c40f;
}

/* LOGIN BUTTON */
.login-btn {
    background: #f1c40f;
    padding: 10
