/* Mint Progress / Stats Section */
.stats {
  padding: var(--section-padding);
  position: relative;
}

.stats__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Counter display */
.stats__counter {
  text-align: center;
}

.stats__counter-number {
  font-family: var(--font-pixel);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--neon-cyan);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.stats__counter-label {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* Road progress bar */
.stats__road {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.progress-road {
  height: 50px;
  background: #222;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--chrome-dark);
  box-shadow: inset 0 4px 8px rgba(0,0,0,0.5);
}

.progress-road__fill {
  height: 100%;
  background: linear-gradient(90deg, #333 0%, #444 100%);
  border-radius: 25px;
  position: relative;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-road__dashes {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.6) 0, rgba(255,255,255,0.6) 20px, transparent 20px, transparent 40px);
  transform: translateY(-50%);
  animation: roadDashes 1s linear infinite;
}

@keyframes roadDashes {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(40px); }
}

.progress-road__car {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
  z-index: 2;
}

.progress-road__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.progress-road__label {
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--text-muted);
}

/* Speedometer */
.stats__speedometer {
  position: relative;
}

.stats__speedometer canvas {
  display: block;
}

/* Stats row */
.stats__row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stats__item {
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 160px;
  transition: all var(--transition-base);
}

.stats__item:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

.stats__item-value {
  font-family: var(--font-pixel);
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.stats__item-label {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Status LIVE */
.stats__item-value--live {
  color: #00ff66;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.6), 0 0 40px rgba(0, 255, 102, 0.3);
  animation: statusPulse 2s ease-in-out infinite;
}

.stats__item--status .stats__item-label {
  margin-bottom: 0.5rem;
}

.stats__item--status:hover {
  border-color: #00ff66;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
