/* Stats Gauges */
#stats-section {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: -1em 0 10px;
}

.gauge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.gauge-wrapper {
  position: relative;
  width: 140px;
  height: 75px;
  overflow: hidden;
}

.gauge-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
}

.gauge-track {
  fill: none;
  stroke: #e8e0f5;
  stroke-width: 7;
  stroke-dasharray: 188.5 188.5;
}

.gauge-fill {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 0 377;
}

.gauge-purple {
  stroke: #ca82f8;
  filter: drop-shadow(0 0 5px rgba(202, 130, 248, 0.8));
}
.gauge-green {
  stroke: #a855f7;
  filter: drop-shadow(0 0 5px rgba(202, 130, 248, 0.8));
}
.gauge-gold {
  stroke: #7c3aed;
  filter: drop-shadow(0 0 5px rgba(202, 130, 248, 0.8));
}

.gauge-text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.gauge-number {
  font-size: 20px;
  font-weight: 700;
  font-family: Georgia, serif;
}

.gauge-suffix {
  font-size: 11px;
  font-weight: 600;
  font-family: sans-serif;
}

.gauge-suffix-purple {
  color: #ca82f8;
}
.gauge-suffix-green {
  color: #f87dd6;
  /*2d9e6b;*/
}
.gauge-suffix-gold {
  color: #f8c07d;
  /*e8a838;*/
}

.gauge-label {
  font-size: 0.8em;
  color: #888;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
