.stats-hero {
  text-align: center;
  margin-bottom: 3.5rem;
}

.stats-hero h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    hsl(var(--foreground)),
    hsl(var(--muted-foreground))
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-hero p {
  color: hsl(var(--muted-foreground));
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.metric-card {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* .metric-card:hover {
        transform: translateY(-4px);
        border-color: hsl(var(--primary) / 0.4);
        box-shadow: 0 12px 30px -10px hsl(var(--primary) / 0.15);
    }

    .metric-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center,
                hsl(var(--primary) / 0.03),
                transparent 60%);
        pointer-events: none;
    } */

.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: hsl(var(--foreground));
  margin: 0;
}

.metric-value-small {
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
  word-break: break-all;
}

.metric-unit {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin-left: 2px;
}

.status-container {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.4) 0%,
    rgba(5, 5, 5, 0.8) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.status-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-indicator {
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #10b981;
  border-radius: 50%;
}

.status-indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse-glow 2s infinite ease-in-out;
}

.status-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: hsl(var(--foreground));
}

.timestamp-tracker {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-variant-numeric: tabular-nums;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(2.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .status-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-hero h2 {
    font-size: 2.2rem;
  }
}
