 .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-box {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: zoomIn 0.4s ease;
}

.popup-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .popup-box {
    max-width: 530px;
  }
}



    .popup-box h2 {
      color: #d10024;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .popup-box p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #0c2e8a;
      font-weight: 500;
      
    }

    .blinkText{
      animation: blinkk 2s linear infinite;
      color: red;
    }

    @keyframes blinkk {
      50% {
        opacity: 0;
      }
    }

    .popup-box .btn {
      padding: 10px 20px;
      background: #d10024;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      font-size: 16px;
    }


.popup-box .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d10024;  
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;         
  width: 26px;          
  height: 26px;
  border-radius: 6px;   
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


    @keyframes zoomIn {
      from { transform: scale(0.5); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }


.burst-container {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 998;
      overflow: hidden;
    }

    .burst {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      animation: burst 800ms ease-out forwards;
      opacity: 0.9;
    }

    @keyframes burst {
      0% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
      }
      100% {
        transform: scale(0.5) translate(var(--x), var(--y));
        opacity: 0;
      }