body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    color: #333;
    background-image: url('dojang_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden; /* Verhindert horizontales Scrollen durch die Charaktere */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85); /* Weißer Overlay für Lesbarkeit */
    z-index: -1;
}

header, main, footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    border-bottom: 3px solid #c00;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #c00; /* Rote Akzentfarbe */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

h2 {
    color: #005c99; /* Blaue Akzentfarbe */
    border-bottom: 2px solid #005c99;
    padding-bottom: 5px;
}

main section {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #555;
}

#character-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Klicks gehen durch die Charaktere hindurch */
    z-index: 2;
    overflow: hidden;
}

.character {
    position: absolute;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.1s linear;
    will-change: transform;
}

