:root {
  --color-primary: #22D3EE;
  --color-secondary: #34D399;
  --color-accent: #8B5CF6;
}

.font-display {
  font-family: 'Orbitron', sans-serif;
}

.font-body, body {
  font-family: 'Exo 2', sans-serif;
}

.balance-glow {
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.live-pulse {
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .live-pulse,
  #stage-bar {
    animation: none !important;
    transition: none !important;
  }
}

.panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
}

.panel-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.position-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  padding: 0.9rem 1.1rem;
}

.decision-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #8B5CF6;
  border-radius: 0.5rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.decision-card .decision-time {
  font-size: 0.7rem;
  color: #64748B;
  margin-bottom: 0.25rem;
  display: block;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F8FAFC;
}

.trade-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.pill-long { background: rgba(34, 197, 94, 0.15); color: #4ADE80; }
.pill-short { background: rgba(239, 68, 68, 0.15); color: #F87171; }
.pill-profit { background: rgba(34, 197, 94, 0.15); color: #4ADE80; }
.pill-loss { background: rgba(239, 68, 68, 0.15); color: #F87171; }
