* {
  box-sizing: border-box;
}

:root {
  --blue: #4facfe;
  --blue-deep: #2b5cff;
  --pink: #ff6ec4;
  --pink-deep: #f857a6;
  --bg-dark: #060612;
  --text: #eef1ff;
  --muted: #b7bfe0;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  padding: 24px;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 172, 254, 0.35), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(248, 87, 166, 0.30), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(43, 92, 255, 0.25), transparent 50%),
    linear-gradient(135deg, #05050f 0%, #0a0a1f 50%, #12071f 100%);
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, 1%); }
}

.card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--blue), var(--pink-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  background: #10101f;
}

.avatar-placeholder {
  display: none;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.avatar-empty .avatar-placeholder {
  display: block;
}

.avatar-empty {
  background: linear-gradient(135deg, rgba(79,172,254,0.35), rgba(248,87,166,0.35));
  border-radius: 50%;
}

.brand {
  margin: 0 0 6px;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 auto;
  max-width: 520px;
}

.divider {
  height: 1px;
  width: 80px;
  margin: 20px auto;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  border: none;
}

.outro {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 0 10px var(--pink);
  animation: pulse 1.6s ease-in-out infinite;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(183, 191, 224, 0.6);
}

@media (max-width: 480px) {
  .card {
    padding: 40px 24px;
  }
  .brand {
    font-size: 2rem;
  }
}
