/* ═══ STATS CARDS COMPONENT ═══ */
/* Refined stats cards with enhanced typography and design */

.stats-cards-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 2.5rem 0;
}

.stat-card {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: var(--block-radius);
  overflow: hidden;
  background: var(--v-card-bg);
  border: var(--block-border);
  box-shadow: var(--block-shadow);
  transition: var(--transition);
  cursor: pointer;
  isolation: isolate;
}

.stat-card:hover {
  transform: translate(4px, 4px);
  box-shadow: var(--block-shadow-hover);
  border-color: transparent;
}

/* Enhanced content layout */
.stat-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  text-align: center;
  color: var(--v-text);
  z-index: 2;
}

/* Refined overlay with subtle pattern */
.stat-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.03) 0%, transparent 50%),
    linear-gradient(to right, rgba(0,0,0,0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-card-overlay {
  opacity: 1;
}

/* Individual card designs with thematic accents */
.stat-card:nth-child(1) {
  /* Technical Domains - Cyan theme */
  border-color: var(--cyan-300);
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.02) 0%,
    var(--v-card-bg) 100%
  );
}

.stat-card:nth-child(2) {
  /* Events Conducted - Violet theme */
  border-color: var(--violet-300);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.02) 0%,
    var(--v-card-bg) 100%
  );
}

.stat-card:nth-child(3) {
  /* Active Members - Emerald theme */
  border-color: var(--emerald-300);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.02) 0%,
    var(--v-card-bg) 100%
  );
}

.stat-card:nth-child(4) {
  /* Ideas Welcome - Amber theme */
  border-color: var(--amber);
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.02) 0%,
    var(--v-card-bg) 100%
  );
}

/* Hover state enhancements */
.stat-card:hover:nth-child(1) {
  border-color: var(--cyan-300);
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.04) 0%,
    var(--v-card-bg) 100%
  );
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15),
              var(--block-shadow-hover);
}

.stat-card:hover:nth-child(2) {
  border-color: var(--violet-300);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.04) 0%,
    var(--v-card-bg) 100%
  );
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15),
              var(--block-shadow-hover);
}

.stat-card:hover:nth-child(3) {
  border-color: var(--emerald-300);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.04) 0%,
    var(--v-card-bg) 100%
  );
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.15),
              var(--block-shadow-hover);
}



