/* =============================================
   MAINTENANCE SCREEN
   Eigener Fullscreen-Overlay, unabhängig vom Welcome Screen.
   Gleicher Look (dunkelrot + Logo), aber mit Wartungshinweis.
   ============================================= */

.maintenance-screen {
    position: fixed;
    inset: 0;
    z-index: 10000; /* über dem Welcome Screen (9999) */
    background-color: #4B0D18;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.maintenance-message {
    margin-top: 1.75rem;
    text-align: center;
    max-width: 320px;
    opacity: 0;
    transform: translateY(12px);
    animation: maintenanceFadeIn 0.7s ease 0.4s forwards;
}

.maintenance-icon {
    color: #D4AF37;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.maintenance-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #D4AF37;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.maintenance-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

@keyframes maintenanceFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
