:root {
    --bg-dark: #0d0d0d;
    --card-gray: #1a1a1a;
    --neon-red: #ff3131;
    --text-light: #e0e0e0;
}

body, html {
    margin: 0; padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    height: 100%; overflow: hidden;
}

/* Hintergrund-Effekte */
.bg-image {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: -2;
}

.bg-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.9) 100%);
    z-index: -1;
}

/* Content-Ausrichtung */
.landing-content {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 100vh; text-align: center;
}

h1 {
    font-size: 5rem; letter-spacing: 10px; margin-bottom: 0;
    color: white; text-shadow: 0 0 20px var(--neon-red);
}

.btn-patreon {
    margin-top: 30px; padding: 15px 40px;
    border: 2px solid var(--neon-red);
    color: white; text-decoration: none;
    font-weight: bold; font-size: 1.2rem;
    background: transparent;
    transition: 0.3s; box-shadow: 0 0 10px rgba(255, 49, 49, 0.3);
}

.btn-patreon:hover {
    background: var(--neon-red);
    box-shadow: 0 0 30px var(--neon-red);
}

.lang-switch { position: absolute; top: 20px; right: 20px; }
.lang-switch button { background: none; border: none; color: white; cursor: pointer; }

footer {
    position: absolute; bottom: 10px; width: 100%;
    text-align: center; font-size: 0.8rem; opacity: 0.5;
}
footer a { color: white; text-decoration: none; margin: 0 10px; }

/* Styling für rechtliche Seiten */
.legal-page {
    overflow-y: auto; /* Erlaube Scrollen auf dieser Seite */
    display: block; 
}

.legal-container {
    max-width: 800px;
    margin: 80px auto;
    background: rgba(26, 26, 26, 0.9); /* Modernes Grau mit Transparenz */
    padding: 40px;
    border-left: 4px solid var(--neon-red);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: none;
}

.legal-container h2 {
    color: var(--neon-red);
    font-size: 1.2rem;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.red-divider {
    border: 0;
    height: 2px;
    background: var(--neon-red);
    margin-bottom: 30px;
    width: 50px;
}

.legal-container p {
    line-height: 1.6;
    color: #ccc;
}

.legal-container a {
    color: var(--neon-red);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light) !important;
}

.back-link:hover {
    color: var(--neon-red) !important;
    text-decoration: none !important;
}