body {
    margin: 0;
    overflow: hidden;
    background: #222;
    font-family: Arial;
}
canvas {
    display: block;
    background: #333;
}
#ui {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 5px;
}
#players {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 5px;
}
#chat-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 300px;
    background: rgba(0,0,0,0.7);
    border-radius: 5px;
    color: white;
}

#chat-messages {
    height: 150px;
    overflow-y: auto;
    padding: 10px;
}

#chat-input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border: none;
    border-top: 1px solid #444;
    background: rgba(255,255,255,0.1);
    color: white;
}

.message {
    margin-bottom: 5px;
    word-wrap: break-word;
}

.system-message {
    color: #aaa;
    font-style: italic;
}
#lives {
    position: absolute;
    top: 100px;
    left: 10px;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 5px;
}

#death-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    display: none;
}

#respawn-button {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.my-message {
    color: #4CAF50; 
    font-weight: bold;
}