/* DarkAG Fixes v4 - targets correct IDs */

/* FIX EXISTING WHATSAPP FLOATING BUTTON */
#dag-wa {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 99999 !important;
  width: 60px !important;
  height: 60px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5) !important;
  animation: dagPulse 2s infinite !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
#dag-wa svg { width: 32px !important; height: 32px !important; fill: #fff !important; }
@keyframes dagPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.9); }
}

/* STICKY HEADER */
.site-header, header.site-header, #masthead {
  position: sticky !important;
  top: 0 !important;
  z-index: 9998 !important;
  background: rgba(0,0,0,0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0,255,65,0.25) !important;
}

/* FOOTER VISIBILITY */
.site-footer, footer.site-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  #dag-wa { bottom: 16px !important; right: 16px !important; width: 54px !important; height: 54px !important; }
  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.2rem !important; }
  .site-content, .entry-content { padding: 10px 15px !important; }
  .wp-block-columns { flex-direction: column !important; }
  .wp-block-column { width: 100% !important; margin: 0 0 20px 0 !important; }
  img { max-width: 100% !important; height: auto !important; }
  button, .button, input[type="submit"] { min-height: 44px !important; }
  * { word-wrap: break-word !important; overflow-wrap: break-word !important; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.3rem !important; }
}