
/* Mazai LinkHub - Public UI */
.mzlh-body{
  margin:0;
  min-height:100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: var(--mzlh-bg);
}

.mzlh-embed-shell{
  background: var(--mzlh-bg);
}

.mzlh-root{
  color: #e5e7eb;
  min-height: 100vh;
  background: var(--mzlh-bg);
}

.mzlh-wrap{
  max-width: 460px;
  margin: 0 auto;
  padding: 28px 16px 40px;
}

.mzlh-header{
  text-align:center;
  padding: 10px 10px 18px;
}

.mzlh-avatar{
  width: 84px;
  height: 84px;
  border-radius: 999px;
  margin: 0 auto 14px;
  overflow:hidden;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.06);
}
.mzlh-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.mzlh-avatar-fallback{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
}
.mzlh-title{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.mzlh-subtitle{
  opacity: 0.9;
  font-size: 13px;
  margin-bottom: 10px;
}
.mzlh-bio{
  margin: 0;
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.5;
}

.mzlh-links{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 14px;
}
.mzlh-link{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration:none;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.mzlh-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
.mzlh-link:active{
  transform: translateY(0px) scale(0.99);
}
.mzlh-link-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  flex: 0 0 auto;
}
.mzlh-link-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.mzlh-emoji{ font-size: 18px; }
.mzlh-link-title{
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.1px;
  flex: 1 1 auto;
}
.mzlh-link-arrow{
  opacity: .7;
  font-size: 22px;
  line-height: 1;
}
.mzlh-footer{
  text-align:center;
  margin-top: 22px;
  opacity: .7;
  font-size: 12px;
}
.mzlh-empty{
  text-align:center;
  opacity: .75;
  padding: 14px 10px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
}

/* Themes */
.mzlh-theme-light.mzlh-root{
  color: #0f172a;
  background: #f6f7fb;
}
.mzlh-theme-light .mzlh-link{
  color: #0f172a;
  background: rgba(255,255,255,0.9);
  border-color: rgba(15,23,42,0.10);
}
.mzlh-theme-light .mzlh-link:hover{
  background: #fff;
  border-color: rgba(15,23,42,0.16);
}
.mzlh-theme-light .mzlh-avatar{
  border-color: rgba(15,23,42,0.10);
  background: rgba(15,23,42,0.03);
  box-shadow: 0 10px 28px rgba(15,23,42,0.10);
}

.mzlh-theme-glass.mzlh-root{
  background:
    radial-gradient(circle at 10% 10%, rgba(228,64,144,0.26), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(56,189,248,0.22), transparent 42%),
    radial-gradient(circle at 40% 90%, rgba(34,197,94,0.16), transparent 45%),
    var(--mzlh-bg);
}

/* Button styles */
.mzlh-btn-pill .mzlh-link{
  border-radius: 999px;
}
.mzlh-btn-pill .mzlh-link-icon{
  border-radius: 999px;
}
