* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #12050d;
}

.link-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  color: #fff8f5;
  background:
    linear-gradient(135deg, rgba(10, 4, 9, 0.78), rgba(32, 5, 20, 0.94)),
    url('bia/perfil.jpg');
  background-position: center;
  background-size: cover;
}

.profile-panel {
  width: min(100%, 430px);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 18px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(12, 6, 10, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.photo-stack {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.photo-stack img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.photo-stack img:first-child {
  object-position: center 20%;
}

.photo-stack img:last-child {
  object-position: center 18%;
}

.profile-photo {
  width: 124px;
  height: 124px;
  margin-top: -76px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 16%;
  background: #241018;
  box-shadow: 0 14px 34px rgba(255, 51, 111, 0.24);
}

.profile-copy {
  display: grid;
  gap: 10px;
  text-align: center;
}

.handle {
  color: #ffd4df;
  font-size: 0.95rem;
  font-weight: 750;
}

.profile-copy h1 {
  margin: 0;
  font-size: clamp(2.35rem, 10vw, 3.6rem);
  line-height: 0.95;
  font-weight: 900;
}

.profile-copy p {
  margin: 0 auto;
  max-width: 360px;
  color: #ffe8ec;
  font-size: 1.03rem;
  line-height: 1.55;
}

.vip-button {
  width: 100%;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  color: #16070d;
  background: linear-gradient(135deg, #ffdee7, #ff3b75 48%, #ffb65c);
  box-shadow: 0 16px 30px rgba(255, 59, 117, 0.34);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.vip-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(255, 59, 117, 0.44);
}

.vip-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 245, 247, 0.76);
  font-size: 0.9rem;
  text-align: center;
}

.telegram-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #ffd4df;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.telegram-line:hover {
  color: #fff;
}

@media (max-width: 420px) {
  .link-page {
    padding: 20px 12px;
  }

  .profile-panel {
    padding: 28px 16px 22px;
  }

  .profile-photo {
    width: 112px;
    height: 112px;
    margin-top: -68px;
  }
}
