/* Malibu Edge Banners - basic styles */
.meb-edge{
  position: fixed;
  transform: translateY(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  background: var(--meb-bg, #0a2d6b);
  color: var(--meb-fg, #fff);
  border: 2px solid var(--meb-bd, #4aa3ff);
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  pointer-events: auto;
}
.meb-edge .meb-link{
  color: inherit;
  text-decoration: none;
}
.meb-edge .meb-link:hover{
  text-decoration: underline;
}
.meb-compact{
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
}
/* simple glow animation if enabled via box-shadow inline */
@keyframes meb-pulse {
  0% { box-shadow: 0 0 8px var(--meb-bd, #4aa3ff); }
  100% { box-shadow: 0 0 18px var(--meb-bd, #4aa3ff); }
}
