/* ===== Tech Stack Section ===== */
.tech-stack {
  background: rgba(10, 15, 22, 0.86);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 196, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 196, 0.06) 0%, rgba(30, 79, 120, 0.06) 100%);
}

.tech-name {
  font-weight: 600;
  color: var(--text-primary);
}

.tech-version {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
}
