.adbd-filter {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px) saturate(1.4);
  -webkit-backdrop-filter: blur(8px) saturate(1.4);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.adbd-active .adbd-filter {
  visibility: visible;
  opacity: 1;
}

.adbd-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0.35s;
}

.adbd-active .adbd-popup {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.adbd-popup-inner {
  width: 400px;
  max-width: calc(100vw - 40px);
  background: rgba(18, 8, 8, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 36px 36px;
  margin: 0 20px;
  text-align: center;
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  box-shadow:
    0 0 0 1px rgba(225, 29, 72, 0.2),
    0 32px 80px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.adbd-popup-inner::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,72,0.18) 0%, transparent 70%);
  top: -120px; left: -80px;
  pointer-events: none;
}

.adbd-popup-inner::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,72,0.1) 0%, transparent 70%);
  bottom: -60px; right: -40px;
  pointer-events: none;
}

.adbd-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.adbd-logo-text {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 2px;
}

.adbd-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.adbd-icon-wrap svg {
  width: 30px; height: 30px;
  stroke: #e11d48;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adbd-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e11d48 50%, transparent);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.adbd-popup-inner h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.adbd-popup-inner button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #e11d48 0%, #c41230 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 24px rgba(225,29,72,0.4),
              inset 0 1px 0 rgba(255,255,255,0.1);
}

.adbd-popup-inner button:hover {
  background: linear-gradient(135deg, #f02050 0%, #d41540 100%);
  box-shadow: 0 6px 32px rgba(225,29,72,0.55),
              inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.adbd-popup-inner button:active {
  transform: translateY(0);
}

.adbd-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0 0 24px;
}