/* Global */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Wrapper */
.page-wrap {
    width: 100%;
    max-width: 900px;
    padding: 30px;
    text-align: center;
}

/* Logo */
.logo-wrap img {
    width: 450px;          /* große Logo-Darstellung */
    max-width: 90%;
    opacity: 0;
    animation: fadeIn 1.2s forwards ease-out;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.12));
}

/* Card */
.card {
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255,255,255,0.06);
}

/* Headings */
h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

.headline-en {
    display: block;
    font-size: 20px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 6px;
}

/* Subtitles */
.subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 22px;
}

.subtitle-en {
    display: block;
    font-size: 15px;
    opacity: 0.7;
    margin-top: 6px;
}

/* Catalog hint */
.catalog-hint {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.catalog-hint-en {
    display: block;
    font-size: 15px;
    opacity: 0.7;
    margin-top: 4px;
}

/* Buttons */
.actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
    position: relative;
}

.button.primary {
    background: #ffffff;
    color: #000;
}

.button.secondary {
    background: #222;
    color: #fff;
}

.button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Button small English note */
.button-note {
    display: block;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 4px;
}

/* Footer */
.footnote {
    margin-top: 35px;
    font-size: 13px;
    opacity: 0.6;
}

.footnote-en {
    display: block;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 4px;
}

/* Animations */
.fadein {
    opacity: 0;
    animation: fadeIn 1.3s 0.3s forwards ease-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 600px) {
    .card {
        padding: 28px 20px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .catalog-hint {
        font-size: 16px;
    }

    .logo-wrap img {
        width: 320px;
    }
}
