body {
    background-color: #0d0d0d; /* Tiefes Schwarz für Fokus */
    color: #f2f2f2;
    font-family: 'Georgia', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    text-align: center;
    padding-top: 50px;
}

.main-image {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

h1 {
    font-weight: normal;
    letter-spacing: 2px;
    color: #d4af37; /* Goldton für Wertigkeit */
    margin-bottom: 40px;
}

.letter {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    font-style: italic;
    white-space: pre-wrap; /* Bewahrt Zeilenumbrüche */
}

.song-info {
    margin-top: 40px;
    font-size: 0.9em;
    color: #888;
}

footer {
    margin-top: 60px;
    font-size: 0.8em;
    opacity: 0.5;
}
#audio-touch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Ganz nach oben */
    background: transparent;
    cursor: pointer;
}
