:root {
    --bg: #f4f4f2;
    --text: #333;
    --card-bg: #ffffff;
    --link: #1e6b7b;
    --link-hover: #145766;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #1c1c1c;
        --text: #e0e0e0;
        --card-bg: #2c2c2c;
        --link: #4fc3f7;
        --link-hover: #81d4fa;
    }
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: var(--text);
    font-weight: 600;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 1em 0;
    font-weight: 400;
}

a {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
    color: var(--link-hover);
}

/* Kleinere Schrift für Impressum/Imprint Link */
.small-link {
    font-size: 0.9em;
    font-weight: 400;
}

/* Sprachumschalt-Container standardmäßig ausblenden */
.lang {
    display: none;
}

/* Responsive: Box bei Portrait-Ausrichtung und kleiner Breite ausblenden */
@media (orientation: portrait) and (max-width: 1400px) {
    .container {
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 20px 10px;
        height: auto;
    }
}
