/* Adblocker Detection Overlay */
#adblocker-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

#adblocker-overlay.active {
  display: flex;
}

.adblocker-modal {
  background: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.adblocker-modal h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}

.adblocker-modal p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.adblocker-modal .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.adblocker-modal button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.adblocker-modal button:hover {
  background: #0056b3;
}

.adblocker-modal .help-text {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}
