.live-stats-section {
  padding: 60px 5% 40px;
  position: relative; z-index: 1;
}

.live-stats-dashboard {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 36px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(20, 5, 40, 0.7), rgba(8, 2, 18, 0.8)),
    radial-gradient(ellipse at 30% 0%, rgba(153, 51, 255, 0.12) 0%, transparent 55%);
  border: 1px solid rgba(153, 51, 255, 0.18);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(153, 51, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.live-stats-dashboard::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(0, 204, 255, 0.04) 50%, transparent 60%);
  animation: statShine 6s infinite linear;
  pointer-events: none;
}

@keyframes statShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.live-stats-header {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 28px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; letter-spacing: 2px;
  color: rgba(0, 204, 255, 0.7);
  position: relative; z-index: 1;
}

.live-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}

.live-stat-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.live-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(153, 51, 255, 0.25);
  box-shadow: 0 12px 40px rgba(153, 51, 255, 0.12);
}

.live-stat-card::after {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.4), transparent);
}

.live-stat-icon {
  font-size: 28px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.live-stat-value {
  font-family: 'Orbitron', 'Share Tech Mono', monospace;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #fff 0%, #c4a2ff 60%, #9933ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(153, 51, 255, 0.25);
  transition: transform 0.2s ease;
}

.live-stat-value.pop {
  animation: valuePop 0.3s ease;
}

@keyframes valuePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); color: #00ccff; }
  100% { transform: scale(1); }
}

.live-stat-label {
  font-size: 15px;
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.live-stat-meta {
  font-size: 11px;
  color: rgba(0, 255, 136, 0.7);
  font-family: 'Share Tech Mono', monospace;
}

.trend-up {
  display: inline-block;
  margin-right: 2px;
  animation: trendBounce 1.5s infinite ease-in-out;
}

@keyframes trendBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.live-stats-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  font-family: 'Share Tech Mono', monospace;
  position: relative; z-index: 1;
}

@media (max-width: 600px) {
  .live-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .live-stats-dashboard { padding: 24px 20px; }
  .live-stat-value { font-size: 34px; }
}

