* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  background: #0d0510;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('images/banner.gif') center / cover no-repeat;
  opacity: 0.45;
  z-index: -1;
}

.content-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 3rem 1rem;
}

.avatar-wrapper {
  padding: 4px;
  background: linear-gradient(45deg, #ffb7ff, #b28dff);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(255, 183, 255, 0.4);
  margin-bottom: 0.5rem;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0d0510;
  background: #150a1a;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 700;
  letter-spacing: -1px;
}

.pronouns {
  font-size: 0.85rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: -8px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.social-icons a {
  font-size: 1.4rem;
  color: #ffb7ff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.link-list, .info-list {
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-card {
  padding: 1.2rem 1.5rem;
  border-radius: 22px;
  text-decoration: none;
  color: white;
  background: rgba(15, 5, 20, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.link-card strong {
  display: block;
  font-size: 1.1rem;
  color: #fce4ff;
}

.link-card span {
  font-size: 0.85rem;
  opacity: 0.7;
}

.link-card:hover {
  background: rgba(255, 183, 255, 0.12);
  border-color: rgba(255, 183, 255, 0.4);
  transform: translateY(-4px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}