.combat-screen {
  gap: 10px;
}

.fighters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.fighter-card {
  padding: 10px;
}

.fighter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.fighter-name {
  font-size: 17px;
  font-weight: 700;
}

.fighter-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff8e6;
  background: radial-gradient(circle, #5c231d, #1f1b16);
}

.combat-actions,
.skill-actions,
.item-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.combat-log {
  max-height: 160px;
  overflow-y: auto;
  padding: 10px;
  line-height: 1.5;
  font-size: 13px;
}

.combat-log p {
  margin: 0 0 6px;
}

.shake {
  animation: shake 180ms ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
