* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

:root {
  --pink: #ff3f8f;
  --pink-soft: #ff6aaa;
  --purple: #7b2cff;
  --purple-dark: #160021;
  --black: #07000f;
  --white: #ffffff;
  --muted: #d8d8d8;
}

body {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 63, 143, 0.45), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(123, 44, 255, 0.48), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(255, 63, 143, 0.18), transparent 32%),
    linear-gradient(135deg, var(--black), var(--purple-dark), #050008);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.page {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.profile-card {
  width: 100%;
  padding: 36px 24px 28px;
  border-radius: 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.logo-ring {
  width: 126px;
  height: 126px;
  margin: 0 auto 18px;
  padding: 4px;
  border-radius: 50%;
  background: conic-gradient(from 160deg, var(--pink), var(--purple), #ffd400, var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(255, 63, 143, 0.45);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 8px;
}

h1 {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin-bottom: 7px;
}

.tagline {
  font-size: 16px;
  font-weight: 700;
  color: var(--pink-soft);
  margin-bottom: 8px;
}

.bio {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-btn {
  width: 100%;
  min-height: 58px;
  text-decoration: none;
  color: var(--white);
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.link-btn.primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 14px 32px rgba(255, 63, 143, 0.32);
}

.link-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.link-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(255, 63, 143, 0.42);
}

.icon {
  font-size: 20px;
  line-height: 1;
}

.btn-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  object-fit: contain;
  flex-shrink: 0;
}

.footer {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 480px) {
  body {
    padding: 16px;
  }

  .profile-card {
    padding: 32px 18px 26px;
    border-radius: 28px;
  }

  .logo-ring {
    width: 116px;
    height: 116px;
  }

  h1 {
    font-size: 30px;
  }

  .link-btn {
    font-size: 15px;
    padding: 15px;
  }
}
