:root {
  --bg: #09070d;
  --card: rgba(18, 12, 27, 0.72);
  --card-border: rgba(255,255,255,0.10);
  --text: #f8f5fb;
  --muted: #a9a1b3;
  --pink: #f05a9d;
  --purple: #8b5cf6;
  --button: rgba(255,255,255,0.075);
  --button-hover: rgba(255,255,255,0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(139,92,246,0.16), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(240,90,157,0.13), transparent 35%),
    var(--bg);
  overflow-x: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 28px 28px;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}

.orb-one {
  width: 260px;
  height: 260px;
  top: -50px;
  right: -80px;
  background: var(--purple);
}

.orb-two {
  width: 300px;
  height: 300px;
  bottom: -90px;
  left: -120px;
  background: var(--pink);
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 32px 18px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.card {
  width: 100%;
  max-width: 430px;
  padding: 30px 22px 22px;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)), var(--card);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.profile-wrap {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  position: relative;
}

.avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  padding: 3px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 36px rgba(240,90,157,0.22);
}

.avatar::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.08), transparent 35%),
    #17111e;
}

.avatar span {
  position: relative;
  z-index: 1;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
}


.photo-avatar {
  overflow: hidden;
}

.photo-avatar::before {
  display: none;
}

.photo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.online-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  right: 5px;
  bottom: 10px;
  border-radius: 50%;
  background: #55e08b;
  border: 3px solid #110c17;
  box-shadow: 0 0 12px rgba(85,224,139,0.6);
}

h1 {
  margin: 0;
  text-align: center;
  font-size: 29px;
  letter-spacing: -0.7px;
}

.handle {
  margin: 5px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.bio {
  margin: 13px auto 0;
  text-align: center;
  max-width: 340px;
  color: #e7e0ed;
  font-size: 15px;
  line-height: 1.5;
}

.bio span,
.note span {
  color: #ff9fc6;
}

.mini-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 24px;
}

.mini-tags span {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
  color: #c8c0d0;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.links {
  display: grid;
  gap: 12px;
}

.link {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 10px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: var(--button);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link:hover {
  transform: translateY(-2px);
  background: var(--button-hover);
  border-color: rgba(255,255,255,0.16);
}

.link.primary {
  box-shadow: inset 0 0 0 1px rgba(240,90,157,0.08);
}

.link.exclusive {
  background: linear-gradient(135deg, rgba(240,90,157,0.19), rgba(139,92,246,0.15));
  border-color: rgba(240,90,157,0.24);
  box-shadow: 0 10px 28px rgba(240,90,157,0.08);
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  font-size: 18px;
}

.label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.label strong {
  font-size: 14px;
  font-weight: 700;
}

.label small {
  color: var(--muted);
  font-size: 11px;
}

.arrow {
  color: #b8afc1;
  font-size: 17px;
}

.divider {
  height: 1px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

.note {
  margin: 0;
  text-align: center;
  color: #c8c0d0;
  font-size: 13px;
}

footer {
  margin-top: 9px;
  color: #746d7c;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 480px) {
  .page {
    padding: 18px 14px;
  }

  .card {
    padding: 26px 16px 20px;
    border-radius: 24px;
  }
}
