* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  max-width: 400px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-section {
  text-align: center;
  margin-bottom: 40px;
}

.profile-image {
  margin-bottom: 20px;
}

.profile-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #667eea;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-image img:hover {
  transform: scale(1.05);
}

.name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.bio {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.link-button:hover::before {
  left: 100%;
}

.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.link-button i {
  font-size: 20px;
}

/* Instagram button styling */
.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  border: none;
}

.instagram:hover {
  background: linear-gradient(
    45deg,
    #bc1888 0%,
    #cc2366 25%,
    #dc2743 50%,
    #e6683c 75%,
    #f09433 100%
  );
}

.instagram-secondary {
  background: linear-gradient(45deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  border: none;
}

.instagram-secondary:hover {
  background: linear-gradient(45deg, #fcb045 0%, #fd1d1d 50%, #833ab4 100%);
}

/* WhatsApp button styling */
.whatsapp {
  background: linear-gradient(45deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
}

.whatsapp:hover {
  background: linear-gradient(45deg, #128c7e 0%, #25d366 100%);
}

.footer {
  text-align: center;
  color: #999;
  font-size: 14px;
  margin-top: 20px;
}

/* Responsive design */
@media (max-width: 480px) {
  .container {
    padding: 30px 20px;
    margin: 10px;
  }

  .name {
    font-size: 22px;
  }

  .bio {
    font-size: 15px;
  }

  .link-button {
    padding: 14px 20px;
    font-size: 15px;
  }

  .profile-image img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 25px 15px;
  }

  .name {
    font-size: 20px;
  }

  .link-button {
    padding: 12px 16px;
    font-size: 14px;
  }

  .link-button i {
    font-size: 18px;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  animation: fadeInUp 0.8s ease-out;
}

.link-button {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.link-button:nth-child(1) {
  animation-delay: 0.1s;
}

.link-button:nth-child(2) {
  animation-delay: 0.2s;
}

.link-button:nth-child(3) {
  animation-delay: 0.3s;
}
