/* Account page */
.account-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.account-balance-block {
  margin: 12px 0 4px;
  padding: 16px;
  border: 1px solid rgba(47, 158, 74, 0.22);
  background: rgba(47, 158, 74, 0.05);
}

.account-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #6a766c);
  margin-bottom: 6px;
}

.account-balance {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--green, #2f9e4a);
}

.account-network {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted, #6a766c);
}

.account-army-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.account-unit {
  border: 1px solid rgba(26, 23, 18, 0.16);
  background: #111;
  overflow: hidden;
}

.account-unit img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  image-rendering: pixelated;
}

.account-unit-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  background: var(--cream, #e6ebe4);
  color: var(--ink, #121814);
}
