/* Grundkonfiguration für die Seite */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

/* Container-Box in der Mitte */
.container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
}

/* Wackelndes Emoji-Logo für etwas Dynamik */
.emoji-logo {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite alternate;
}

h1 {
    font-size: 24px;
    color: #e74c3c; /* Ein warnendes, aber freundliches Rot */
    margin-bottom: 20px;
}

.joke-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* Status-Anzeige */
.status-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #ffc107; /* Gelber Punkt für "In Arbeit" */
    border-radius: 50%;
    display: inline-block;
}

.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #999;
}

/* Kleine Animation für das Faulpelz-Emoji */
@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}
