/* Validators */
.validators-list-3d {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.validator-item-3d {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem;
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  position: relative;
  transition: all 0.2s;
}

.validator-item-3d:hover {
  border-color: var(--brain);
}

.validator-item-3d.optimal {
  border-color: var(--golden);
}

.v-rank {
  width: 30px;
  font-weight: bold;
  color: var(--golden);
}

.v-avatar-3d {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue), 60%, 40%), hsl(var(--hue), 60%, 60%));
  position: relative;
  overflow: hidden;
}

.dna-helix {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px,
    transparent 3px,
    rgba(255,255,255,0.2) 3px,
    rgba(255,255,255,0.2) 6px
  );
  animation: helix-spin 2s linear infinite;
}

@keyframes helix-spin {
  to { transform: rotate(360deg); }
}

.v-data {
  flex: 1;
}

.v-data .v-id {
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: white;
}

.v-metrics {
  display: flex;
  gap: 0.5rem;
  font-size: 0.65rem;
  color: #9ca3af;
}

.v-stake {
  text-align: right;
}

.stake-val {
  display: block;
  font-family: 'Fira Code', monospace;
  color: var(--golden);
}

.stake-label {
  font-size: 0.6rem;
  color: #9ca3af;
}

/* Dimensions */
.dimensions-section-3d {
  margin-bottom: 2rem;
}

.dimensions-section-3d h3 {
  color: white;
  margin-bottom: 1rem;
}

.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.dimension-card-3d {
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s;
}

.dimension-card-3d:hover {
  transform: translateY(-3px);
}

.dimension-card-3d.fin { border-color: #4ade80; }
.dimension-card-3d.soc { border-color: #ec4899; }
.dimension-card-3d.id { border-color: #3b82f6; }
.dimension-card-3d.inf { border-color: var(--golden); }

.dim-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.dimension-card-3d h4 {
  color: white;
  margin-bottom: 0.25rem;
}

.dim-range {
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  color: var(--brain);
  margin-bottom: 0.5rem;
}

.dim-desc {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Tokenomics */
.tokenomics-section-3d h3 {
  color: white;
  margin-bottom: 1rem;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.token-stat {
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.token-label {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.token-value {
  font-family: 'Fira Code', monospace;
  font-size: 1rem;
  color: white;
}

.token-value.green { color: #4ade80; }
.token-value.orange { color: #f59e0b; }

/* Chain Footer */
.chain-footer-3d {
  text-align: center;
  padding: 1.5rem;
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
}

.formula-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.formula-box code {
  font-family: 'Fira Code', monospace;
  color: #4ade80;
}

.golden-note {
  color: var(--golden);
  font-size: 0.9rem;
}

