/* Hintergrundbild + Abdunklung */
body {
    margin: 0;
    padding: 0;
    background-image: url('obsidian_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* dezente Abdunklung */
    z-index: 0;
}

/* Datenschutz-Box */
.datenschutz-container {
    position: relative;
    top: 170px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 1050px;
    text-align: center;
    z-index: 2;
}

.datenschutz-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.datenschutz-container h1 + hr {
    border: 0;
    border-top: 3px solid #e60000;
    margin: 20px 0;
    width: 100%;
}

.datenschutz-container p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Logo mittig oben */
.logo-text-kombi {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    z-index: 3;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Footer-Links unten mittig, in Weiß */
.footer-links {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 3;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Unsichtbare leere Links entfernen */
a:empty {
    display: none;
}
