* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #FFD9B3 5%, #FFE6CC 45%, #FFF7CC 55%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 580px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.5);
}

.card-header {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.profile-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFF2E6 45%, #FFFBE6 55%);
  color: linen;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 0px 2px rgba(77, 38, 0, 0.6);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.card-body {
  text-align: center;
  color: white;
}

.name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.title {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-weight: 500;
  text-shadow: 0 2px 3px rgba(0.10,0.09,0.09);
  text-transform: uppercase;
}

.bio {
  font-size: 20px;
  font-variant: small-caps;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  text-shadow: 0 2px 5px rgba(0.10,0.09,0.09);
}

.article {
color: #4D2600;
font-family: Tahoma, Geneva, sans-serif;
font-size: 25px;
text-shadow: 2px 2px 3px #B35900;
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 25px;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}

.stat-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  text-shadow: 0 2px 5px rgba(102, 126, 234, 0.8);
}

.stat-item p {
  font-size: 12px;
  color: rgba(255, 234, 230, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0.10,0.09,0.09);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
}

.social-btn {
  flex: 1;
  padding: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #E6F2FF;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 4px rgba(102, 126, 234, 0.4);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

.follow-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #FFFBE6 15%, #FFF2E6 40%, #FFFBE6 30% ,#FFF2E6 15% );   
  color: #E6F2FF; /* linen */
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 2px 7px rgba(102, 126, 234, 0.8);
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

.follow-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

@media (max-width: 480px) {
  .card {
    padding: 20px;
  }
  
  .stats {
    flex-direction: column;
    gap: 15px;
  }
}