.game-view-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Plateau */
.board-column { flex: 2; min-width: 400px; }
.board-wrapper {
    background: #222;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Pièces capturées */
.captured-area {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.captured-box {
    background: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pieces-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 25px;
    padding: 5px;
    align-items: center;
}

/* Chat et Infos */
.info-column { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.turn-status { font-size: 1.4rem; font-weight: bold; text-align: center; }

.chat-card { display: flex; flex-direction: column; height: 450px; padding: 0; overflow: hidden; }
.chat-header { background: var(--noir); color: var(--or-lutte); padding: 10px; text-align: center; font-weight: bold; }
.chat-messages { flex: 1; padding: 15px; overflow-y: auto; background: #fdfdfd; }
.chat-input-area { display: flex; border-top: 1px solid #eee; }
.chat-input-area input { flex: 1; border: none; padding: 15px; outline: none; }
.btn-send { background: var(--bleu-escrime); color: white; border: none; padding: 0 20px; cursor: pointer; }

/* Animations de tour */
.pulse-gold { color: var(--or-lutte); animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

