/* Bio Link Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Maven Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-image: url('../images/profile.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.bio-container {
  width: 100%;
  padding: 40px 15px;
}

.col-lg-5, .col-md-7, .col-sm-9, .col-11 {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: none;
  overflow: hidden;
}

/* Profile Section */
.profile-section {
  margin-bottom: 0;
}

.profile-image-wrapper {
  width: 100%;
  max-width: 100%;
  height: 400px;
  margin: 0 0 0 0;
  border-radius: 0;
  overflow: hidden;
  background: #000000;
  position: relative;
  border-bottom: none;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0.95) 40%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  padding: 40px 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.username {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.social-icon:hover {
  transform: scale(1.2);
  color: #ffd700;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  padding: 25px 30px 0;
}

.action-btn {
  background: transparent;
  color: #ffffff;
  padding: 16px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.btn-subtitle {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
}

/* Support Section */
.support-section {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 25px 30px;
  text-align: center;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 20px;
}

.support-btn {
  background: #ffffff;
  color: #000000;
  padding: 14px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: none;
  border: none;
}

.support-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: #000000;
  text-decoration: none;
  border-color: #ffffff;
}

/* Footer Branding */
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 25px 30px 30px;
  opacity: 0.7;
  text-align: center;
}

.footer-branding svg {
  width: 30px;
  height: 30px;
}

/* Responsive Design */
@media (max-width: 576px) {
  .col-lg-5, .col-md-7, .col-sm-9, .col-11 {
    padding: 0;
  }

  .profile-image-wrapper {
    max-width: 100%;
    height: 350px;
  }

  .username {
    font-size: 22px;
  }

  .action-buttons {
    padding: 20px 20px 0;
  }

  .action-btn {
    font-size: 14px;
    padding: 14px 20px;
  }

  .support-section {
    padding: 20px;
  }

  .support-title {
    font-size: 20px;
  }

  .footer-branding {
    padding: 20px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-section,
.action-buttons,
.support-section,
.footer-branding {
  animation: fadeIn 0.6s ease-out;
}

.action-btn:nth-child(1) {
  animation-delay: 0.1s;
}

.action-btn:nth-child(2) {
  animation-delay: 0.2s;
}

.action-btn:nth-child(3) {
  animation-delay: 0.3s;
}
