/*
================================================================
 * Copyright (c) 2025 AoyCo.in (https://aoyco.in)
 * Software Name: AoyCoin AdBlock Detector Pro | Pure JavaScript Plugin
 * Version: 2.2.0
================================================================
*/

/* Show animation */
@keyframes abdetector-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide animation */
@keyframes abdetector-fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

.abdetector-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: abdetector-fade-in 0.4s ease forwards;
  z-index: 9999;
}

.abdetector-modal.fade-out {
  animation: abdetector-fade-out 0.3s ease forwards;
}

.abdetector-modal-content {
  background: #fff;
  padding: 2em;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

#abdetector-refresh {
  margin-top: 1em;
  padding: 0.5em 1em;
  background: #FF7475;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}