body {
    background-color: #f6f1e7;
    font-family: 'Quicksand', Arial, sans-serif;
    color: #4e4033;
    text-align: center;
    padding: 20px;
}

#loading {
    font-size: 1.5em;
    margin-top: 100px;
    color: #6b5c4f;
}

#personagem {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 20px auto;
    background-color: #e9e2d0;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#personagem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
}

#controles button {
    background-color: #d4c6a8;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    color: #4e4033;
}

#controles button:hover {
    background-color: #c2b28d;
    transform: scale(1.05);
}

#controles {
    margin-top: 20px;
}