/* ── 落地页横幅通知 / Notification Banner（仅 LandingView） ── */
.orbvop-notif-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  z-index: 60;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.22) 0%, rgba(168, 85, 247, 0.18) 50%, rgba(15, 23, 42, 0.55) 100%);
  border-bottom: 1px solid rgba(129, 140, 248, 0.35);
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px -8px rgba(99, 102, 241, 0.35);
}

body.app-theme-light .orbvop-notif-banner {
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.95) 0%, rgba(224, 231, 255, 0.92) 100%);
  border-bottom-color: rgba(99, 102, 241, 0.28);
  color: #1e1b4b;
  box-shadow: 0 4px 18px -10px rgba(99, 102, 241, 0.32);
}

.orbvop-notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a5b4fc;
  box-shadow: 0 0 0 4px rgba(165, 180, 252, 0.18);
  flex-shrink: 0;
  animation: orbvop-notif-pulse 1.6s ease-in-out infinite;
}

body.app-theme-light .orbvop-notif-dot {
  background: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

.orbvop-notif-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.orbvop-notif-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.orbvop-notif-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

body.app-theme-light .orbvop-notif-close:hover {
  background: rgba(99, 102, 241, 0.12);
}

.orbvop-notif-close svg {
  width: 16px;
  height: 16px;
}

@keyframes orbvop-notif-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(165, 180, 252, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(165, 180, 252, 0.06); }
}

/* 入场 / 退场 */
.orbvop-notif-fade-enter-active,
.orbvop-notif-fade-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.orbvop-notif-fade-enter-from {
  opacity: 0;
  transform: translateY(-6px);
}
.orbvop-notif-fade-leave-to {
  opacity: 0;
  transform: translateY(-6px);
}

@media (max-width: 720px) {
  .orbvop-notif-banner {
    padding: 9px 14px;
    font-size: 13px;
    gap: 10px;
  }
  .orbvop-notif-close {
    width: 26px;
    height: 26px;
  }
}
