/* --- Zentrale Style-Datei für Mothden --- */

/* Der Reset sorgt dafür, dass Abstände überall gleich berechnet werden */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0b0b18; /* Tiefes Nachtblau */
    color: #e0e0ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    background: rgba(20, 20, 45, 0.95);
    padding: 40px;
    border-radius: 30px;
    border: 2px solid #00e5ff; /* Dein Moth-Blau */
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
    text-align: center;
    max-width: 450px;
    width: 90%;
    margin: 20px;
}

/* Dein Logo / Titel */
h1 {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Status-Zeile im Terminal-Look */
.moth-status {
    font-family: 'Courier New', monospace;
    color: #b388ff; /* Pastell-Lila */
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.9em;
}

/* Avatar-Styling */
.avatar-placeholder {
    width: 150px;
    height: 150px;
    background: #1a1a3a;
    border-radius: 50%;
    margin: 0 auto 25px;
