/* ================================================================\n   ECOLOPULSE — Ad-Safe CSS\n   Ensures the interface remains usable with ads\n================================================================ */\n\n/* Ensure critical buttons stay on top */\n#connectBtn,\n#scanBtnPanel,\n#watchAdBtn,\n#cleanFreeBtn,\n.btn-primary,\n.btn-success {\n  position: relative !important;\n  z-index: 9999 !important;\n}\n\n/* Prevent ads from covering the main interface */\n.hero,\n.app-section,\n.panel {\n  position: relative;\n  z-index: 100;\n}\n\n/* Mobile-specific ad safety */\n@media (max-width: 768px) {\n  /* Ensure mobile interface stays accessible */\n  .hero-options,\n  .token-list,\n  .burn-panel {\n    position: relative;\n    z-index: 200;\n  }\n  \n  /* Prevent fullscreen overlays on mobile */\n  body {\n    overflow-x: hidden;\n  }\n  \n  /* Ensure modals work properly */\n  .modal {\n    z-index: 10000 !important;\n  }\n  \n  .modal-box {\n    position: relative;\n    z-index: 10001 !important;\n  }\n}\n\n/* Ad container safety */\n.ad-banner-section {\n  position: relative;\n  z-index: 1;\n  max-height: 250px;\n  overflow: hidden;\n}\n\n/* Prevent ads from breaking layout */\n[id*=\"container-\"] {\n  max-width: 100%;\n  max-height: 250px;\n  overflow: hidden;\n}\n\n/* Safety for any injected ad content */\niframe[src*=\"adsterra\"],\niframe[src*=\"profitablecpm\"] {\n  max-width: 100% !important;\n  max-height: 250px !important;\n  position: relative !important;\n  z-index: 1 !important;\n}\n\n/* Ensure wallet connection always works */\n.wallet-info,\n.wallet-badge {\n  position: relative;\n  z-index: 500;\n}\n\n/* Toast notifications stay on top */\n.toast {\n  z-index: 99999 !important;\n}\n\n/* Debug helper - remove in production */\n.debug-ad-info {\n  position: fixed;\n  top: 10px;\n  right: 10px;\n  background: rgba(0,0,0,0.8);\n  color: white;\n  padding: 10px;\n  border-radius: 5px;\n  font-size: 12px;\n  z-index: 99998;\n  display: none;\n}\n\n/* Show debug info when needed */\nbody.debug-ads .debug-ad-info {\n  display: block;\n}  
.ad-reward-message {
  font-size: 14px;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 12px;
}

.pulse-button {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(120, 120, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(120, 120, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(120, 120, 255, 0);
  }
}  
/* Mobile responsiveness for dual ads */  
@media (max-width: 700px) { .ad-content { flex-direction: column; } } 

/* Hero Ad Banner Styling */
.hero-ad-banner {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 20px auto !important;
  min-height: 60px !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
}
.hero-ad-banner iframe {
  max-width: 100%;
}
