@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #ffb6ec, #ffdee9, #ffc3a0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Floating bubbles */
.bubble {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-110vh) scale(1.3);
    opacity: 0;
  }
}

/* Card */
.card {
  width: 370px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 30px 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
  animation: fadeIn 1.5s ease;
  overflow-y: auto;
  max-height: 90vh;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Profile Image */
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 0 25px rgba(255, 182, 193, 0.8);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Text Styles */
.name {
  font-size: 24px;
  font-weight: 600;
  color: #ff2e97;
  margin-bottom: 10px;
}

.bio {
  font-size: 14px;
  color: #ff2e97;
  margin-bottom: 25px;
}

/* Section Heading */
.section-title {
  font-size: 18px;
  color:#ff2e97;
  font-weight: 600;
  margin: 20px 0 10px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff2e97, #ff90bc);
  border-radius: 5px;
}

/* Link Buttons */
.link {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(135deg, #ff8ad4, #ff65a3, #ffa8a8);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.link:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.5);
}

/* Footer */
footer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #ffb6ec, #ffdee9, #ffc3a0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Floating bubbles */
.bubble {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-110vh) scale(1.3);
    opacity: 0;
  }
}

/* Card */
.card {
  width: 370px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 30px 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
  animation: fadeIn 1.5s ease;
  overflow-y: auto;
  max-height: 90vh;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Profile Image */
.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 0 25px rgba(255, 182, 193, 0.8);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Text Styles */
.name {
  font-size: 24px;
  font-weight: 600;
  color: #ff2e97;
  margin-bottom: 10px;
}

.bio {
  font-size: 14px;
  color: #fff;
  margin-bottom: 25px;
}

/* Section Heading */
.section-title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin: 20px 0 10px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff2e97, #ff90bc);
  border-radius: 5px;
}

/* Link Buttons */
.link {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(135deg, #ff8ad4, #ff65a3, #ffa8a8);
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.link:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.5);
}

/* Footer */
footer {
  margin-top: 20px;
  font-size: 12px;
  color: #ff2e97(255, 255, 255, 0.8);
}

/* ===== MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {
  .card {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 40px 20px;
    max-height: 100vh;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  .name {
    font-size: 22px;
  }

  .bio {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .link {
    font-size: 16px;
    padding: 14px;
  }
}
.section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
  text-align: center;
  position: relative;

  /* Gradient Text */
  background: linear-gradient(90deg, #ff2e97, #ff90bc, #ffa8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
