body {
    margin: 0;
    padding: 0;
    background: #111;
    color: #eee;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* Wichtig, damit Logo oben bleibt */
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Logo oben, zentriert */
.logo {
    width: 150px;          /* oder was du brauchst */
    margin-bottom: 20px;   /* Abstand zum Container */
    display: block;
}

.wip-container {
    text-align: center;
    padding: 40px;
    border: 1px solid #333;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

h1 {
    margin-bottom: 10px;
    font-size: 32px;
}

p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #ccc;
}

/* Minimalistischer Loader */
.loader {
    border: 4px solid #333;
    border-top: 4px solid #4caf50;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

small {
    color: #666;
}
