/* Custom CSS for Profil Page - Enhanced Design with Mutasi-like Heading */
body {
  font-family: 'Poppins', sans-serif; /* Font utama: Poppins untuk readability & elegance */
}

/* Profile Intro - Heading Mirip "Mutasi" di mutasi.html */
.profile-intro {
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.6), rgba(0, 51, 102, 0.6)); /* Gradien lebih lembut */
  border-radius: 16px; /* Rounded lebih halus untuk tampilan bagus */
  padding: 35px 25px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Shadow sangat halus */
  text-align: center;
  animation: fadeInUp 0.5s ease-out forwards;
  will-change: opacity;
  border: 1px solid rgba(51, 255, 204, 0.1); /* Border tipis subtle */
  position: relative;
  overflow: hidden;
}

.profile-intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 255, 204, 0.4), transparent); /* Subtle wave-like divider */
}

.profile-intro h1 {
  font-size: clamp(2.5rem, 7vw, 3.5rem); /* Ukuran besar mirip heading "Mutasi" */
  font-weight: 700; /* Bold seperti heading edukasi */
  color: var(--pandora-green-neon, #33ffcc);
  margin-bottom: 15px;
  line-height: 1.1;
  letter-spacing: 0.05em; /* Spacing lebar untuk efek futuristik mirip mutasi.html */
  text-shadow: 0 0 10px rgba(51, 255, 204, 0.3); /* Glow subtle mirip heading utama */
  position: relative;
  z-index: 1;
}

.profile-intro h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #33ffcc, transparent); /* Underline subtle mirip mutasi */
}

.profile-intro .subtitle {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 400;
  color: var(--pandora-text-light, #e0e7ff);
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic; /* Subtle italic untuk variasi */
}

.profile-intro p {
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  font-weight: 400;
  color: var(--pandora-text-light, #e0e7ff);
  line-height: 1.75; /* Tingkatkan untuk readability lebih bagus */
  margin-bottom: 20px;
}

.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 255, 204, 0.5), transparent);
  margin: 20px auto 0;
  opacity: 0.7;
}

/* Single Profile Section - Enhanced Card */
.single-profile {
  background: linear-gradient(160deg, rgba(0, 51, 102, 0.7), rgba(0, 26, 51, 0.7)); /* Gradien biru dominan, lembut */
  border-radius: 16px; /* Rounded lebih halus */
  max-width: 800px;
  margin: 30px auto;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); /* Shadow sedikit lebih dalam untuk kedalaman bagus */
  border: 1px solid rgba(51, 255, 204, 0.15); /* Border lebih lembut */
  animation: fadeInScale 0.6s ease-out forwards;
  will-change: opacity;
  overflow: hidden; /* Untuk rounded corners sempurna */
}

/* Profile Header with Image - Enhanced Frame */
.profile-header {
  position: relative;
  text-align: center;
  padding: 40px 20px 25px;
  background: linear-gradient(180deg, rgba(0, 31, 63, 0.5), transparent);
}

.profile-img {
  width: clamp(140px, 22vw, 170px); /* Sedikit lebih besar untuk fokus */
  height: clamp(140px, 22vw, 170px);
  border-radius: 50%;
  background-color: var(--pandora-blue-medium, #1e40af);
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  border: 3px solid; /* Frame gradient untuk tampilan bagus */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* Shadow lebih bagus */
  transition: border-image 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  will-change: box-shadow;
}

.profile-img::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(51, 255, 204, 0.2), rgba(102, 51, 255, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.single-profile:hover .profile-img::before {
  opacity: 1; /* Subtle overlay hover untuk interaktivitas bagus */
}

.single-profile:hover .profile-img {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Profile Content - Lebih Elegan */
.profile-content {
  padding: 35px 35px 40px;
  text-align: center;
}

.member-name {
  font-size: clamp(1.8rem, 4.5vw, 2.2rem);
  font-weight: 600;
  color: var(--pandora-green-neon, #33ffcc);
  margin-bottom: 25px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-shadow: 0 0 5px rgba(51, 255, 204, 0.2); /* Subtle shadow mirip heading */
}

/* Profile Details List - Mini-Cards untuk Tampilan Bagus */
.profile-details {
  text-align: left;
  margin-top: 20px;
  padding: 0;
}

.profile-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-details li.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 400;
  color: var(--pandora-text-light, #e0e7ff);
  margin-bottom: 24px; /* Spacing lebih luas untuk alur bagus */
  line-height: 1.75;
  padding: 15px; /* Padding internal seperti mini-card */
  background: rgba(51, 255, 204, 0.03); /* Background sangat lembut */
  border-radius: 