/* PlayFunZone Utilities - Additional styles for modals, animations, and dynamic elements */

/* Cookie popup display */
.playfunzone-cookie-popup {
  display: none;
}

/* Animation for blog filtering */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Game modal styles */
#playfunzone-game-modal {
  display: none;
}

/* Body overflow control for modal */
body.modal-open {
  overflow: hidden;
}

body.modal-closed {
  overflow: auto;
}
