.about-hero {
  padding: 160px 5% 100px;
  text-align: center;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
}

.about-hero h1 {
  font-size: 4rem;
  background: linear-gradient(90deg, #6e57ff, #a78bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.about-content {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #6e57ff;
}

.about-text p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.about-text p.show { animation: fadeInUp 0.8s forwards; }

.skills h3 {
  margin: 2rem 0 1rem;
  color: #6e57ff;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.skill-tags span {
  background: rgba(110, 87, 255, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(110, 87, 255, 0.3);
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  border: 4px solid rgba(110, 87, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(100px);
}

.about-image img.show { animation: fadeInRight 1s forwards; }

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-hero h1 { font-size: 3rem; }
  .about-image img { max-width: 400px; margin: 0 auto; }
}

