:root {
  --neo-bg: #ffffff;
  --neo-text: #112433;
  --neo-muted: #5b7180;
  --neo-border: #dce7ee;
  --neo-shadow: 0 20px 60px rgba(12, 35, 52, .18);
  --neo-radius: 20px;
}
.neo-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99998;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.neo-widget__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px 10px 10px;
  box-shadow: var(--neo-shadow);
  background: var(--neo-accent, #0b6aa7);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}
.neo-widget__avatar {
  font-size: 20px;
}
.neo-widget__avatar--image {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.neo-widget__avatar--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.neo-widget__label {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .neo-widget { right: 12px; bottom: 12px; }
  .neo-widget__label { display: none; }
  .neo-widget__button { padding: 10px; }
}
