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

.glow-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(90deg, #b400ff, #ff0090, #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(180,0,255,0.6);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.8rem;
  color: #ff0090;
  letter-spacing: 4px;
}

.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;
  margin-bottom: 6rem;
}

.about-text h2 {
  font-size: 3.5rem;
  background: linear-gradient(90deg, #b400ff, #ff0090);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.about-text p.visible { opacity: 1; transform: translateY(0); }

.timeline {
  margin-top: 3rem;
}

.tl-item {
  padding: 1rem 0;
  border-left: 3px solid #b400ff;
  padding-left: 2rem;
  margin: 1.5rem 0;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s;
}

.tl-item.visible { opacity: 1; transform: translateX(0); }

.tl-item span {
  position: absolute;
  left: -80px;
  background: #b400ff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  border: 4px solid #b400ff;
  box-shadow: 0 0 80px rgba(180,0,255,0.6);
  transition: all 0.5s;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 120px rgba(255,0,144,0.8);
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
  text-align: center;
  padding: 4rem 0;
  background: rgba(180,0,255,0.05);
  border-radius: 20px;
}

.stat {
  font-family: 'Orbitron', sans-serif;
}

.counter {
  font-size: 4.5rem;
  font-weight: 900;
  color: #ff0090;
  display: block;
}

.stat p {
  font-size: 1.3rem;
  color: #b400ff;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .glow-title { font-size: 4.5rem; }
  .about-image img { max-width: 500px; margin: 0 auto; display: block; }
}

