/* Helios Command — organized working panels */
.helios-hub {
  position: relative;
  z-index: 1;
}

.helios-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-family: var(--guide-font);
  font-size: 0.8rem;
}

.helios-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.helios-tab {
  font-family: var(--guide-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--muted);
  border-radius: 4px;
  cursor: pointer;
}

.helios-tab--active,
.helios-tab:hover {
  color: var(--green-bright);
  border-color: var(--green);
  box-shadow: var(--glow);
}

.helios-panel {
  display: none;
}

.helios-panel--active {
  display: block;
  animation: cc-fade 0.35s ease;
}

.helios-table .mint-cell {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
}

.tokens67-row {
  cursor: pointer;
  transition: background 0.15s;
}

.tokens67-row:hover,
.tokens67-row--active {
  background: rgba(66, 232, 133, 0.1);
}

.tokens67-row--active td:first-child {
  color: var(--panic-bright);
}

.radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 0.75rem;
}

#galactic-radar {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: radial-gradient(circle, rgba(66, 232, 133, 0.05) 0%, #020408 70%);
}

.radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--guide-font);
  font-size: 0.7rem;
  color: var(--muted);
}

.radar-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.radar-dot--token {
  background: var(--green);
}

.radar-dot--ship {
  background: #ffd700;
}

.radar-dot--wallet {
  background: #9945ff;
}

.radar-readout {
  font-family: var(--guide-font);
  font-size: 0.8rem;
  color: var(--green-bright);
  text-align: center;
}

.helios-cosmos-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
  margin: 1rem 0;
}

.helios-game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lore-table-wrap {
  max-height: 400px;
  overflow-y: auto;
}

#chart-token-select {
  max-width: 420px;
  margin-bottom: 0.75rem;
}
