/* Chat Section */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 10px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    animation: slideIn 0.3s ease;
}

.chat-message.own {
    background: rgba(0, 255, 136, 0.2);
    text-align: right;
}

.chat-author {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1em;
}