/* amebe — deploy update banner (public + admin/dashboard). Fixed top strip. */

.amebe-update-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  display: none;
  padding: 12px 16px;
  background: rgba(18, 18, 18, 0.97);
  border-bottom: 1px solid rgba(255, 200, 80, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.amebe-update-banner.is-visible { display: block; }
html.has-amebe-update-banner { scroll-padding-top: 72px; }
html.has-amebe-update-banner body { padding-top: 72px; }
.amebe-update-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}
.amebe-update-banner-text {
  margin: 0;
  flex: 1 1 240px;
  font-size: 14px;
  line-height: 1.4;
  color: #ffe8b0;
  font-family: inherit;
}
.amebe-update-banner-text i { margin-right: 6px; }
.amebe-update-banner-btn {
  flex: 0 0 auto;
  white-space: nowrap;
  margin: 0;
  padding: 9px 16px;
  border: 1px solid rgba(255, 200, 80, 0.55);
  border-radius: 8px;
  background: rgba(255, 200, 80, 0.16);
  color: #ffe8b0;
  font: inherit;
  font-size: 13.5px;
  font-weight: 650;
  cursor: pointer;
}
.amebe-update-banner-btn:hover {
  background: rgba(255, 200, 80, 0.28);
  color: #fff6d6;
}
@media (max-width: 640px) {
  html.has-amebe-update-banner body { padding-top: 96px; }
  .amebe-update-banner-inner { align-items: stretch; }
  .amebe-update-banner-btn { width: 100%; }
}
