/* Stats Cards Styles */
.stats-section {
  padding: 4rem 0;
  background: #0f0f0f;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stat-card-title {
  font-size: 1rem;
  color: #a0a0a0;
  margin: 0;
  font-weight: 500;
}

.stat-card-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, #ffffff, #e0e0e0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-trend {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}

.trend-up {
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
}

.trend-down {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.trend-neutral {
  background: rgba(156, 163, 175, 0.1);
  color: #9ca3af;
}

.stat-card-description {
  font-size: 0.9rem;
  color: #a0a0a0;
  margin-top: 1rem;
}

.stat-card-icon {
  position: absolute;
  bottom: -15px;
  right: -15px;
  font-size: 5rem;
  opacity: 0.05;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
