.nllc-widget {
  --nllc-bg: #070a12;
  --nllc-panel: rgba(10, 14, 26, 0.97);
  --nllc-border: rgba(255,255,255,0.14);
  --nllc-text: #f4f7fb;
  --nllc-muted: #b9c2d3;
  --nllc-accent-2: #8d5cff;
  --nllc-success: #23ff9a;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--nllc-text);
  z-index: 99998;
}
.nllc-widget * { box-sizing: border-box; }
.nllc-floating { position: fixed; bottom: 24px; }
.nllc-position-right { right: 24px; }
.nllc-position-left { left: 24px; }
.nllc-inline { position: relative; max-width: 460px; }
.nllc-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--nllc-accent), var(--nllc-accent-2));
  color: #050711;
  font-weight: 950;
  box-shadow: 0 18px 54px color-mix(in srgb, var(--nllc-accent) 32%, transparent), 0 12px 32px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.nllc-bubble:hover { transform: translateY(-3px); box-shadow: 0 24px 64px color-mix(in srgb, var(--nllc-accent) 42%, transparent), 0 14px 34px rgba(0,0,0,0.34); }
.nllc-bubble-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 999px; background: rgba(255,255,255,0.34); }
.nllc-bubble-pulse { position: absolute; top: -4px; right: -4px; width: 14px; height: 14px; border-radius: 50%; background: var(--nllc-success); box-shadow: 0 0 0 0 rgba(35,255,154,0.6); animation: nllc-pulse 1.7s infinite; }
.nllc-panel {
  width: min(430px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 110px));
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--nllc-accent) 22%, transparent), transparent 36%),
    radial-gradient(circle at bottom right, rgba(141,92,255,0.24), transparent 42%),
    var(--nllc-panel);
  border: 1px solid var(--nllc-border);
  border-radius: 28px;
  box-shadow: 0 24px 90px rgba(0,0,0,0.44);
  overflow: hidden;
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-rows: auto minmax(210px, 1fr) auto;
}
.nllc-floating .nllc-panel { position: absolute; bottom: 72px; opacity: 0; pointer-events: none; transform: translateY(18px) scale(0.96); transition: opacity 0.22s ease, transform 0.22s ease; }
.nllc-position-right .nllc-panel { right: 0; }
.nllc-position-left .nllc-panel { left: 0; }
.nllc-widget.is-open .nllc-panel, .nllc-inline .nllc-panel { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.nllc-panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nllc-kicker { color: var(--nllc-accent); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; font-weight: 950; }
.nllc-panel-header h3 { margin: 6px 0 8px; color: var(--nllc-text); font-size: 22px; line-height: 1.1; letter-spacing: -0.045em; }
.nllc-status { display: inline-flex; align-items: center; gap: 8px; color: var(--nllc-muted); font-size: 12px; font-weight: 800; }
.nllc-status i { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--nllc-success); box-shadow: 0 0 16px rgba(35,255,154,0.75); }
.nllc-close { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.08); color: var(--nllc-text); font-size: 25px; line-height: 1; cursor: pointer; }
.nllc-messages { min-height: 240px; max-height: 390px; overflow: auto; padding: 18px 18px 8px; scroll-behavior: smooth; }
.nllc-messages::-webkit-scrollbar { width: 7px; }
.nllc-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.16); border-radius: 10px; }
.nllc-message { display: flex; gap: 10px; margin: 0 0 13px; animation: nllc-message-in 0.2s ease both; }
.nllc-message-visitor { justify-content: flex-end; }
.nllc-avatar { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; background: linear-gradient(135deg, var(--nllc-accent), var(--nllc-accent-2)); color: #050711; font-weight: 950; box-shadow: 0 0 30px color-mix(in srgb, var(--nllc-accent) 35%, transparent); }
.nllc-message-bubble { max-width: 80%; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; background: rgba(255,255,255,0.075); }
.nllc-message-admin .nllc-message-bubble { border-top-left-radius: 6px; }
.nllc-message-visitor .nllc-message-bubble { border-top-right-radius: 6px; background: linear-gradient(135deg, color-mix(in srgb, var(--nllc-accent) 28%, transparent), rgba(141,92,255,0.18)); }
.nllc-message-bubble strong { display: block; margin-bottom: 4px; color: var(--nllc-text); font-size: 12px; }
.nllc-message-bubble p { margin: 0 0 7px; color: var(--nllc-muted); font-size: 14px; line-height: 1.45; }
.nllc-message-copy { color: var(--nllc-muted); font-size: 14px; line-height: 1.45; }
.nllc-message-copy p { margin: 0 0 7px; }
.nllc-message-bubble small { display: block; margin-top: 5px; color: rgba(185,194,211,0.62); font-size: 10px; }
.nllc-form { padding: 12px 18px 18px; display: grid; gap: 11px; border-top: 1px solid rgba(255,255,255,0.09); }
.nllc-profile-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; transition: opacity 0.2s ease, max-height 0.2s ease; }
.nllc-profile-fields label:first-child { grid-column: 1 / -1; }
.nllc-profile-fields.is-compact { display: none; }
.nllc-form label { display: grid; gap: 6px; color: var(--nllc-muted); font-size: 12px; font-weight: 750; }
.nllc-form input, .nllc-form textarea { width: 100%; border: 1px solid rgba(255,255,255,0.14); border-radius: 15px; padding: 12px 13px; background: rgba(255,255,255,0.075); color: var(--nllc-text); outline: none; transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; font: inherit; resize: none; }
.nllc-form input::placeholder, .nllc-form textarea::placeholder { color: rgba(185,194,211,0.64); }
.nllc-form input:focus, .nllc-form textarea:focus { border-color: color-mix(in srgb, var(--nllc-accent) 75%, white 12%); box-shadow: 0 0 0 4px color-mix(in srgb, var(--nllc-accent) 18%, transparent); background: rgba(255,255,255,0.105); }
.nllc-row-send { display: grid; grid-template-columns: 1fr 48px; gap: 9px; align-items: stretch; }
.nllc-submit { border: 0; border-radius: 16px; background: linear-gradient(135deg, var(--nllc-accent), var(--nllc-accent-2)); color: #050711; font-weight: 950; cursor: pointer; min-height: 48px; font-size: 18px; }
.nllc-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.nllc-privacy { margin: 0; color: rgba(185,194,211,0.70); font-size: 11px; line-height: 1.4; }
.nllc-response { min-height: 16px; font-size: 12px; font-weight: 800; }
.nllc-response.is-success { color: var(--nllc-success); }
.nllc-response.is-error { color: #ff7a90; }
.nllc-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
@keyframes nllc-pulse { 0% { box-shadow: 0 0 0 0 rgba(35,255,154,0.58); } 70% { box-shadow: 0 0 0 12px rgba(35,255,154,0); } 100% { box-shadow: 0 0 0 0 rgba(35,255,154,0); } }
@keyframes nllc-message-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 520px) { .nllc-floating { left: 16px; right: 16px; bottom: 16px; } .nllc-position-right, .nllc-position-left { left: 16px; right: 16px; } .nllc-bubble { width: 100%; justify-content: center; } .nllc-floating .nllc-panel { left: 0; right: 0; width: 100%; max-height: calc(100vh - 105px); } .nllc-profile-fields { grid-template-columns: 1fr; } .nllc-messages { max-height: 320px; } }
