@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&family=Finger+Paint&display=swap');

body {
    font-family: 'Comic Neue', cursive;
    background-color: #FFD700; /* Kräftiges Sonnengelb */
    margin: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-family: 'Finger Paint', cursive;
    color: #D32F2F; /* Sattes Feuerwehrrot */
    font-size: 2em;
    text-align: center;
    text-shadow: 3px 3px 0 #fff;
    margin-bottom: 20px;
}

/* Das Märchen-Buch */
.story-book {
    width: 90%;
    max-width: 600px;
    background: #FFFFFF;
    border: 10px solid #2E7D32; /* Kräftiges Grasgrün */
    border-radius: 30px;
    padding: 25px;
    min-height: 300px;
    box-shadow: 0 12px 0 #1B5E20;
    margin-bottom: 25px;
    font-size: 1.4em;
    color: #222;
}

/* Wort-Anzeige oben */
.chip {
    background: #FFEB3B;
    border: 3px solid #FBC02D;
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: bold;
    color: #000;
    margin: 5px;
    display: inline-block;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

/* Die bunten Aktions-Buttons */
.controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 600px;
}

.btn {
    border: none;
    border-radius: 25px;
    padding: 20px;
    font-family: 'Comic Neue', sans-serif;
    font-weight: 900;
    font-size: 1.3em;
    cursor: pointer;
    box-shadow: 0 8px 0 rgba(0,0,0,0.3);
    transition: all 0.1s;
    color: white;
}

.btn:active {
    transform: translateY(4px);
    box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}

/* Die spezifischen Farben für Steffi */
.btn-mic { 
    grid-column: 1 / -1; 
    background: #E91E63; /* Kräftiges Pink/Magenta */
}

.btn-short { 
    background: #0288D1; /* Sattes Ozeanblau */
}

.btn-long { 
    background: #FF9800; /* Leuchtendes Orange */
}

.btn-stop { 
    grid-column: 1 / -1; 
    background: #7B1FA2; /* Tiefes Lila */
}

#playBtn {
    grid-column: 1 / -1;
    background: #43A047; /* Kräftiges Smaragdgrün */
    font-size: 1.5em;
}

#status-info {
    margin: 15px 0;
    font-weight: bold;
    font-size: 1.2em;
    color: #3E2723;
    background: rgba(255,255,255,0.5);
    padding: 5px 15px;
    border-radius: 10px;
}