@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  background: hsl(220 20% 10%);
  color: hsl(40 30% 92%);
}

.linkbio-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.linkbio-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(1px);
}

.linkbio-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsl(220 20% 6% / 0.6) 0%, hsl(220 20% 10% / 0.85) 50%, hsl(220 20% 6% / 0.95) 100%);
}

.linkbio-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(160deg, hsl(220 18% 14% / 0.95), hsl(220 20% 10% / 0.98));
  border: 1px solid hsl(40 65% 55% / 0.15);
  box-shadow: 0 0 80px hsl(40 65% 55% / 0.06), 0 25px 60px hsl(220 20% 5% / 0.5);
  backdrop-filter: blur(20px);
}

.linkbio-card__gold-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, hsl(40 65% 55% / 0.3) 20%, hsl(40 80% 65%) 50%, hsl(40 65% 55% / 0.3) 80%, transparent 100%);
}

.linkbio-photo-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 2rem 0;
}

.linkbio-photo-wrapper {
  
  position: relative;
  margin-bottom: 1.75rem;
}

.linkbio-photo-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(40 80% 65%), hsl(40 65% 55%), hsl(40 50% 40%), hsl(40 80% 65%));
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.linkbio-photo-ring::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: hsl(220 20% 10%);
}

.linkbio-photo {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid hsl(220 18% 14%);
}

.linkbio-name-section {
  text-align: center;
  padding: 0 2rem 1.5rem;
}

.linkbio-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(40 30% 92%);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
}

.linkbio-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: hsl(40 65% 55%);
  margin-top: 0.5rem;
  display: block;
}

.linkbio-divider {
  width: 60px;
  height: 1px;
  margin: 1.25rem auto;
  background: linear-gradient(90deg, transparent, hsl(40 65% 55% / 0.6), transparent);
}

.linkbio-specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.linkbio-specialty-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(220 10% 55%);
  padding: 0.35rem 0.85rem;
  border: 1px solid hsl(220 15% 22%);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.linkbio-specialty-tag:hover {
  border-color: hsl(40 65% 55% / 0.3);
  color: hsl(40 30% 80%);
}

.linkbio-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: hsl(220 10% 45%);
}

.linkbio-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.5rem 2rem 2rem;
}

.linkbio-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background: hsl(220 15% 15% / 0.6);
  border: 1px solid hsl(220 15% 22% / 0.5);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.linkbio-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(40 65% 55% / 0) 0%, hsl(40 65% 55% / 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.linkbio-link:hover {
  border-color: hsl(40 65% 55% / 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsl(40 65% 55% / 0.08);
}

.linkbio-link:hover::before { opacity: 1; }

.linkbio-link__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(40 65% 55% / 0.15), hsl(40 65% 55% / 0.05));
  border: 1px solid hsl(40 65% 55% / 0.2);
  color: hsl(40 65% 55%);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.linkbio-link:hover .linkbio-link__icon {
  background: linear-gradient(135deg, hsl(40 65% 55% / 0.25), hsl(40 65% 55% / 0.1));
  box-shadow: 0 0 20px hsl(40 65% 55% / 0.15);
}

.linkbio-link__label {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: hsl(40 20% 82%);
  transition: color 0.3s ease;
}

.linkbio-link:hover .linkbio-link__label { color: hsl(40 30% 92%); }

.linkbio-link__arrow {
  position: relative;
  z-index: 1;
  margin-left: auto;
  color: hsl(220 10% 35%);
  transition: all 0.3s ease;
}

.linkbio-link:hover .linkbio-link__arrow {
  color: hsl(40 65% 55%);
  transform: translateX(3px);
}

.linkbio-footer {
  text-align: center;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid hsl(220 15% 18% / 0.5);
}

.linkbio-footer__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: hsl(220 10% 40%);
  letter-spacing: 0.05em;
}

.linkbio-footer__oab {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(220 10% 32%);
  margin-top: 0.5rem;
  display: block;
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-fade {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.anim-scale-fade { animation: scale-fade 0.8s ease-out both; }
.anim-fade-up { animation: fade-up 0.7s ease-out both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }
.anim-delay-7 { animation-delay: 0.7s; }
.anim-delay-8 { animation-delay: 0.8s; }
