:root {
  --bg: #101010;
  --text: #ffffff;
  --muted: rgba(255,255,255,.62);
  --button: #884ba9;
  --button-hover: #9657b8;
  --green: #14b84a;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.page {
  min-height: 100svh;
  display: flex;
  justify-content: center;
  padding: 72px 24px 48px;
}

.card {
  width: min(100%, 590px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  background: #1b1b1b;
}

h1 {
  margin: 24px 0 10px;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.status {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(20,184,74,.55);
}

.bio {
  margin: 24px 0 20px;
  color: rgba(255,255,255,.84);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 54px;
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}

.social:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
}

.social svg,
.social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.social svg {
  fill: #fff;
}

.social-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0 22%, #fa7e1e 30%, #d62976 54%, #962fbf 75%, #4f5bd5 100%);
}

.social-tiktok {
  background: #111;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.social-tiktok svg {
  filter: drop-shadow(-1px 0 #25f4ee) drop-shadow(1px 0 #fe2c55);
}

.social-x {
  background: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.links {
  width: 100%;
  display: grid;
  gap: 14px;
}

.link-button {
  position: relative;
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
  border-radius: 999px;
  background: var(--button);
  color: #fff;
  text-decoration: none;
  text-align: left;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  transition: transform .18s ease, background .18s ease;
}

.link-button:hover {
  background: var(--button-hover);
  transform: translateY(-1px);
}

.button-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.button-icon svg,
.button-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.telegram-icon {
  background: #229ed9;
}

.telegram-icon svg {
  fill: #fff;
  transform: translateX(-1px);
}

.paypal-icon {
  background: #f3e7d4;
}

.paypal-icon svg {
  fill: #6f6a64;
}

.social-x svg {
  transform: translateX(-1px);
}

.button-copy strong {
  display: block;
  font-size: 21px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.button-copy small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.pulse {
  animation: softPulse 0.9s ease-in-out infinite;
}

@keyframes softPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

@media (max-width: 700px) {
  .page {
    justify-content: flex-start;
    padding: 118px 0 42px;
  }

  .card {
    width: 100%;
  }

  .avatar {
    width: 132px;
    height: 132px;
  }

  h1 {
    margin-top: 26px;
    font-size: 44px;
    color: #c8ab96;
  }

  .status {
    font-size: 23px;
    color: rgba(200,171,150,.72);
  }

  .bio {
    margin-top: 28px;
    margin-bottom: 30px;
    font-size: 24px;
    color: #c8ab96;
  }

  .socials {
    gap: 18px;
    margin-bottom: 72px;
  }

  .social {
    width: 56px;
    height: 56px;
  }

  .social svg,
  .social img {
    width: 32px;
    height: 32px;
  }

  .links {
    gap: 8px;
  }

  .link-button {
    width: calc(100% + 18px);
    margin-left: -9px;
    min-height: 134px;
    border-radius: 60px;
    padding: 22px 42px;
    gap: 22px;
  }

  .button-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .button-icon svg,
  .button-icon img {
    width: 36px;
    height: 36px;
  }

  .button-copy strong {
    font-size: 27px;
    color: #c8ab96;
  }

  .button-copy small {
    font-size: 20px;
    color: rgba(200,171,150,.86);
  }
}

@media (max-width: 390px) {
  .page { padding-top: 92px; }
  .avatar { width: 112px; height: 112px; }
  h1 { font-size: 38px; }
  .status { font-size: 20px; }
  .bio { font-size: 21px; }
  .link-button { min-height: 112px; padding: 20px 32px; }
  .button-copy strong { font-size: 23px; }
  .button-copy small { font-size: 17px; }
}