* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    max-width: 800px;
    width: 95%;
    background-color: #fff;
    padding: 50px 20px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-container {
    margin-bottom: 30px;
}

.brand-logo {
    max-width: 200px;
    height: auto;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #666;
}

/* Container fuer das Logo-Bild */
.logo-image-container {
    margin: 20px auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Das eigentliche Logo-Bild (image_589e83.png) */
.main-logo-img {
    max-width: 300px; /* Breite am PC */
    width: 100%;      /* Skalierung auf kleinen Bildschirmen */
    height: auto;
    display: block;
}

.tagline {
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
    margin-bottom: 40px;
}

.mascot-container {
    margin-bottom: 40px;
}

.mascot-img {
    max-width: 180px;
    border-radius: 50%;
}

.status-section h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
}

.palm-decor {
    position: fixed;
    font-size: 8rem;
    opacity: 0.08;
    z-index: 1;
}

.top-right { top: 0; right: 0; transform: rotate(20deg); }
.bottom-left { bottom: 0; left: 0; transform: rotate(-20deg); }

/* Optimierung fuer Handys */
@media (max-width: 600px) {
    .main-container { padding: 30px 15px; }
    .main-logo-img {
        max-width: 260px; /* Kleiner am Handy */
    }
}