 .adt-zr-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(38, 49, 58, 0.62);
    backdrop-filter: blur(4px);
  }

  .adt-zr-popup-overlay.is-visible {
    display: flex;
  }

  .adt-zr-popup {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 34px 32px 30px 32px;
    border-radius: 22px;
    border: 2px solid #f5b400;
    background: linear-gradient(135deg, #fff7d6 0%, #ffffff 55%, #fff1b8 100%);
    box-shadow: 0 24px 70px rgba(38, 49, 58, 0.35), 0 12px 35px rgba(245, 180, 0, 0.28);
    color: #26313a;
    overflow: hidden;
    animation: adtZrPopupIn 0.35s ease both;
  }

  .adt-zr-popup::before {
    content: "!";
    position: absolute;
    left: 28px;
    top: 30px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5b400;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    line-height: 38px;
    text-align: center;
  }

  .adt-zr-popup::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    border: 2px solid rgba(245, 180, 0, 0.45);
    animation: adtZrPulseBorder 1.8s infinite;
    pointer-events: none;
  }

  .adt-zr-popup-content {
    padding-left: 58px;
    position: relative;
    z-index: 2;
  }

  .adt-zr-popup-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 180, 0, 0.18);
    color: #7a5400;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .adt-zr-popup-title {
    margin: 0 0 10px 0;
    font-size: 27px;
    line-height: 1.18;
    font-weight: 900;
    color: #111;
  }

  .adt-zr-popup-text {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #26313a;
  }

  .adt-zr-popup-text strong {
    color: #111;
    font-weight: 900;
  }

  .adt-zr-popup-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
  }

  .adt-zr-popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    background: #e53935;
    color: #fff !important;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    animation: adtZrButtonPulse 1.5s infinite;
  }

  .adt-zr-popup-button::after {
    content: "→";
    font-size: 18px;
  }

  .adt-zr-popup-button:hover {
    background: #c62828;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 26px rgba(229, 57, 53, 0.45);
  }

  .adt-zr-popup-secondary {
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    padding: 10px 4px;
  }

  .adt-zr-popup-secondary:hover {
    color: #26313a;
  }

  .adt-zr-popup-close {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(38, 49, 58, 0.08);
    color: #26313a;
    font-size: 22px;
    line-height: 34px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .adt-zr-popup-close:hover {
    background: rgba(38, 49, 58, 0.14);
    transform: rotate(90deg);
  }

  @keyframes adtZrPopupIn {
    from {
      opacity: 0;
      transform: translateY(18px) scale(0.96);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes adtZrPulseBorder {
    0% {
      opacity: 0.7;
      transform: scale(1);
    }

    70% {
      opacity: 0;
      transform: scale(1.035);
    }

    100% {
      opacity: 0;
      transform: scale(1.035);
    }
  }

  @keyframes adtZrButtonPulse {
    0%, 100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.04);
    }
  }

  @media (max-width: 767px) {
    .adt-zr-popup {
      padding: 28px 20px 24px 20px;
      border-radius: 18px;
    }

    .adt-zr-popup::before {
      left: 20px;
      top: 28px;
      width: 32px;
      height: 32px;
      font-size: 22px;
      line-height: 32px;
    }

    .adt-zr-popup-content {
      padding-left: 46px;
    }

    .adt-zr-popup-title {
      font-size: 21px;
    }

    .adt-zr-popup-text {
      font-size: 15px;
    }

    .adt-zr-popup-actions {
      display: block;
    }

    .adt-zr-popup-button {
      width: 100%;
      min-height: 50px;
      padding: 14px 18px;
      font-size: 15px;
    }

    .adt-zr-popup-secondary {
      width: 100%;
      margin-top: 8px;
      text-align: center;
    }
  }