:root {
    --primary-color: #0D3B66;
    --secondary-color: #FAF0CA;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: 'Syne', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1; /* Genug Platz für die Buchstaben */
    letter-spacing: -2px;
}

h1 span {
    opacity: 0.5;
}

p {
    font-size: 1.1rem;
    margin: 20px 0;
    line-height: 1.5; /* Verhindert Abschneiden von 'g' und 'y' */
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.btn {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    transition: transform 0.2s ease;
    line-height: 1;
}

.btn:hover {
    transform: scale(1.05);
}

/* Footer & Impressum */
.legal-footer {
    padding: 20px;
    text-align: center;
}

.legal-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.7rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content {
    display: none;
    background: var(--primary-color);
    padding: 30px;
    border: 1px solid var(--secondary-color);
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.legal-content:target {
    display: block;
}

.legal-content p {
    font-size: 0.9rem;
    margin: 10px 0;
}

.close-link {
    display: block !important;
    margin-top: 20px !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    text-decoration: underline !important;
}