/* Scope everything to this one-time welcome so we don't affect other owl bubbles */
#owlWB_first.owl-chat-popup {
  /* Your site already positions .owl-chat-popup; keep that, just ensure it's visible */
  display: none;                 /* shown by JS */
  z-index: 2001;
  opacity: 1;
  transition: opacity .6s ease;
}

/* Bubble look */
#owlWB_first .owl-chat-bubble {
  background: rgba(10, 22, 26, 0.92);          /* dark glass */
  border: 1px solid #0b3840;
  border-radius: 16px;
  box-shadow:
    0 0 36px #00d5ff22,
    0 10px 28px rgba(0,0,0,.35);
  padding: 16px 18px;
  color: #aee6ff;                               /* body text */
  max-width: 560px;
}

/* Title tone */
#owlWB_first .owl-title {
  color: #c3f0ff;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Fade out at the end */
#owlWB_first.fade-out {
  opacity: 0;
}
