* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #f7f3ee;
  color: #3a3a3a;
  font-family: 'Courier New', Consolas, monospace;
  font-size: 15px;
  line-height: 1.7;
  padding: 20px;
}
#game {
  max-width: 680px;
  margin: 0 auto;
}
#header {
  border-bottom: 1px solid #ddd8d0;
  padding-bottom: 12px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#lang-toggle {
  cursor: pointer;
  color: #888;
  font-size: 13px;
  user-select: none;
  padding: 2px 8px;
  border: 1px solid #ddd8d0;
  border-radius: 3px;
}
#lang-toggle:hover { color: #3a3a3a; background: #f0ece6; }
#resources {
  text-align: right;
  font-size: 14px;
  line-height: 1.9;
}
.resource { display: inline-block; margin-left: 14px; }
.resource span { color: #b8860b; font-weight: bold; }
#story {
  margin-bottom: 18px;
  min-height: 80px;
}
#story p { margin-bottom: 8px; }
.highlight { color: #b8860b; }
.danger { color: #c0392b; }
.success { color: #27ae60; }
.info { color: #2980b9; }
.muted { color: #999; }
#actions {
  margin: 15px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.action-btn {
  background: #fff;
  border: 1px solid #d4cfc9;
  color: #3a3a3a;
  padding: 7px 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  border-radius: 3px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.action-btn:hover:not(:disabled) {
  background: #f0ece6;
  border-color: #bbb;
}
.action-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
  border-color: #e8e4df;
}
.action-btn .cost {
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}
#ship-info, #crew-info {
  margin: 8px 0;
  font-size: 13px;
  color: #999;
}
#log {
  border-top: 1px solid #ddd8d0;
  margin-top: 16px;
  padding-top: 10px;
  max-height: 220px;
  overflow-y: auto;
  font-size: 13px;
  color: #888;
}
#log p { margin-bottom: 3px; }
