/* 🌐 ArzSaleAlert - ARZHost Premium Theme */
.arz-popup {
  position: fixed;
  z-index: 999999;
  max-width: 380px;
  animation: slideUp 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease-in-out;
}

.arz-popup.bottom-left { bottom: 25px; left: 25px; }
.arz-popup.bottom-right { bottom: 25px; right: 25px; }
.arz-popup.top-left { top: 25px; left: 25px; }
.arz-popup.top-right { top: 25px; right: 25px; }

.arz-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #0a0f3c 0%, #1d2ddf 80%);
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(30, 60, 255, 0.4);
  position: relative;
  overflow: hidden;
}

/* 🔥 Moving highlight glow */
.arz-inner::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 0, 140, 0.3), transparent 70%);
  filter: blur(40px);
  animation: lightMove 8s linear infinite;
}
@keyframes lightMove {
  0% { transform: translate(-40px, -40px) rotate(0deg); }
  50% { transform: translate(60px, 60px) rotate(180deg); }
  100% { transform: translate(-40px, -40px) rotate(360deg); }
}

/* 💠 Icon side */
.arz-left {
  font-size: 34px;
  line-height: 1;
  animation: pulseGlow 1.6s infinite;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
}
@keyframes pulseGlow {
  0%,100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)); }
  50% { transform: scale(1.25); opacity: 0.9; filter: drop-shadow(0 0 18px rgba(255, 0, 150, 0.9)); }
}

/* 📄 Text area */
.arz-right {
  flex: 1;
}
.arz-right .arz-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.6px;
}
.arz-right .arz-msg {
  font-size: 13.5px;
  line-height: 1.5;
  color: #e3e3ff;
}
.arz-right b {
  color: #ff4dc1;
  font-weight: 600;
}

/* ❌ Close button */
.arz-close {
  position: absolute;
  right: 8px;
  top: 6px;
  font-size: 18px;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.7;
  transition: 0.2s;
}
.arz-close:hover {
  opacity: 1;
  transform: scale(1.3);
  color: #ff4dc1;
}

/* ✨ Gradient border effect */
.arz-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, #00eaff, #ff00ff, #00eaff);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderGlow 6s linear infinite;
}
@keyframes borderGlow {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* ⚡ Entry Animation */
@keyframes slideUp {
  0% { transform: translateY(40px) scale(0.9); opacity: 0; filter: blur(4px); }
  100% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
}

/* 📱 Responsive tweak */
@media (max-width: 500px) {
  .arz-popup {
    max-width: 92%;
    left: 4%;
    right: 4%;
    bottom: 20px;
  }
  .arz-inner {
    padding: 14px 16px;
  }
  .arz-left {
    font-size: 28px;
  }
  .arz-right .arz-msg {
    font-size: 12.5px;
  }
}
