/* Linkimiq - Ultra-Light Profile CSS (Sub-5ms load time) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

/* Hide scrollbars for clean native mobile feel */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent;
}
html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1.25rem;
  -webkit-font-smoothing: antialiased;
}

.profile-container {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Avatar */
.profile-avatar-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}
.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8fafc;
}

/* Name & Bio */
.profile-name-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.profile-bio {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #94a3b8;
  max-width: 480px;
  margin: 0 auto 1.75rem auto;
  word-break: break-word;
}

/* Social Mini-Row */
.social-mini-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}
.social-mini-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-mini-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

/* Links Stack */
.links-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.link-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.link-card-btn .card-icon {
  position: absolute;
  left: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.link-card-btn .card-title {
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 1.25rem 0 1.75rem;
  max-width: 85%;
}

.link-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.link-card-btn:active {
  transform: translateY(0);
}

/* Share Floating Trigger */
.top-action-bar {
  width: 100%;
  max-width: 580px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
.top-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.top-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Branding footer */
.profile-footer {
  margin-top: auto;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.profile-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.profile-footer a:hover {
  color: #94a3b8;
}

/* Highlight badge / pulse */
.highlight-badge {
  position: absolute;
  right: 1.25rem;
  font-size: 0.6875rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #6366f1;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
