@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&family=Montserrat:wght@500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Nombre con la tipografía elegante de alto contraste */
.profile-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #ff2a6d;
  text-shadow: 0 0 15px rgba(255, 42, 109, 0.4);
  text-align: center;
  margin-bottom: 5px;
}

/* Subtítulo / Bio y Botones con la fuente limpia */
.profile-bio, .link-btn {
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  background-color: #0d0d11;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  padding: 20px 10px;
}

/* Fondo con degradado magenta/oscuro */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("foto.png.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(25px) brightness(0.35);
  transform: scale(1.1);
  z-index: -2;
}

/* Tarjeta contenedora centrada y más ancha */
.multilink-card {
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Foto de perfil con doble anillo exterior */
.avatar-container {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #e91e63, #4a0e2e);
  box-shadow: 0 0 25px rgba(233, 30, 99, 0.4);
  position: relative;
}

.avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0d0d11;
  display: block;
}

/* Nombre de perfil */
.profile-name {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 5px;
  color: #ff3366;
  text-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

/* Subtítulo / Bio */
.profile-bio {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* Contenedor de botones */
.links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Estilo base de los botones alargados */
.link-btn {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.link-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Ícono fijado a la izquierda dentro del botón */
.link-btn .btn-icon {
  position: absolute;
  left: 24px;
  font-size: 1.2rem;
}

/* Botón principal (MORE OF ME) */
.link-btn.featured {
  background: linear-gradient(90deg, #d81b60, #e91e63);
  border: none;
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.link-btn.featured:hover {
  box-shadow: 0 0 30px rgba(233, 30, 99, 0.8);
}

/* Footer */
.profile-footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}