/* =========================
   ABOUT – CREATOR SECTION
   ========================= */

.about-creator-section {
  background: radial-gradient(
    circle at top,
    #0f172a 0%,
    #020617 70%
  );
  color: #ffffff;
}

/* Image */
.about-image {
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  max-width: 520px;
}

/* Badge */
.about-badge {
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #e5e7eb;
}

/* Title */
.about-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
}

/* Description */
.about-description {
  color: #cbd5f5;
  max-width: 520px;
}

/* Feature Pills */
.about-feature {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px 16px;
  gap: 12px;
  transition: background 0.25s ease;
}

.about-feature:hover {
  background: rgba(255,255,255,0.1);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(99,102,241,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: #a5b4fc;
  font-size: 16px;
}

.feature-text {
  font-size: 14px;
  color: #e5e7eb;
}

/* Mobile refinement */
@media (max-width: 767px) {
  .about-description {
    max-width: 100%;
  }

  .about-image {
    margin-bottom: 20px;
     max-width: 300px;
  }
}
