: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%; overflow-x: hidden; }

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: 56px 20px 40px;
  }

  .card {
    width: 100%;
  }

  .links {
    gap: 12px;
  }

  .link-button {
    width: 100%;
    min-height: 76px;
    border-radius: 44px;
    padding: 14px 24px;
    gap: 16px;
  }

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

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

@media (max-width: 390px) {
  .avatar { width: 100px; height: 100px; }
  h1 { font-size: 32px; }
  .link-button { padding: 12px 20px; gap: 14px; }
}
