.about-section {
  min-height: 100vh;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#about-nebula,
#about-fog-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  pointer-events: none;
}

#about-nebula {
  z-index: 1;
}

#about-fog-canvas {
  z-index: 2;
}

.about-container {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* Profile Image */
.about-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--purple-light);
  box-shadow: 0 0 40px rgba(122, 92, 255, 0.5);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: translateY(-12px) scale(1.05);
}

/* Hologram Info Card */
.about-card {
  max-width: 800px;
  width: 100%;
  background: rgba(20, 15, 35, 0.45);
  border: 1px solid rgba(122, 92, 255, 0.4);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 35px rgba(122, 92, 255, 0.3);
  animation: hologramPulse 4s infinite alternate;
}

@keyframes hologramPulse {
  0% {
    box-shadow: 0 0 25px rgba(122, 92, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 60px rgba(122, 92, 255, 0.45);
  }
}

/* Text Styling */
.about-name {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--purple-light);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.about-role {
  color: var(--text-dim);
  margin-bottom: 25px;
}

.about-bio {
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Skill Tags */
.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.skills-chips span {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(122, 92, 255, 0.2);
  border: 1px solid rgba(122, 92, 255, 0.4);
  font-size: 0.9rem;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--purple-light);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--purple);
}

.btn-secondary {
  border: 2px solid var(--purple-light);
  color: var(--purple-light);
}

.btn-secondary:hover {
  background: var(--purple-light);
  color: var(--bg);
}
