#about {
  background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.about-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 10;
  position: relative;
}

.about-text h2 {
  font-size: 3rem;
  color: #c9d1d9;
  margin-bottom: 2rem;
  font-family: 'Courier New', monospace;
}

.about-text h2::before {
  content: 'const ';
  color: #ff7b72;
  font-size: 1.5rem;
}

.about-text h2::after {
  content: ' = () => {';
  color: #79c0ff;
  font-size: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #8b949e;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(22, 27, 34, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(88, 166, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(88, 166, 255, 0.3);
  border-color: #58a6ff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #58a6ff, #8ab4f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #8b949e;
  font-size: 1rem;
}
