*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background: #0a0a0a;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Subtle background gradient blobs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 500px;
  height: 500px;
  background: #e040fb;
  top: -150px;
  left: -150px;
}

body::after {
  width: 400px;
  height: 400px;
  background: #7c4dff;
  bottom: -100px;
  right: -100px;
}

.card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  max-width: 380px;
  width: 90%;
  text-align: center;
}

/* Avatar */
.avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 8px;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 3px solid transparent;
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
              linear-gradient(135deg, #e040fb, #7c4dff) border-box;
}

.avatar-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e040fb, #7c4dff);
  filter: blur(20px);
  opacity: 0.4;
  z-index: 0;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

/* Text */
.name {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.nick {
  font-size: 0.95rem;
  font-weight: 400;
  background: linear-gradient(135deg, #e040fb, #7c4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -6px;
}

.slogan {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  line-height: 1.5;
  max-width: 260px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #e040fb, #7c4dff);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 24px rgba(224, 64, 251, 0.35);
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(224, 64, 251, 0.55);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
  opacity: 0.9;
}

/* Mobile — phones (Instagram traffic) */
@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding-top: 0;
    overflow-y: auto;
  }

  .card {
    max-width: 100%;
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    border: none;
    padding: 64px 28px 48px;
    justify-content: center;
    gap: 14px;
  }

  .avatar-wrap {
    width: 130px;
    height: 130px;
  }

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

  .name {
    font-size: 1.9rem;
  }

  .nick {
    font-size: 1rem;
  }

  .slogan {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.05rem;
    /* larger touch target for mobile */
    min-height: 52px;
  }
}

/* Small phones */
@media (max-width: 360px) {
  .name {
    font-size: 1.6rem;
  }
}
